Module:Reading time: Difference between revisions

From ProleWiki, the proletarian encyclopedia
No edit summary
No edit summary
Line 5: Line 5:
local minReadingTime
local minReadingTime
local maxReadingTime
local maxReadingTime
local pageTitle
local pageNamespace


function p.estimateReadingTime(frame)
function p.estimateReadingTime(frame)
     local pageTitle = frame.args[1]
     -- Fetching the current page title and namespace
      
    pageTitle = mw.title.getCurrentTitle().text
     pageNamespace = mw.title.getCurrentTitle().namespace
 
     if type(pageTitle) == "string" then
     if type(pageTitle) == "string" then
         local content = mw.title.new(pageTitle):getContent()
         local content = mw.title.new(pageTitle):getContent()
Line 30: Line 34:
                 minReadingTime = 1
                 minReadingTime = 1
             end
             end
            return minReadingTime .. "-" .. maxReadingTime .. " minutes"
         else
         else
             return "Error: Invalid content"
             minReadingTime = nil
            maxReadingTime = nil
         end
         end
     else
     else
         return "Error: Invalid page title"
         minReadingTime = nil
        maxReadingTime = nil
     end
     end
end
end

Revision as of 19:36, 10 March 2024

local p = {}
local mw = require("mw")

-- Global variables
local minReadingTime
local maxReadingTime
local pageTitle
local pageNamespace

function p.estimateReadingTime(frame)
    -- Fetching the current page title and namespace
    pageTitle = mw.title.getCurrentTitle().text
    pageNamespace = mw.title.getCurrentTitle().namespace

    if type(pageTitle) == "string" then
        local content = mw.title.new(pageTitle):getContent()

        if type(content) == "string" then
            local wordCount = 0
            for word in content:gmatch("%S+") do
                wordCount = wordCount + 1
            end

            local minSpeed = 160
            local maxSpeed = 238

            minReadingTime = math.floor(wordCount / maxSpeed)
            maxReadingTime = math.ceil(wordCount / minSpeed)

            minReadingTime = math.floor(minReadingTime / 5) * 5
            maxReadingTime = math.ceil(maxReadingTime / 5) * 5

            if minReadingTime == 0 then
                minReadingTime = 1
            end
        else
            minReadingTime = nil
            maxReadingTime = nil
        end
    else
        minReadingTime = nil
        maxReadingTime = nil
    end
end

function p.estimateReadingLength(frame)
    if not minReadingTime or not maxReadingTime then
        error("Error: Reading time not calculated")
    end

    local averageReadingTime = (minReadingTime + maxReadingTime) / 2

    if averageReadingTime < 120 then
        return "Short"
    elseif averageReadingTime >= 120 and averageReadingTime < 360 then
        return "Medium"
    elseif averageReadingTime >= 360 and averageReadingTime < 720 then
        return "Long"
    else
        return "Very Long"
    end
end

return p