"ഘടകം:GradeLinks" എന്ന താളിന്റെ പതിപ്പുകൾ തമ്മിലുള്ള വ്യത്യാസം

Schoolwiki സംരംഭത്തിൽ നിന്ന്
No edit summary
No edit summary
വരി 27: വരി 27:
                     'background: linear-gradient(135deg, #E3FDFD, #CBF1F5); box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease;">' ..
                     'background: linear-gradient(135deg, #E3FDFD, #CBF1F5); box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease;">' ..
                     '<span aria-hidden="true" role="presentation">[[File:%s|45px|link=%s|frameless|center]]</span>' ..
                     '<span aria-hidden="true" role="presentation">[[File:%s|45px|link=%s|frameless|center]]</span>' ..
                     '<a href="%s" style="text-decoration: none; color: #2C3E50;"><b>%s</b></a>' ..
                     '[[%s|<b>%s</b>]]' ..
                     '</div>',
                     '</div>',
                     grade.file, pageTitle, pageTitle, grade.label
                     grade.file, pageTitle, pageTitle, grade.label

10:49, 6 ജനുവരി 2025-നു നിലവിലുണ്ടായിരുന്ന രൂപം

ഈ ഘടകത്തിന്റെ വിവരണം ഘടകം:GradeLinks/വിവരണം എന്ന താളിൽ നിർമ്മിക്കാവുന്നതാണ്

local p = {}

function p.render(frame)
    local args = frame:getParent().args
    local mainUrl = args.MainUrl or ""
    local itemName = args.ItemName or ""
    local grades = {
        { suffix = "A ഗ്രേഡ്", file = "MedelA.svg", label = "A ഗ്രേഡ്" },
        { suffix = "B ഗ്രേഡ്", file = "MedelB.svg", label = "B ഗ്രേഡ്" },
        { suffix = "C ഗ്രേഡ്", file = "MedelC.svg", label = "C ഗ്രേഡ്" },
        { suffix = "മറ്റുള്ളവ", file = "MedelO.svg", label = "മറ്റുള്ളവ" },
    }

    local output = {}
    local expensiveCalls = 0
    local maxExpensiveCalls = 99 -- Stay below the limit

    for _, grade in ipairs(grades) do
        local pageTitle = mainUrl .. "/" .. itemName .. "/" .. grade.suffix
        local titleObj = mw.title.new(pageTitle)

        if titleObj and expensiveCalls < maxExpensiveCalls then
            if titleObj.exists then
                expensiveCalls = expensiveCalls + 1 -- Increment for each existence check
                table.insert(output, string.format(
                    '<div style="text-align: center; padding: 0.75em; font-weight: normal; line-height: 1.15; font-size: 1.05em; margin-bottom: 0.2em; min-width: 120px; max-width: 250px; flex: 1 1 0px; margin-right: 1px; ' ..
                    'background: linear-gradient(135deg, #E3FDFD, #CBF1F5); box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease;">' ..
                    '<span aria-hidden="true" role="presentation">[[File:%s|45px|link=%s|frameless|center]]</span>' ..
                    '[[%s|<b>%s</b>]]' ..
                    '</div>',
                    grade.file, pageTitle, pageTitle, grade.label
                ))
            end
        end
    end

    if #output > 0 then
        return string.format(
            '<div style="margin: 8px 0; background: #F8F9FA; padding-bottom: 10px; border-radius: 25px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); overflow: hidden;">' ..
            '<div style="color: #fff; padding: 14px 10px; margin: 0; border-bottom: 1px solid #ccc; background: linear-gradient(135deg, #1ABC9C, #16A085); border-radius: 25px 25px 0 0;">' ..
            '<p style="padding: 0 10px; margin: 0; font-weight: bold; font-size: 1.4em; text-align: center; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);">%s</p>' ..
            '</div>' ..
            '<div style="display: flex; flex-flow: row wrap; justify-content: space-evenly; padding: 15px; width: 95%%;" role="navigation">%s</div>' ..
            '</div>',
            args.MainTitle or "", table.concat(output)
        )
    end

    return ""
end

return p
"https://schoolwiki.in/index.php?title=ഘടകം:GradeLinks&oldid=2623984" എന്ന താളിൽനിന്ന് ശേഖരിച്ചത്