×
Create a new article
Write your page title here:
We currently have 1,652 articles on The Quelmar Wiki. Type your article name above or click on one of the titles below and start writing!



The Quelmar Wiki

Module:CampaignNavbox: Difference between revisions

No edit summary
No edit summary
Line 17: Line 17:
         Online = {}
         Online = {}
     }
     }
local function processRow(row)
local function processRow(row)
     -- Extract the first line (campaign name with wiki link) and last line (location)
     -- Extract everything up to the first "]]"
     local campaignWithLink = row:match("^(|%[%[.-%]%])")
     local campaignWithLink = row:match("^.-]]")
     local location = row:match("[^\n]+%s*$")
    -- Extract the location, which is the last element before the end of the row
     local location = row:match("[^\n]+$")


     if campaignWithLink and location then
     if campaignWithLink then
         -- Trim both campaign name and location
         -- Clean up the campaign string by removing leading pipes, quotes, and any trailing whitespace
         campaignWithLink = mw.text.trim(campaignWithLink)
         campaignWithLink = campaignWithLink:gsub("^|%s*'''", ""):gsub("'''%s*$", ""):gsub("%[%[", ""):gsub("%]%]", "")
        -- Trim the location string
         location = mw.text.trim(location)
         location = mw.text.trim(location)


         -- Check and add to the relevant location list
         -- Add the campaign to the relevant location list
         if location:find("PA") then
         if location:find("PA") then
             table.insert(campaigns.PA, campaignWithLink)
             table.insert(campaigns.PA, campaignWithLink)
         end
         elseif location:find("MD") then
        if location:find("MD") then
             table.insert(campaigns.MD, campaignWithLink)
             table.insert(campaigns.MD, campaignWithLink)
         end
         elseif location:find("Online") then
        if location:find("Online") then
             table.insert(campaigns.Online, campaignWithLink)
             table.insert(campaigns.Online, campaignWithLink)
         end
         end

Revision as of 16:04, 23 January 2024

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

local p = {}

function p.getCampaigns(frame)
    -- Fetch the content of the "Campaign" page
    local pageTitle = "Campaign"
    local page = mw.title.new(pageTitle)
    local wikitext = page:getContent()

    -- Check if the page content is available
    if not wikitext then
        return "Error: Unable to fetch content for page '" .. pageTitle .. "'."
    end

    local campaigns = {
        PA = {},
        MD = {},
        Online = {}
    }
local function processRow(row)
    -- Extract everything up to the first "]]"
    local campaignWithLink = row:match("^.-]]")
    -- Extract the location, which is the last element before the end of the row
    local location = row:match("[^\n]+$")

    if campaignWithLink then
        -- Clean up the campaign string by removing leading pipes, quotes, and any trailing whitespace
        campaignWithLink = campaignWithLink:gsub("^|%s*'''", ""):gsub("'''%s*$", ""):gsub("%[%[", ""):gsub("%]%]", "")
        -- Trim the location string
        location = mw.text.trim(location)

        -- Add the campaign to the relevant location list
        if location:find("PA") then
            table.insert(campaigns.PA, campaignWithLink)
        elseif location:find("MD") then
            table.insert(campaigns.MD, campaignWithLink)
        elseif location:find("Online") then
            table.insert(campaigns.Online, campaignWithLink)
        end
    end
end

    -- Split the wikitext into rows and process each
local rowPattern = "|%-(.-)\n|%-"
wikitext = wikitext .. '|-'  -- Append delimiter to capture the last row
for row in wikitext:gmatch(rowPattern) do
    processRow(row)
end

    -- Build the navbox
    local navbox = '{| class="wikitable"\n!Location\n!Campaigns\n'
    for loc, camps in pairs(campaigns) do
        navbox = navbox .. '|-\n|' .. loc .. '\n|' .. table.concat(camps, ', ') .. '\n'
    end
    navbox = navbox .. '|}'

    return navbox
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies. (Hi Margarita's Table. 🇩🇪)
Cookies help us deliver our services. By using our services, you agree to our use of cookies. (Hi Margarita's Table. 🇩🇪)