Module:MainPageSkinSwitch: Difference between revisions

From IxWiki
Jump to navigation Jump to search
mNo edit summary
Tag: Reverted
mNo edit summary
Tag: Reverted
Line 2: Line 2:


function p.getMainPageContent(frame)
function p.getMainPageContent(frame)
     local currentTitle = mw.title.getCurrentTitle()
    -- Check if the current page is the main page
     if currentTitle.text ~= 'Main Page' then
     local currentPageTitle = mw.title.getCurrentTitle()
        mw.log('Not on Main Page, returning empty string')
     if currentPageTitle.prefixedText ~= "Main Page" then
         return ""
         return "" -- Do nothing if not on the main page
     end
     end
   
 
     local skin = frame.args[1] or mw.site.stats.skin or 'vector'
     local skin = frame.args[1] or mw.site.stats.skin or 'vector'
      
      
Line 37: Line 37:


function p.debugInfo(frame)
function p.debugInfo(frame)
    local currentTitle = mw.title.getCurrentTitle()
     local skin = frame.args[1] or mw.site.stats.skin or 'vector'
     local skin = frame.args[1] or mw.site.stats.skin or 'vector'
     local info = "Detected skin: " .. tostring(skin) .. "\n"
     local info = "Detected skin: " .. tostring(skin) .. "\n"
     info = info .. "mw.site.stats.skin: " .. tostring(mw.site.stats.skin) .. "\n"
     info = info .. "mw.site.stats.skin: " .. tostring(mw.site.stats.skin) .. "\n"
    info = info .. "Current page: " .. currentTitle.text .. "\n"
     return info
     return info
end
end


return p
return p

Revision as of 17:57, 1 August 2024

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

local p = {}

function p.getMainPageContent(frame)
    -- Check if the current page is the main page
    local currentPageTitle = mw.title.getCurrentTitle()
    if currentPageTitle.prefixedText ~= "Main Page" then
        return ""  -- Do nothing if not on the main page
    end

    local skin = frame.args[1] or mw.site.stats.skin or 'vector'
    
    local pageName
    if skin == 'citizen' then
        pageName = 'Template:MainPage/Citizen'
    else
        pageName = 'Template:MainPage/Vector'
    end
    
    mw.log('Attempting to load page: ' .. pageName)
    
    local page = mw.title.new(pageName)
    if not page then
        mw.log('Page does not exist: ' .. pageName)
        return "Error: Page '" .. pageName .. "' does not exist."
    end
    
    local content = page:getContent()
    if not content then
        mw.log('Unable to retrieve content from: ' .. pageName)
        return "Error: Unable to retrieve content from '" .. pageName .. "'."
    end
    
    mw.log('Successfully retrieved content from: ' .. pageName)
    
    return frame:preprocess(content)
end

function p.debugInfo(frame)
    local skin = frame.args[1] or mw.site.stats.skin or 'vector'
    local info = "Detected skin: " .. tostring(skin) .. "\n"
    info = info .. "mw.site.stats.skin: " .. tostring(mw.site.stats.skin) .. "\n"
    return info
end

return p