local p = {}
local getArgs = require( 'Module:Arguments' ).getArgs
-- Implements Template:Tabs Hero.
function p.hero(frame)
local args = getArgs(frame, {
wrappers = {
'Template:Tabs Hero'
}
})
local hero = args[1] or mw.title.getCurrentTitle().baseText -- Use {{BASEPAGENAME}} if no page is given.
local subpage = function( page ) return hero .. '/' .. page end
local custom = function( number ) if args['custom' .. number] then return subpage( args['custom' .. number] ) end end
local tabs = {
['this'] = args['this'],
['link1'] = hero,
['name1'] = 'Hero',
['link2'] = subpage( 'Guide' ),
['name2'] = 'Strategy',
['link3'] = subpage( 'Counters' ),
['name3'] = 'Counters',
['link4'] = subpage( 'Equipment' ),
['name4'] = 'Equipment',
['link5'] = subpage( 'Gear' ),
['name5'] = 'Gear',
['link6'] = subpage( 'Relics' ),
['name6'] = 'Relics',
['link7'] = subpage( 'Responses' ),
['name7'] = 'Responses',
['link8'] = subpage( 'Sounds' ),
['name8'] = 'Sounds',
['link9'] = subpage( 'Lore' ),
['name9'] = 'Lore',
['link10'] = custom( '1' ),
['name10'] = args['custom1'],
['link11'] = custom( '2' ),
['name11'] = args['custom2'],
['link12'] = subpage( 'Old Abilities' ),
['name12'] = 'Old Abilities',
['link13'] = subpage( 'Changelogs' ),
['name13'] = 'Changelogs',
['link14'] = subpage( 'Bugs' ),
['name14'] = 'Known Bugs',
}
return p._main( tabs )
end
-- Implements Template:Tabber.
function p.main(frame)
local args = getArgs(frame, {
wrappers = {
'Template:Tabber'
}
})
return p._main( args )
end
function p._main( args )
local current_page = args['this'] or mw.title.getCurrentTitle().prefixedText
local rows = {}
for n=1,15 do
if args['link' .. n] then
-- Use the link as the name if none is given.
local name = args['name' .. n] or args['link' .. n]
if args['link' .. n] == current_page then
-- The active tab.
table.insert( rows, string.format( '<div class="page-tabber-tab active-tab">%s</div>', name ) )
else
-- The inactive tabs.
local link = string.format( '[[%s|%s]]', args['link' .. n], name )
table.insert( rows, string.format( '<div class="page-tabber-tab inactive-tab">%s</div>', link ) )
end
end
end
-- The separator is used for the space between two tabs.
local separator = '\n<div class="page-tabber-separator"> </div>\n'
-- The tail fills the space between the last tab and the end of the line.
local tail = '<div class="page-tabber-separator tail"> </div>'
return string.format( '<div id="pageTabber" class="page-tabber">\n%s\n%s\n</div>', table.concat( rows, separator ), tail )
end
return p