Module:DropsLineTest: Difference between revisions

From Roat Pkz
Jump to navigation Jump to search
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
Line 6: Line 6:
     local output = {}
     local output = {}


     -- Add the input number with color
     -- Add the input number
     table.insert(output, "|{{Color cell|#FFFFFF}}|1/" .. inputNumber)
     table.insert(output, "| style=\"background-color: #FFFFFF;\" | 1/" .. inputNumber)


     -- Calculate and add percentages with colored cells
     -- Calculate and add percentages with colored cells
     table.insert(output, "|{{Color cell|#FFCCCC}}|1/" .. (inputNumber * 0.85)) -- 10%
     table.insert(output, "| style=\"background-color: #FFCCCC;\" | 1/" .. (inputNumber * 0.85)) -- 10%
     table.insert(output, "|{{Color cell|#FF9999}}|1/" .. (inputNumber * 0.75)) -- 20%
     table.insert(output, "| style=\"background-color: #FF9999;\" | 1/" .. (inputNumber * 0.75)) -- 20%
     table.insert(output, "|{{Color cell|#FF6666}}|1/" .. (inputNumber * 0.70)) -- 30%
     table.insert(output, "| style=\"background-color: #FF6666;\" | 1/" .. (inputNumber * 0.70)) -- 30%
     table.insert(output, "|{{Color cell|#FF3333}}|1/" .. (inputNumber * 0.65)) -- 40%
     table.insert(output, "| style=\"background-color: #FF3333;\" | 1/" .. (inputNumber * 0.65)) -- 40%
     table.insert(output, "|{{Color cell|#FF0000}}|1/" .. (inputNumber * 0.60)) -- 50%
     table.insert(output, "| style=\"background-color: #FF0000;\" | 1/" .. (inputNumber * 0.60)) -- 50%


     return table.concat(output, '\n')
     return table.concat(output, '\n')

Revision as of 17:25, 5 May 2024

Documentation for this module may be created at Module:DropsLineTest/doc

local p = {}

-- Define a function to generate output numbers and colored cells based on the input
function p.generateOutput(frame)
    local inputNumber = tonumber(frame.args[1]) or 0
    local output = {}

    -- Add the input number
    table.insert(output, "| style=\"background-color: #FFFFFF;\" | 1/" .. inputNumber)

    -- Calculate and add percentages with colored cells
    table.insert(output, "| style=\"background-color: #FFCCCC;\" | 1/" .. (inputNumber * 0.85)) -- 10%
    table.insert(output, "| style=\"background-color: #FF9999;\" | 1/" .. (inputNumber * 0.75)) -- 20%
    table.insert(output, "| style=\"background-color: #FF6666;\" | 1/" .. (inputNumber * 0.70)) -- 30%
    table.insert(output, "| style=\"background-color: #FF3333;\" | 1/" .. (inputNumber * 0.65)) -- 40%
    table.insert(output, "| style=\"background-color: #FF0000;\" | 1/" .. (inputNumber * 0.60)) -- 50%

    return table.concat(output, '\n')
end

return p