Module:Navbox2: Difference between revisions

Test navbox from https://dev.fandom.com/wiki/Global_Lua_Modules/Navbox
change to https://en.wikipedia.org/wiki/Module:Navbox
Tag: Reverted
Line 1: Line 1:
--------------------------------------------------------------------
require('strict')
--<pre> Navbox Module
--
-- * Fully CSS styled (inline styles possible but not default)
-- * Supports unlimited rows
--
-- By User:Tjcool007 from layton.fandom.com
--------------------------------------------------------------------
 
local p = {}
local p = {}
local navbar = require('Module:Navbar')._navbar
local cfg = mw.loadData('Module:Navbox/configuration')
local getArgs -- lazily initialized
local args
local format = string.format


local args = {} -- Arguments passed to template
local function striped(wikitext, border)
local navbox -- Actual navbox
-- Return wikitext with markers replaced for odd/even striping.
-- Child (subgroup) navboxes are flagged with a category that is removed
-- by parent navboxes. The result is that the category shows all pages
-- where a child navbox is not contained in a parent navbox.
local orphanCat = cfg.category.orphan
if border == cfg.keyword.border_subgroup and args[cfg.arg.orphan] ~= cfg.keyword.orphan_yes then
-- No change; striping occurs in outermost navbox.
return wikitext .. orphanCat
end
local first, second = cfg.class.navbox_odd_part, cfg.class.navbox_even_part
if args[cfg.arg.evenodd] then
if args[cfg.arg.evenodd] == cfg.keyword.evenodd_swap then
first, second = second, first
else
first = args[cfg.arg.evenodd]
second = first
end
end
local changer
if first == second then
changer = first
else
local index = 0
changer = function (code)
if code == '0' then
-- Current occurrence is for a group before a nested table.
-- Set it to first as a valid although pointless class.
-- The next occurrence will be the first row after a title
-- in a subgroup and will also be first.
index = 0
return first
end
index = index + 1
return index % 2 == 1 and first or second
end
end
local regex = orphanCat:gsub('([%[%]])', '%%%1')
return (wikitext:gsub(regex, ''):gsub(cfg.marker.regex, changer)) -- () omits gsub count
end


--local working = {}
local function processItem(item, nowrapitems)
local rownums, skiprows = {}, {}
if item:sub(1, 2) == '{|' then
local hasrows, alt, hasData, isChild = false, false, false, false
-- Applying nowrap to lines in a table does not make sense.
local activeSection, sections, cimage, cimageleft
-- Add newlines to compensate for trim of x in |parm=x in a template.
local colspan, rowspan
return '\n' .. item ..'\n'
 
end
local showText, hideText = 'Show', 'Hide'
if nowrapitems == cfg.keyword.nowrapitems_yes then
local lines = {}
for line in (item .. '\n'):gmatch('([^\n]*)\n') do
local prefix, content = line:match('^([*:;#]+)%s*(.*)')
if prefix and not content:match(cfg.pattern.nowrap) then
line = format(cfg.nowrap_item, prefix, content)
end
table.insert(lines, line)
end
item = table.concat(lines, '\n')
end
if item:match('^[*:;#]') then
return '\n' .. item ..'\n'
end
return item
end


local langCode = mw.getContentLanguage():getCode()
local function has_navbar()
local localization = {} --localized strings table
return args[cfg.arg.navbar] ~= cfg.keyword.navbar_off
localization['bn'] = {show = 'দেখান', hide = 'লুকান'}
and args[cfg.arg.navbar] ~= cfg.keyword.navbar_plain
localization['de'] = {show = 'Ausklappen', hide = 'Einklappen'}
and (
localization['en'] = {show = 'Show', hide = 'Hide'}
args[cfg.arg.name]
localization['es'] = {show = 'Mostrar', hide = 'Ocultar'}
or mw.getCurrentFrame():getParent():getTitle():gsub(cfg.pattern.sandbox, '')
localization['hi'] = {show = 'दिखाएँ', hide = 'छिपाएँ'}
~= cfg.pattern.navbox
localization['ja'] = {show = '表示', hide = '隠す'}
)
localization['ru'] = {show = 'показать', hide = 'скрыть'}
localization['pt-br'] = {show = 'Mostrar', hide = 'Esconder'}
localization['zh'] = {show = '显示', hide = '隐藏'}
localization['zh-tw'] = {show = '顯示', hide = '隱藏'}
localization['zh-hk'] = {show = '顯示', hide = '隱藏'}
if localization[langCode] then
    showText = localization[langCode]['show']
    hideText = localization[langCode]['hide']
end
end


------------------------------------------------
local function renderNavBar(titleCell)
-- Title
if has_navbar() then
------------------------------------------------
titleCell:wikitext(navbar{
[cfg.navbar.name] = args[cfg.arg.name],
[cfg.navbar.mini] = 1,
[cfg.navbar.fontstyle] = (args[cfg.arg.basestyle] or '') .. ';' ..
(args[cfg.arg.titlestyle] or '') ..
';background:none transparent;border:none;box-shadow:none;padding:0;'
})
end


--- Processes the VDE links in the title
end
--
-- @param titlecell The table cell of the title
local function processVde( titlecell )
if not args.template then return end


titlecell:wikitext('<span class="navbox-vde">'
local function renderTitleRow(tbl)
.. mw.getCurrentFrame():expandTemplate({
if not args[cfg.arg.title] then return end
title = 'vdelinks',
args = { args.template, ['type'] = 'navbox' }
}) .. '</span>')
end


--- Processes the main title row
local titleRow = tbl:tag('tr')
local function processTitle()
local titlerow = mw.html.create('tr'):addClass('navbox-title')
local titlecell = mw.html.create('th'):attr('colspan',colspan):attr('scope','col')


if not pcall( processVde, titlecell ) then
local titleCell = titleRow:tag('th'):attr('scope', 'col')
titlecell:wikitext( '<b class="navbox-vde error" title="Missing Template:Vdelinks">!!!</b>' )
end


titlecell:wikitext( args.title or '{{{title}}}' )
local titleColspan = 2
if args[cfg.arg.imageleft] then titleColspan = titleColspan + 1 end
if args[cfg.arg.image] then titleColspan = titleColspan + 1 end


-- Padding
titleCell
local hasTemplate = args.template ~= nil
:cssText(args[cfg.arg.basestyle])
local hasState = not args.state or args.state ~= 'plain'
:cssText(args[cfg.arg.titlestyle])
:addClass(cfg.class.navbox_title)
:attr('colspan', titleColspan)


if hasTemplate ~= hasState then
renderNavBar(titleCell)
if hasTemplate then
titlecell:addClass('navbox-title-padright')
else
titlecell:addClass('navbox-title-padleft')
end
end


if args.titleclass then titlerow:addClass( args.titleclass ) end
titleCell
if args.titlestyle then titlecell:cssText( args.titlestyle ) end
:tag('div')
-- id for aria-labelledby attribute
:attr('id', mw.uri.anchorEncode(args[cfg.arg.title]))
:addClass(args[cfg.arg.titleclass])
:css('font-size', '114%')
:css('margin', '0 4em')
:wikitext(processItem(args[cfg.arg.title]))
end


titlerow:node(titlecell)
local function getAboveBelowColspan()
navbox:node(titlerow)
local ret = 2
if args[cfg.arg.imageleft] then ret = ret + 1 end
if args[cfg.arg.image] then ret = ret + 1 end
return ret
end
end


local function _addGutter( parent, incRowspan )
local function renderAboveRow(tbl)
parent:tag('tr'):addClass('navbox-gutter'):tag('td'):attr('colspan',2)
if not args[cfg.arg.above] then return end


if incRowspan then
tbl:tag('tr')
rowspan = rowspan + 1
:tag('td')
end
:addClass(cfg.class.navbox_abovebelow)
:addClass(args[cfg.arg.aboveclass])
:cssText(args[cfg.arg.basestyle])
:cssText(args[cfg.arg.abovestyle])
:attr('colspan', getAboveBelowColspan())
:tag('div')
-- id for aria-labelledby attribute, if no title
:attr('id', (not args[cfg.arg.title]) and mw.uri.anchorEncode(args[cfg.arg.above]) or nil)
:wikitext(processItem(args[cfg.arg.above], args[cfg.arg.nowrapitems]))
end
end


------------------------------------------------
local function renderBelowRow(tbl)
-- Above/Below
if not args[cfg.arg.below] then return end
------------------------------------------------


--- Processes the above and below rows
tbl:tag('tr')
--
:tag('td')
-- @param rowtype Either 'above' or 'below'
:addClass(cfg.class.navbox_abovebelow)
local function processAboveBelow( rowtype )
:addClass(args[cfg.arg.belowclass])
if not args[rowtype] then return end
:cssText(args[cfg.arg.basestyle])
:cssText(args[cfg.arg.belowstyle])
:attr('colspan', getAboveBelowColspan())
:tag('div')
:wikitext(processItem(args[cfg.arg.below], args[cfg.arg.nowrapitems]))
end


local abrow = mw.html.create('tr'):addClass('navbox-'..rowtype)
local function renderListRow(tbl, index, listnum, listnums_size)
local abcell = mw.html.create('td'):attr('colspan',colspan):wikitext( args[rowtype] )
local row = tbl:tag('tr')


if args[rowtype .. 'class'] then abrow:addClass( args[rowtype .. 'class'] ) end
if index == 1 and args[cfg.arg.imageleft] then
if args[rowtype .. 'style'] then abcell:cssText( args[rowtype .. 'style'] ) end
row
:tag('td')
:addClass(cfg.class.noviewer)
:addClass(cfg.class.navbox_image)
:addClass(args[cfg.arg.imageclass])
:css('width', '1px')              -- Minimize width
:css('padding', '0 2px 0 0')
:cssText(args[cfg.arg.imageleftstyle])
:attr('rowspan', listnums_size)
:tag('div')
:wikitext(processItem(args[cfg.arg.imageleft]))
end


abrow:node( abcell )
local group_and_num = format(cfg.arg.group_and_num, listnum)
_addGutter( navbox )
local groupstyle_and_num = format(cfg.arg.groupstyle_and_num, listnum)
navbox:node( abrow )
if args[group_and_num] then
end
local groupCell = row:tag('th')


------------------------------------------------
-- id for aria-labelledby attribute, if lone group with no title or above
-- Main Rows
if listnum == 1 and not (args[cfg.arg.title] or args[cfg.arg.above] or args[cfg.arg.group2]) then
------------------------------------------------
groupCell
:attr('id', mw.uri.anchorEncode(args[cfg.arg.group1]))
end


--- Processes the images
groupCell
local function _processImage(row, imgtype)
:attr('scope', 'row')
if not args[imgtype] then return end
:addClass(cfg.class.navbox_group)
:addClass(args[cfg.arg.groupclass])
:cssText(args[cfg.arg.basestyle])
-- If groupwidth not specified, minimize width
:css('width', args[cfg.arg.groupwidth] or '1%')


local iclass = imgtype == 'image' and 'navbox-image-right' or 'navbox-image-left'
groupCell
:cssText(args[cfg.arg.groupstyle])
:cssText(args[groupstyle_and_num])
:wikitext(args[group_and_num])
end


local imagecell = mw.html.create('td'):addClass('navbox-image'):addClass(iclass)
local listCell = row:tag('td')


local image = args[imgtype]
if args[group_and_num] then
if image:sub(1,1) ~= '[' then
listCell
local width = args[imgtype .. 'width'] or '100px'
:addClass(cfg.class.navbox_list_with_group)
imagecell:css('width',width):wikitext('['..'[' .. image  .. '|' .. width .. '|link=' .. (args[imgtype .. 'link'] or '') .. ']]')
else
else
imagecell:css('width','0%'):wikitext(image)
listCell:attr('colspan', 2)
end
end


if args[imgtype .. 'class'] then imagecell:addClass( args[imgtype .. 'class'] ) end
if not args[cfg.arg.groupwidth] then
if args[imgtype .. 'style'] then imagecell:cssText( args[imgtype .. 'style'] ) end
listCell:css('width', '100%')
end


row:node( imagecell )
local rowstyle  -- usually nil so cssText(rowstyle) usually adds nothing
if imgtype == 'image' then
if index % 2 == 1 then
cimage = imagecell
rowstyle = args[cfg.arg.oddstyle]
else
else
cimageleft = imagecell
rowstyle = args[cfg.arg.evenstyle]
end
end
end


--- Closes the currently active section (if any)
local list_and_num = format(cfg.arg.list_and_num, listnum)
local function _closeCurrentSection()
local listText = args[list_and_num]
if not activeSection then return end
local oddEven = cfg.marker.oddeven
if listText:sub(1, 12) == '</div><table' then
-- Assume list text is for a subgroup navbox so no automatic striping for this row.
oddEven = listText:find(cfg.pattern.navbox_title) and cfg.marker.restart or cfg.class.navbox_odd_part
end


local row = mw.html.create('tr'):addClass('navbox-section-row')
local liststyle_and_num = format(cfg.arg.liststyle_and_num, listnum)
local cell = mw.html.create('td'):attr('colspan',2)
local listclass_and_num = format(cfg.arg.listclass_and_num, listnum)
listCell
:css('padding', '0')
:cssText(args[cfg.arg.liststyle])
:cssText(rowstyle)
:cssText(args[liststyle_and_num])
:addClass(cfg.class.navbox_list)
:addClass(cfg.class.navbox_part .. oddEven)
:addClass(args[cfg.arg.listclass])
:addClass(args[listclass_and_num])
:tag('div')
:css('padding',
(index == 1 and args[cfg.arg.list1padding]) or args[cfg.arg.listpadding] or '0 0.25em'
)
:wikitext(processItem(listText, args[cfg.arg.nowrapitems]))


if not hasrows then
if index == 1 and args[cfg.arg.image] then
_processImage(row,'imageleft')
row
:tag('td')
:addClass(cfg.class.noviewer)
:addClass(cfg.class.navbox_image)
:addClass(args[cfg.arg.imageclass])
:css('width', '1px')              -- Minimize width
:css('padding', '0 0 0 2px')
:cssText(args[cfg.arg.imagestyle])
:attr('rowspan', listnums_size)
:tag('div')
:wikitext(processItem(args[cfg.arg.image]))
end
end
end


cell:node(sections[activeSection])
local function has_list_class(htmlclass)
row:node(cell)
local patterns = {
'^' .. htmlclass .. '$',
'%s' .. htmlclass .. '$',
'^' .. htmlclass .. '%s',
'%s' .. htmlclass .. '%s'
}
for arg, _ in pairs(args) do
if type(arg) == 'string' and mw.ustring.find(arg, cfg.pattern.class) then
for _, pattern in ipairs(patterns) do
if mw.ustring.find(args[arg] or '', pattern) then
return true
end
end
end
end
return false
end


local firstRow = false
-- there are a lot of list classes in the wild, so we add their TemplateStyles
if not hasrows then
local function add_list_styles()
firstRow = true
local frame = mw.getCurrentFrame()
hasrows = true
local function add_list_templatestyles(htmlclass, templatestyles)
_processImage(row,'image')
if has_list_class(htmlclass) then
return frame:extensionTag{
name = 'templatestyles', args = { src = templatestyles }
}
else
return ''
end
end
local hlist_styles = add_list_templatestyles('hlist', cfg.hlist_templatestyles)
local plainlist_styles = add_list_templatestyles('plainlist', cfg.plainlist_templatestyles)
-- a second workaround for [[phab:T303378]]
-- when that issue is fixed, we can actually use has_navbar not to emit the
-- tag here if we want
if has_navbar() and hlist_styles == '' then
hlist_styles = frame:extensionTag{
name = 'templatestyles', args = { src = cfg.hlist_templatestyles }
}
end
end
 
_addGutter(navbox,not firstRow)
-- hlist -> plainlist is best-effort to preserve old Common.css ordering.
navbox:node(row)
-- this ordering is not a guarantee because most navboxes will emit only
rowspan = rowspan + 1
-- one of these classes [hlist_note]
 
return hlist_styles .. plainlist_styles
activeSection = false
hasData = false
end
end


--- Handles alternating rows
local function needsHorizontalLists(border)
--
if border == cfg.keyword.border_subgroup or args[cfg.arg.tracking] == cfg.keyword.tracking_no then
-- @return Alternatingly returns true or false. Always returns false if alternating rows
--        are disabled with "alternaterows = no"
local function _alternateRow()
if args.alternaterows == 'no' then return false end
if alt then
alt = false
return true
else
alt = true
return false
return false
end
end
return not has_list_class(cfg.pattern.hlist) and not has_list_class(cfg.pattern.plainlist)
end
end


--- Process a single Header "row"
local function hasBackgroundColors()
--
for _, key in ipairs({cfg.arg.titlestyle, cfg.arg.groupstyle,
-- @param num Number of the row to be processed
cfg.arg.basestyle, cfg.arg.abovestyle, cfg.arg.belowstyle}) do
local function processHeader(num)
if tostring(args[key]):find('background', 1, true) then
if not args['header'..num] then return end
return true
end
end
return false
end


_closeCurrentSection()
local function hasBorders()
 
for _, key in ipairs({cfg.arg.groupstyle, cfg.arg.basestyle,
local subtable = mw.html.create('table'):addClass('navbox-section')
cfg.arg.abovestyle, cfg.arg.belowstyle}) do
local headerrow = mw.html.create('tr')
if tostring(args[key]):find('border', 1, true) then
local header = mw.html.create('th'):addClass('navbox-header'):attr('colspan',2):attr('scope','col'):wikitext( args['header'..num] )
return true
 
local collapseme = args['state'..num] or false
local state = false
 
if collapseme then
-- Look at this one
if collapseme ~= 'plain' then
state = collapseme == 'expanded' and 'expanded' or 'collapsed'
end
else
-- Look at default
local collapseall = args.defaultstate or false
if collapseall then
state = collapseall == 'expanded' and 'expanded' or 'collapsed'
end
end
end
end
return false
end


if state then
local function isIllegible()
subtable:addClass('mw-collapsible'):attr('data-expandtext',args['expandtext'..num] or args['defaultexpandtext'] or showText):attr('data-collapsetext',args['collapsetext'..num] or args['defaultcollapsetext'] or hideText)
local styleratio = require('Module:Color contrast')._styleratio
if state == 'collapsed' then
for key, style in pairs(args) do
subtable:addClass('mw-collapsed')
if tostring(key):match(cfg.pattern.style) then
if styleratio{mw.text.unstripNoWiki(style)} < 4.5 then
return true
end
end
end
header:addClass('navbox-header-collapsible')
end
end
return false
end


if args.headerclass then headerrow:addClass( args.headerclass ) end
local function getTrackingCategories(border)
if args.headerstyle then header:cssText( args.headerstyle ) end
local cats = {}
if needsHorizontalLists(border) then table.insert(cats, cfg.category.horizontal_lists) end
if hasBackgroundColors() then table.insert(cats, cfg.category.background_colors) end
if isIllegible() then table.insert(cats, cfg.category.illegible) end
if hasBorders() then table.insert(cats, cfg.category.borders) end
return cats
end


headerrow:node(header)
local function renderTrackingCategories(builder, border)
subtable:node(headerrow)
local title = mw.title.getCurrentTitle()
if title.namespace ~= 10 then return end -- not in template space
local subpage = title.subpageText
if subpage == cfg.keyword.subpage_doc or subpage == cfg.keyword.subpage_sandbox
or subpage == cfg.keyword.subpage_testcases then return end


sections[num] = subtable
for _, cat in ipairs(getTrackingCategories(border)) do
activeSection = num
builder:wikitext('[[Category:' .. cat .. ']]')
end
end
end


--- Processes a single list row
local function renderMainTable(border, listnums)
--
local tbl = mw.html.create('table')
-- @param num Number of the row to be processed
:addClass(cfg.class.nowraplinks)
local function processList(num)
:addClass(args[cfg.arg.bodyclass])
if not args['list'..num] then return end


local row = mw.html.create('tr'):addClass('navbox-row')
local state = args[cfg.arg.state]
 
if args[cfg.arg.title] and state ~= cfg.keyword.state_plain and state ~= cfg.keyword.state_off then
if not hasrows and not activeSection then
if state == cfg.keyword.state_collapsed then
_processImage(row, 'imageleft')
state = cfg.class.collapsed
end
tbl
:addClass(cfg.class.collapsible)
:addClass(state or cfg.class.autocollapse)
end
end


local listcell = mw.html.create('td'):addClass('navbox-list')
tbl:css('border-spacing', 0)
local hlistcell = listcell:tag('div'):addClass('hlist')
if border == cfg.keyword.border_subgroup or border == cfg.keyword.border_none then
tbl
local data = args['list'..num]
:addClass(cfg.class.navbox_subgroup)
:cssText(args[cfg.arg.bodystyle])
if data:sub(1,1) == '*' then
:cssText(args[cfg.arg.style])
-- Add newlines to support lists properly
else  -- regular navbox - bodystyle and style will be applied to the wrapper table
hlistcell
tbl
:newline()
:addClass(cfg.class.navbox_inner)
:wikitext( data )
:css('background', 'transparent')
:newline()
:css('color', 'inherit')
else
hlistcell:wikitext( data )
end
end
tbl:cssText(args[cfg.arg.innerstyle])


local altRow = _alternateRow()
renderTitleRow(tbl)
if altRow then
renderAboveRow(tbl)
row:addClass( args.altrowclass or 'alt' )
local listnums_size = #listnums
 
for i, listnum in ipairs(listnums) do
local listclass = args.altlistclass or args.listclass or false
renderListRow(tbl, i, listnum, listnums_size)
if listclass then listcell:addClass( listclass ) end
 
local liststyle = args.altliststyle or args.liststyle or false
if liststyle then listcell:cssText( liststyle ) end
else
if args.rowclass then row:addClass( args.rowclass ) end
if args.listclass then listcell:addClass( args.listclass ) end
if args.liststyle then listcell:cssText( args.liststyle ) end
end
end
renderBelowRow(tbl)


if args['group'..num] then
return tbl
local groupcell = mw.html.create('th'):addClass('navbox-group'):attr('scope','row'):wikitext( args['group'..num] )
end


if altRow then
local function add_navbox_styles(hiding_templatestyles)
local groupclass = args.altgroupclass or args.groupclass or false
local frame = mw.getCurrentFrame()
if groupclass then groupcell:addClass( groupclass ) end
-- This is a lambda so that it doesn't need the frame as a parameter
local function add_user_styles(templatestyles)
local groupstyle = args.altgroupstyle or args.groupstyle or false
if templatestyles and templatestyles ~= '' then
if groupstyle then groupcell:cssText( groupstyle ) end
return frame:extensionTag{
else
name = 'templatestyles', args = { src = templatestyles }
if args.groupclass then groupcell:addClass( args.groupclass ) end
}
if args.groupstyle then groupcell:cssText( args.groupstyle ) end
end
end
 
return ''
row:node( groupcell )
else
listcell:attr('colspan',2):addClass('no-group')
end
end


row:node( listcell )
-- get templatestyles. load base from config so that Lua only needs to do
-- the work once of parser tag expansion
local base_templatestyles = cfg.templatestyles
local templatestyles = add_user_styles(args[cfg.arg.templatestyles])
local child_templatestyles = add_user_styles(args[cfg.arg.child_templatestyles])


local firstRow = false
-- The 'navbox-styles' div exists to wrap the styles to work around T200206
if not hasrows and not activeSection then
-- more elegantly. Instead of combinatorial rules, this ends up being linear
firstRow = true
-- number of CSS rules.
hasrows = true
return mw.html.create('div')
_processImage(row, 'image')
:addClass(cfg.class.navbox_styles)
end
:wikitext(
 
add_list_styles() .. -- see [hlist_note] applied to 'before base_templatestyles'
if activeSection then
base_templatestyles ..
local parent = sections[activeSection]
templatestyles ..
if not isChild or not firstRow then
child_templatestyles ..
_addGutter(parent)
table.concat(hiding_templatestyles)
end
)
parent:node(row)
:done()
hasData = true
else
if not isChild or not firstRow then
_addGutter(navbox,not firstRow)
end
navbox:node( row )
rowspan = rowspan + 1
end
end
end


--- Processes all rows
-- work around [[phab:T303378]]
local function processRows()
-- for each arg: find all the templatestyles strip markers, insert them into a
sections = {}
-- table. then remove all templatestyles markers from the arg
for i=1,#rownums do
local function move_hiding_templatestyles(args)
local num = rownums[i]
local gfind = string.gfind
if not skiprows[num] then
local gsub = string.gsub
processHeader(num)
local templatestyles_markers = {}
processList(num)
local strip_marker_pattern = '(\127[^\127]*UNIQ%-%-templatestyles%-%x+%-QINU[^\127]*\127)'
for k, arg in pairs(args) do
for marker in gfind(arg, strip_marker_pattern) do
table.insert(templatestyles_markers, marker)
end
end
args[k] = gsub(arg, strip_marker_pattern, '')
end
end
_closeCurrentSection()
return templatestyles_markers
if cimageleft then
cimageleft:attr('rowspan',rowspan)
end
if cimage then
cimage:attr('rowspan',rowspan)
end
end
end


------------------------------------------------
function p._navbox(navboxArgs)
-- ARGUMENTS PREPROCESSOR
args = navboxArgs
-- * Extracts arguments from frame and stores them in args table
local hiding_templatestyles = move_hiding_templatestyles(args)
-- * At the same time, checks for valid row numbers
local listnums = {}
------------------------------------------------
 
--- Preprocessor for the arguments.
-- Will fill up the args table with the parameters from the frame grouped by their type.
--
-- @param frame The frame passed to the Module.
local function preProcessArgs(frame)
local tmp = {}
 
if frame == mw.getCurrentFrame() then
tmp = frame:getParent().args
else
tmp = frame
end
 
-- Storage tables
local nums = {}
 
-- Loop over all the args
for k,v in pairs(tmp) do
-- Skip empty args, which are useless
if v ~= '' then
local cat,num = tostring(k):match('^(%a+)([1-9]%d*)$')
 
if cat == 'header' or cat == 'list' then
nums[num] = true
end


args[k] = v -- Simple copy
for k, _ in pairs(args) do
if type(k) == 'string' then
local listnum = k:match(cfg.pattern.listnum)
if listnum then table.insert(listnums, tonumber(listnum)) end
end
end
end
end
table.sort(listnums)


colspan = args.image and 3 or 2
local border = mw.text.trim(args[cfg.arg.border] or args[1] or '')
if args.imageleft then colspan = colspan + 1 end
if border == cfg.keyword.border_child then
rowspan = 0
border = cfg.keyword.border_subgroup
 
if args.alternaterows == 'swap' then
alt = true
end
end


for k, v in pairs(nums) do
-- render the main body of the navbox
rownums[#rownums+1] = tonumber(k)
local tbl = renderMainTable(border, listnums)
end


table.sort(rownums)
local res = mw.html.create()
-- render the appropriate wrapper for the navbox, based on the border param


-- Calculate skip rows
if border == cfg.keyword.border_none then
local cSection, cSkip
res:node(add_navbox_styles(hiding_templatestyles))
local showall = args.showall
local nav = res:tag('div')
for i=1,#rownums do
:attr('role', 'navigation')
local num = rownums[i]
:node(tbl)
if args['header'..num] then
-- aria-labelledby title, otherwise above, otherwise lone group
cSection = true
if args[cfg.arg.title] or args[cfg.arg.above] or (args[cfg.arg.group1]
cSkip = false
and not args[cfg.arg.group2]) then
local showme = args['show'..num]
nav:attr(
if showme == 'no' then
'aria-labelledby',
cSkip = true
mw.uri.anchorEncode(
elseif showme == 'auto' or (showme ~= 'yes' and showall ~= 'yes') then
args[cfg.arg.title] or args[cfg.arg.above] or args[cfg.arg.group1]
if not args['list'..num] then
)
local nextNum = rownums[i+1]
)
cSkip = not nextNum or args['header'..nextNum] -- If next has a header -> skip
else
end
nav:attr('aria-label', cfg.aria_label)
end
end
end
if cSection and cSkip then
elseif border == cfg.keyword.border_subgroup then
skiprows[num] = true
-- We assume that this navbox is being rendered in a list cell of a
-- parent navbox, and is therefore inside a div with padding:0em 0.25em.
-- We start with a </div> to avoid the padding being applied, and at the
-- end add a <div> to balance out the parent's </div>
res
:wikitext('</div>')
:node(tbl)
:wikitext('<div>')
else
res:node(add_navbox_styles(hiding_templatestyles))
local nav = res:tag('div')
:attr('role', 'navigation')
:addClass(cfg.class.navbox)
:addClass(args[cfg.arg.navboxclass])
:cssText(args[cfg.arg.bodystyle])
:cssText(args[cfg.arg.style])
:css('padding', '3px')
:node(tbl)
-- aria-labelledby title, otherwise above, otherwise lone group
if args[cfg.arg.title] or args[cfg.arg.above]
or (args[cfg.arg.group1] and not args[cfg.arg.group2]) then
nav:attr(
'aria-labelledby',
mw.uri.anchorEncode(args[cfg.arg.title] or args[cfg.arg.above] or args[cfg.arg.group1])
)
else
nav:attr('aria-label', cfg.aria_label)
end
end
end
end
end
------------------------------------------------
-- MAIN FUNCTIONS
------------------------------------------------


--- Processes the arguments to create the navbox.
if (args[cfg.arg.nocat] or cfg.keyword.nocat_false):lower() == cfg.keyword.nocat_false then
--
renderTrackingCategories(res, border)
-- @return A string with HTML that is the navbox.
local function _navbox()
-- Create the root HTML element
local trim = function(s)
return s and mw.ustring.gsub(s, "^%s*(.-)%s*$", "%1") or ''
end
end
local border = args.border or trim(args[1]) or ''
return striped(tostring(res), border)
isChild = (border == 'child' or border == 'subgroup')
end


if isChild then
function p.navbox(frame)
navbox = mw.html.create('table'):addClass('navbox-subgroup')
if not getArgs then
else
getArgs = require('Module:Arguments').getArgs
navbox = mw.html.create('table'):addClass('navbox')
 
if args.state ~= 'plain' then
navbox:addClass('mw-collapsible'):attr('data-expandtext',args['expandtext'] or args['defaultexpandtext'] or showText):attr('data-collapsetext',args['collapsetext'] or args['defaultcollapsetext'] or hideText)
if args.state == 'collapsed' then
navbox:addClass('mw-collapsed')
end
end
end
end
args = getArgs(frame, {wrappers = {cfg.pattern.navbox}})


if args.bodyclass then navbox:addClass(args.bodyclass) end
-- Read the arguments in the order they'll be output in, to make references
if args.bodystyle then navbox:cssText(args.bodystyle) end
-- number in the right order.
 
local _
-- Process...
_ = args[cfg.arg.title]
if not isChild then
_ = args[cfg.arg.above]
processTitle()
-- Limit this to 20 as covering 'most' cases (that's a SWAG) and because
processAboveBelow('above')
-- iterator approach won't work here
processRows()
for i = 1, 20 do
processAboveBelow('below')
_ = args[format(cfg.arg.group_and_num, i)]
 
_ = args[format(cfg.arg.list_and_num, i)]
return tostring(navbox)
else
processRows()
 
local wrapper = mw.html.create('')
wrapper:wikitext('</div>')
wrapper:node(navbox)
wrapper:wikitext('<div class="hlist">')
return tostring(wrapper)
end
end
end
_ = args[cfg.arg.below]


--- Main module entry point.
return p._navbox(args)
-- To be called with {{#invoke:navbox|main}} or directly from another module.
--
-- @param frame The frame passed to the module via the #invoke. If called from another
--              module directly, this should be a table with the parameter definition.
function p.main(frame)
-- Save the arguments in a local variable so other functions can use them.
preProcessArgs(frame)
return _navbox()
end
end


return p
return p