Editing Module:Sandbox/User:The Gaffer/Modules/Infobox Switch

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
--Attribution: This module was taken from the Runescape wiki - https://runescape.wiki/w/Module:Switch_infobox - See changes there for a list of contributors
local p = {}
local p = {}
local yesno = require('Module:Yesno')


function p.main(frame)
local yn = require('Module:Yesno')
return frame:preprocess(tostring(p._main(frame:getParent().args)))
local hc = require('Module:Paramtest').has_content
end


function p._main(args)
-- Module access point for infobox switch
p._infobox_switch = function(args)
-- Prepare content list from arguments
local contents = {}
local contents = {}

local i = 1
local i = 1
while args['item'..i] do
while args['item'..i] do
Line 15: Line 17:
i = i + 1
i = i + 1
end
end
-- Create the main table structure for the infobox switch
local structure = mw.html.create('table')
:addClass('infobox-switch')
:tag('caption')
:done();
-- Create the div for the buttons inside the caption
local buttons = structure:tag('div')
:attr('data-default-index', 1)


local ret = mw.html.create('div')
-- Add buttons for each item in contents
:addClass('Gadget-switch-infobox')
for i, v in ipairs(contents) do
buttons:tag('button')
:addClass('loading')
:addClass('button')
:tag('span')
:attr('data-switch-index', i)
:addClass('loading-button')
:addClass('button')
:attr('data-switch-anchor', '#section' ..i)
:wikitext(v.text)
:wikitext('Loading...')
:done()
:done()
if args.float then
if args.float == 'left' then
ret:addClass('tleft')
:addClass('thumb')
elseif args.float == 'right' then
ret:addClass('tright')
:addClass('thumb')
end
end
local mah_triggers = ret:tag('div')
:addClass('switch-infobox-triggers')
local isSelect = yesno(args.select)
if isSelect then
mah_triggers:addClass('infobox-triggers-select')
elseif i > 6 and isSelect ~= false then
mah_triggers:addClass('infobox-triggers-select')
end
end
local content_body = structure:tag('tbody')
local default_content = contents[1] -- Assuming default index is 1
if default_content then
local row = content_body:tag('tr')
row:tag('td')
:attr('data-attr-param', 'param1')
:wikitext(default_content.content)
:done()
row:done()
end
-- Create the hidden resources section that contains all switchable content
local resources_div = structure:tag('div')
:addClass('infobox-switch-resources')


for i, v in ipairs(contents) do
-- Add each content section to the resources div
mah_triggers :tag('span')
for i, v in ipairs(contents) do
:addClass('trigger')
local param_div = resources_div:tag('div')
:addClass('button')
:attr('data-attr-param', 'param1')
:addClass(i==1 and 'button-selected' or '')

:attr('data-id',v.id)
param_div:tag('div')
:wikitext(v.text)
:attr('data-attr-index', i)
:done()
:wikitext(v.content)
:done()


ret :tag('div')
param_div:done()
:addClass('item')
end
:addClass(i==1 and 'showing' or '')

:attr('data-id',v.id)
mw.logObject(structure)
:wikitext(v.content)
-- Return the complete HTML structure
:done()
return tostring(structure)
end
end


return ret
p.infobox_switch = function(frame)
return p._infobox_switch(frame:getParent().args)
end
end


Please note that all contributions to Brighter Shores Wiki are considered to be released under the CC BY-NC-SA 3.0 (see Brighter Shores:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)
Preview page with this template