|
|
| 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 function striped(wikitext, border) | | local args = {} -- Arguments passed to template |
| -- Return wikitext with markers replaced for odd/even striping.
| | local navbox -- Actual navbox |
| -- Child (subgroup) navboxes are flagged with a category that is removed
| | |
| -- by parent navboxes. The result is that the category shows all pages
| | --local working = {} |
| -- where a child navbox is not contained in a parent navbox.
| | local rownums, skiprows = {}, {} |
| local orphanCat = cfg.category.orphan
| | local hasrows, alt, hasData, isChild = false, false, false, false |
| if border == cfg.keyword.border_subgroup and args[cfg.arg.orphan] ~= cfg.keyword.orphan_yes then
| | local activeSection, sections, cimage, cimageleft |
| -- No change; striping occurs in outermost navbox.
| | local colspan, rowspan |
| return wikitext .. orphanCat
| | |
| end
| | local showText, hideText = 'Show', 'Hide' |
| 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 function processItem(item, nowrapitems) | | local langCode = mw.getContentLanguage():getCode() |
| if item:sub(1, 2) == '{|' then
| | local localization = {} --localized strings table |
| -- Applying nowrap to lines in a table does not make sense.
| | localization['bn'] = {show = 'দেখান', hide = 'লুকান'} |
| -- Add newlines to compensate for trim of x in |parm=x in a template.
| | localization['de'] = {show = 'Ausklappen', hide = 'Einklappen'} |
| return '\n' .. item ..'\n'
| | localization['en'] = {show = 'Show', hide = 'Hide'} |
| end
| | localization['es'] = {show = 'Mostrar', hide = 'Ocultar'} |
| if nowrapitems == cfg.keyword.nowrapitems_yes then
| | localization['hi'] = {show = 'दिखाएँ', hide = 'छिपाएँ'} |
| local lines = {}
| | localization['ja'] = {show = '表示', hide = '隠す'} |
| for line in (item .. '\n'):gmatch('([^\n]*)\n') do
| | localization['ru'] = {show = 'показать', hide = 'скрыть'} |
| local prefix, content = line:match('^([*:;#]+)%s*(.*)')
| | localization['pt-br'] = {show = 'Mostrar', hide = 'Esconder'} |
| if prefix and not content:match(cfg.pattern.nowrap) then
| | localization['zh'] = {show = '显示', hide = '隐藏'} |
| line = format(cfg.nowrap_item, prefix, content)
| | localization['zh-tw'] = {show = '顯示', hide = '隱藏'} |
| end
| | localization['zh-hk'] = {show = '顯示', hide = '隱藏'} |
| table.insert(lines, line)
| | if localization[langCode] then |
| end
| | showText = localization[langCode]['show'] |
| item = table.concat(lines, '\n')
| | hideText = localization[langCode]['hide'] |
| end
| |
| if item:match('^[*:;#]') then
| |
| return '\n' .. item ..'\n'
| |
| end
| |
| return item
| |
| end | | end |
|
| |
|
| local function has_navbar()
| | ------------------------------------------------ |
| return args[cfg.arg.navbar] ~= cfg.keyword.navbar_off
| | -- Title |
| and args[cfg.arg.navbar] ~= cfg.keyword.navbar_plain
| | ------------------------------------------------ |
| and (
| |
| args[cfg.arg.name]
| |
| or mw.getCurrentFrame():getParent():getTitle():gsub(cfg.pattern.sandbox, '')
| |
| ~= cfg.pattern.navbox
| |
| )
| |
| end
| |
|
| |
|
| local function renderNavBar(titleCell) | | --- Processes the VDE links in the title |
| if has_navbar() then | | -- |
| titleCell:wikitext(navbar{
| | -- @param titlecell The table cell of the title |
| [cfg.navbar.name] = args[cfg.arg.name],
| | local function processVde( titlecell ) |
| [cfg.navbar.mini] = 1,
| | if not args.template then return end |
| [cfg.navbar.fontstyle] = (args[cfg.arg.basestyle] or '') .. ';' ..
| |
| (args[cfg.arg.titlestyle] or '') ..
| |
| ';background:none transparent;border:none;box-shadow:none;padding:0;'
| |
| })
| |
| end
| |
|
| |
|
| | titlecell:wikitext('<span class="navbox-vde">' |
| | .. mw.getCurrentFrame():expandTemplate({ |
| | title = 'vdelinks', |
| | args = { args.template, ['type'] = 'navbox' } |
| | }) .. '</span>') |
| end | | end |
|
| |
|
| local function renderTitleRow(tbl) | | --- Processes the main title row |
| if not args[cfg.arg.title] then return end | | local function processTitle() |
| | local titlerow = mw.html.create('tr'):addClass('navbox-title') |
| | local titlecell = mw.html.create('th'):attr('colspan',colspan):attr('scope','col') |
|
| |
|
| local titleRow = tbl:tag('tr') | | if not pcall( processVde, titlecell ) then |
| | titlecell:wikitext( '<b class="navbox-vde error" title="Missing Template:Vdelinks">!!!</b>' ) |
| | end |
|
| |
|
| local titleCell = titleRow:tag('th'):attr('scope', 'col') | | titlecell:wikitext( args.title or '{{{title}}}' ) |
|
| |
|
| local titleColspan = 2 | | -- Padding |
| if args[cfg.arg.imageleft] then titleColspan = titleColspan + 1 end
| | local hasTemplate = args.template ~= nil |
| if args[cfg.arg.image] then titleColspan = titleColspan + 1 end | | local hasState = not args.state or args.state ~= 'plain' |
|
| |
|
| titleCell | | if hasTemplate ~= hasState then |
| :cssText(args[cfg.arg.basestyle]) | | if hasTemplate then |
| :cssText(args[cfg.arg.titlestyle]) | | titlecell:addClass('navbox-title-padright') |
| :addClass(cfg.class.navbox_title)
| | else |
| :attr('colspan', titleColspan) | | titlecell:addClass('navbox-title-padleft') |
| | end |
| | end |
|
| |
|
| renderNavBar(titleCell) | | if args.titleclass then titlerow:addClass( args.titleclass ) end |
| | if args.titlestyle then titlecell:cssText( args.titlestyle ) end |
|
| |
|
| titleCell | | titlerow:node(titlecell) |
| :tag('div')
| | navbox:node(titlerow) |
| -- 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 | | end |
|
| |
|
| local function getAboveBelowColspan() | | local function _addGutter( parent, incRowspan ) |
| local ret = 2 | | parent:tag('tr'):addClass('navbox-gutter'):tag('td'):attr('colspan',2) |
| if args[cfg.arg.imageleft] then ret = ret + 1 end | | |
| if args[cfg.arg.image] then ret = ret + 1 end | | if incRowspan then |
| return ret
| | rowspan = rowspan + 1 |
| | end |
| end | | end |
|
| |
|
| local function renderAboveRow(tbl)
| | ------------------------------------------------ |
| if not args[cfg.arg.above] then return end
| | -- Above/Below |
| | ------------------------------------------------ |
|
| |
|
| tbl:tag('tr')
| | --- Processes the above and below rows |
| :tag('td')
| | -- |
| :addClass(cfg.class.navbox_abovebelow)
| | -- @param rowtype Either 'above' or 'below' |
| :addClass(args[cfg.arg.aboveclass])
| | local function processAboveBelow( rowtype ) |
| :cssText(args[cfg.arg.basestyle])
| | if not args[rowtype] then return end |
| :cssText(args[cfg.arg.abovestyle])
| | |
| :attr('colspan', getAboveBelowColspan())
| | local abrow = mw.html.create('tr'):addClass('navbox-'..rowtype) |
| :tag('div')
| | local abcell = mw.html.create('td'):attr('colspan',colspan):wikitext( args[rowtype] ) |
| -- 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)
| | if args[rowtype .. 'class'] then abrow:addClass( args[rowtype .. 'class'] ) end |
| :wikitext(processItem(args[cfg.arg.above], args[cfg.arg.nowrapitems]))
| | if args[rowtype .. 'style'] then abcell:cssText( args[rowtype .. 'style'] ) end |
| | |
| | abrow:node( abcell ) |
| | _addGutter( navbox ) |
| | navbox:node( abrow ) |
| end | | end |
|
| |
|
| local function renderBelowRow(tbl)
| | ------------------------------------------------ |
| if not args[cfg.arg.below] then return end
| | -- Main Rows |
| | ------------------------------------------------ |
|
| |
|
| tbl:tag('tr')
| | --- Processes the images |
| :tag('td')
| | local function _processImage(row, imgtype) |
| :addClass(cfg.class.navbox_abovebelow)
| | if not args[imgtype] then return end |
| :addClass(args[cfg.arg.belowclass])
| | |
| :cssText(args[cfg.arg.basestyle])
| | local iclass = imgtype == 'image' and 'navbox-image-right' or 'navbox-image-left' |
| :cssText(args[cfg.arg.belowstyle])
| |
| :attr('colspan', getAboveBelowColspan())
| |
| :tag('div')
| |
| :wikitext(processItem(args[cfg.arg.below], args[cfg.arg.nowrapitems]))
| |
| end
| |
|
| |
|
| local function renderListRow(tbl, index, listnum, listnums_size) | | local imagecell = mw.html.create('td'):addClass('navbox-image'):addClass(iclass) |
| local row = tbl:tag('tr')
| |
|
| |
|
| if index == 1 and args[cfg.arg.imageleft] then | | local image = args[imgtype] |
| row | | if image:sub(1,1) ~= '[' then |
| :tag('td')
| | local width = args[imgtype .. 'width'] or '100px' |
| :addClass(cfg.class.noviewer)
| | imagecell:css('width',width):wikitext('['..'[' .. image .. '|' .. width .. '|link=' .. (args[imgtype .. 'link'] or '') .. ']]') |
| :addClass(cfg.class.navbox_image)
| | else |
| :addClass(args[cfg.arg.imageclass])
| | imagecell:css('width','0%'):wikitext(image) |
| :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 | | end |
|
| |
|
| local group_and_num = format(cfg.arg.group_and_num, listnum) | | if args[imgtype .. 'class'] then imagecell:addClass( args[imgtype .. 'class'] ) end |
| local groupstyle_and_num = format(cfg.arg.groupstyle_and_num, listnum)
| | if args[imgtype .. 'style'] then imagecell:cssText( args[imgtype .. 'style'] ) end |
| if args[group_and_num] then | | |
| local groupCell = row:tag('th')
| | row:node( imagecell ) |
| | if imgtype == 'image' then |
| | cimage = imagecell |
| | else |
| | cimageleft = imagecell |
| | end |
| | end |
|
| |
|
| -- id for aria-labelledby attribute, if lone group with no title or above
| | --- Closes the currently active section (if any) |
| if listnum == 1 and not (args[cfg.arg.title] or args[cfg.arg.above] or args[cfg.arg.group2]) then
| | local function _closeCurrentSection() |
| groupCell
| | if not activeSection then return end |
| :attr('id', mw.uri.anchorEncode(args[cfg.arg.group1]))
| |
| end
| |
|
| |
|
| groupCell
| | local row = mw.html.create('tr'):addClass('navbox-section-row') |
| :attr('scope', 'row')
| | local cell = mw.html.create('td'):attr('colspan',2) |
| :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%')
| |
|
| |
|
| groupCell | | if not hasrows then |
| :cssText(args[cfg.arg.groupstyle])
| | _processImage(row,'imageleft') |
| :cssText(args[groupstyle_and_num])
| |
| :wikitext(args[group_and_num])
| |
| end | | end |
|
| |
|
| local listCell = row:tag('td') | | cell:node(sections[activeSection]) |
| | row:node(cell) |
|
| |
|
| if args[group_and_num] then | | local firstRow = false |
| listCell | | if not hasrows then |
| :addClass(cfg.class.navbox_list_with_group)
| | firstRow = true |
| else
| | hasrows = true |
| listCell:attr('colspan', 2) | | _processImage(row,'image') |
| end | | end |
|
| |
|
| if not args[cfg.arg.groupwidth] then | | _addGutter(navbox,not firstRow) |
| listCell:css('width', '100%')
| | navbox:node(row) |
| end | | rowspan = rowspan + 1 |
| | |
| | activeSection = false |
| | hasData = false |
| | end |
|
| |
|
| local rowstyle -- usually nil so cssText(rowstyle) usually adds nothing
| | --- Handles alternating rows |
| if index % 2 == 1 then | | -- |
| rowstyle = args[cfg.arg.oddstyle] | | -- @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 | | else |
| rowstyle = args[cfg.arg.evenstyle] | | alt = true |
| | return false |
| end | | end |
| | end |
|
| |
|
| local list_and_num = format(cfg.arg.list_and_num, listnum)
| | --- Process a single Header "row" |
| local listText = args[list_and_num] | | -- |
| local oddEven = cfg.marker.oddeven | | -- @param num Number of the row to be processed |
| if listText:sub(1, 12) == '</div><table' then | | local function processHeader(num) |
| -- Assume list text is for a subgroup navbox so no automatic striping for this row.
| | if not args['header'..num] then return end |
| oddEven = listText:find(cfg.pattern.navbox_title) and cfg.marker.restart or cfg.class.navbox_odd_part
| | |
| end
| | _closeCurrentSection() |
| | |
| | local subtable = mw.html.create('table'):addClass('navbox-section') |
| | local headerrow = mw.html.create('tr') |
| | local header = mw.html.create('th'):addClass('navbox-header'):attr('colspan',2):attr('scope','col'):wikitext( args['header'..num] ) |
|
| |
|
| local liststyle_and_num = format(cfg.arg.liststyle_and_num, listnum) | | local collapseme = args['state'..num] or false |
| local listclass_and_num = format(cfg.arg.listclass_and_num, listnum)
| | local state = false |
| 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 index == 1 and args[cfg.arg.image] then | | if collapseme then |
| row | | -- Look at this one |
| :tag('td') | | if collapseme ~= 'plain' then |
| :addClass(cfg.class.noviewer)
| | state = collapseme == 'expanded' and 'expanded' or 'collapsed' |
| :addClass(cfg.class.navbox_image)
| | end |
| :addClass(args[cfg.arg.imageclass])
| | else |
| :css('width', '1px') -- Minimize width
| | -- Look at default |
| :css('padding', '0 0 0 2px')
| | local collapseall = args.defaultstate or false |
| :cssText(args[cfg.arg.imagestyle])
| | if collapseall then |
| :attr('rowspan', listnums_size)
| | state = collapseall == 'expanded' and 'expanded' or 'collapsed' |
| :tag('div')
| | end |
| :wikitext(processItem(args[cfg.arg.image]))
| |
| end | | end |
| end
| |
|
| |
|
| local function has_list_class(htmlclass)
| | if state then |
| local patterns = { | | 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) |
| '^' .. htmlclass .. '$', | | if state == 'collapsed' then |
| '%s' .. htmlclass .. '$',
| | subtable:addClass('mw-collapsed') |
| '^' .. 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 |
| | header:addClass('navbox-header-collapsible') |
| end | | end |
| return false | | |
| | if args.headerclass then headerrow:addClass( args.headerclass ) end |
| | if args.headerstyle then header:cssText( args.headerstyle ) end |
| | |
| | headerrow:node(header) |
| | subtable:node(headerrow) |
| | |
| | sections[num] = subtable |
| | activeSection = num |
| end | | end |
|
| |
|
| -- there are a lot of list classes in the wild, so we add their TemplateStyles | | --- Processes a single list row |
| local function add_list_styles() | | -- |
| local frame = mw.getCurrentFrame() | | -- @param num Number of the row to be processed |
| local function add_list_templatestyles(htmlclass, templatestyles)
| | local function processList(num) |
| if has_list_class(htmlclass) then
| | if not args['list'..num] then return end |
| return frame:extensionTag{
| | |
| name = 'templatestyles', args = { src = templatestyles }
| | local row = mw.html.create('tr'):addClass('navbox-row') |
| }
| | |
| else
| | if not hasrows and not activeSection then |
| return ''
| | _processImage(row, 'imageleft') |
| end
| |
| end | | end |
| | |
| | local listcell = mw.html.create('td'):addClass('navbox-list') |
| | local hlistcell = listcell:tag('div'):addClass('hlist') |
| | | |
| local hlist_styles = add_list_templatestyles('hlist', cfg.hlist_templatestyles) | | local data = args['list'..num] |
| local plainlist_styles = add_list_templatestyles('plainlist', cfg.plainlist_templatestyles)
| |
| | | |
| -- a second workaround for [[phab:T303378]] | | if data:sub(1,1) == '*' then |
| -- when that issue is fixed, we can actually use has_navbar not to emit the
| | -- Add newlines to support lists properly |
| -- tag here if we want
| | hlistcell |
| if has_navbar() and hlist_styles == '' then
| | :newline() |
| hlist_styles = frame:extensionTag{
| | :wikitext( data ) |
| name = 'templatestyles', args = { src = cfg.hlist_templatestyles } | | :newline() |
| } | | else |
| | hlistcell:wikitext( data ) |
| end | | end |
|
| |
| -- hlist -> plainlist is best-effort to preserve old Common.css ordering.
| |
| -- this ordering is not a guarantee because most navboxes will emit only
| |
| -- one of these classes [hlist_note]
| |
| return hlist_styles .. plainlist_styles
| |
| end
| |
|
| |
|
| local function needsHorizontalLists(border) | | local altRow = _alternateRow() |
| if border == cfg.keyword.border_subgroup or args[cfg.arg.tracking] == cfg.keyword.tracking_no then | | if altRow then |
| return false | | row:addClass( args.altrowclass or 'alt' ) |
| | |
| | local listclass = args.altlistclass or args.listclass or false |
| | 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 |
| return not has_list_class(cfg.pattern.hlist) and not has_list_class(cfg.pattern.plainlist)
| |
| end
| |
|
| |
|
| local function hasBackgroundColors() | | if args['group'..num] then |
| for _, key in ipairs({cfg.arg.titlestyle, cfg.arg.groupstyle,
| | local groupcell = mw.html.create('th'):addClass('navbox-group'):attr('scope','row'):wikitext( args['group'..num] ) |
| cfg.arg.basestyle, cfg.arg.abovestyle, cfg.arg.belowstyle}) do | | |
| if tostring(args[key]):find('background', 1, true) then | | if altRow then |
| return true
| | local groupclass = args.altgroupclass or args.groupclass or false |
| | if groupclass then groupcell:addClass( groupclass ) end |
| | |
| | local groupstyle = args.altgroupstyle or args.groupstyle or false |
| | if groupstyle then groupcell:cssText( groupstyle ) end |
| | else |
| | if args.groupclass then groupcell:addClass( args.groupclass ) end |
| | if args.groupstyle then groupcell:cssText( args.groupstyle ) end |
| end | | end |
| | |
| | row:node( groupcell ) |
| | else |
| | listcell:attr('colspan',2):addClass('no-group') |
| | end |
| | |
| | row:node( listcell ) |
| | |
| | local firstRow = false |
| | if not hasrows and not activeSection then |
| | firstRow = true |
| | hasrows = true |
| | _processImage(row, 'image') |
| end | | end |
| return false
| |
| end
| |
|
| |
|
| local function hasBorders()
| | if activeSection then |
| for _, key in ipairs({cfg.arg.groupstyle, cfg.arg.basestyle, | | local parent = sections[activeSection] |
| cfg.arg.abovestyle, cfg.arg.belowstyle}) do | | if not isChild or not firstRow then |
| if tostring(args[key]):find('border', 1, true) then | | _addGutter(parent) |
| return true | |
| end | | end |
| | parent:node(row) |
| | hasData = true |
| | else |
| | if not isChild or not firstRow then |
| | _addGutter(navbox,not firstRow) |
| | end |
| | navbox:node( row ) |
| | rowspan = rowspan + 1 |
| end | | end |
| return false
| |
| end | | end |
|
| |
|
| local function isIllegible() | | --- Processes all rows |
| local styleratio = require('Module:Color contrast')._styleratio | | local function processRows() |
| for key, style in pairs(args) do | | sections = {} |
| if tostring(key):match(cfg.pattern.style) then | | for i=1,#rownums do |
| if styleratio{mw.text.unstripNoWiki(style)} < 4.5 then | | local num = rownums[i] |
| return true
| | if not skiprows[num] then |
| end | | processHeader(num) |
| | processList(num) |
| end | | end |
| end | | end |
| return false | | _closeCurrentSection() |
| | |
| | if cimageleft then |
| | cimageleft:attr('rowspan',rowspan) |
| | end |
| | if cimage then |
| | cimage:attr('rowspan',rowspan) |
| | end |
| end | | end |
|
| |
|
| local function getTrackingCategories(border)
| | ------------------------------------------------ |
| local cats = {}
| | -- ARGUMENTS PREPROCESSOR |
| if needsHorizontalLists(border) then table.insert(cats, cfg.category.horizontal_lists) end
| | -- * Extracts arguments from frame and stores them in args table |
| if hasBackgroundColors() then table.insert(cats, cfg.category.background_colors) end
| | -- * At the same time, checks for valid row numbers |
| if isIllegible() then table.insert(cats, cfg.category.illegible) end
| | ------------------------------------------------ |
| if hasBorders() then table.insert(cats, cfg.category.borders) end
| |
| return cats
| |
| end
| |
|
| |
|
| local function renderTrackingCategories(builder, border)
| | --- Preprocessor for the arguments. |
| local title = mw.title.getCurrentTitle()
| | -- Will fill up the args table with the parameters from the frame grouped by their type. |
| if title.namespace ~= 10 then return end -- not in template space
| | -- |
| local subpage = title.subpageText
| | -- @param frame The frame passed to the Module. |
| if subpage == cfg.keyword.subpage_doc or subpage == cfg.keyword.subpage_sandbox | | local function preProcessArgs(frame) |
| or subpage == cfg.keyword.subpage_testcases then return end
| | local tmp = {} |
|
| |
|
| for _, cat in ipairs(getTrackingCategories(border)) do | | if frame == mw.getCurrentFrame() then |
| builder:wikitext('[[Category:' .. cat .. ']]') | | tmp = frame:getParent().args |
| | else |
| | tmp = frame |
| end | | end |
| end
| |
|
| |
|
| local function renderMainTable(border, listnums) | | -- Storage tables |
| local tbl = mw.html.create('table')
| | local nums = {} |
| :addClass(cfg.class.nowraplinks)
| | |
| :addClass(args[cfg.arg.bodyclass])
| | -- 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 |
|
| |
|
| local state = args[cfg.arg.state]
| | args[k] = v -- Simple copy |
| if args[cfg.arg.title] and state ~= cfg.keyword.state_plain and state ~= cfg.keyword.state_off then
| |
| if state == cfg.keyword.state_collapsed then
| |
| state = cfg.class.collapsed
| |
| end | | end |
| tbl
| |
| :addClass(cfg.class.collapsible)
| |
| :addClass(state or cfg.class.autocollapse)
| |
| end | | end |
|
| |
|
| tbl:css('border-spacing', 0) | | colspan = args.image and 3 or 2 |
| if border == cfg.keyword.border_subgroup or border == cfg.keyword.border_none then
| | if args.imageleft then colspan = colspan + 1 end |
| tbl
| | rowspan = 0 |
| :addClass(cfg.class.navbox_subgroup)
| | |
| :cssText(args[cfg.arg.bodystyle])
| | if args.alternaterows == 'swap' then |
| :cssText(args[cfg.arg.style])
| | alt = true |
| else -- regular navbox - bodystyle and style will be applied to the wrapper table | |
| tbl
| |
| :addClass(cfg.class.navbox_inner)
| |
| :css('background', 'transparent')
| |
| :css('color', 'inherit')
| |
| end | | end |
| tbl:cssText(args[cfg.arg.innerstyle])
| |
|
| |
|
| renderTitleRow(tbl)
| | for k, v in pairs(nums) do |
| renderAboveRow(tbl)
| | rownums[#rownums+1] = tonumber(k) |
| local listnums_size = #listnums
| |
| for i, listnum in ipairs(listnums) do | |
| renderListRow(tbl, i, listnum, listnums_size) | |
| end | | end |
| renderBelowRow(tbl)
| |
|
| |
|
| return tbl | | table.sort(rownums) |
| end
| |
|
| |
|
| local function add_navbox_styles(hiding_templatestyles) | | -- Calculate skip rows |
| local frame = mw.getCurrentFrame() | | local cSection, cSkip |
| -- This is a lambda so that it doesn't need the frame as a parameter | | local showall = args.showall |
| local function add_user_styles(templatestyles)
| | for i=1,#rownums do |
| if templatestyles and templatestyles ~= '' then | | local num = rownums[i] |
| return frame:extensionTag{ | | if args['header'..num] then |
| name = 'templatestyles', args = { src = templatestyles } | | cSection = true |
| } | | cSkip = false |
| | local showme = args['show'..num] |
| | if showme == 'no' then |
| | cSkip = true |
| | elseif showme == 'auto' or (showme ~= 'yes' and showall ~= 'yes') then |
| | if not args['list'..num] then |
| | local nextNum = rownums[i+1] |
| | cSkip = not nextNum or args['header'..nextNum] -- If next has a header -> skip |
| | end |
| | end |
| | end |
| | if cSection and cSkip then |
| | skiprows[num] = true |
| end | | end |
| return ''
| |
| end | | end |
| | end |
|
| |
|
| -- get templatestyles. load base from config so that Lua only needs to do
| | ------------------------------------------------ |
| -- the work once of parser tag expansion
| | -- MAIN FUNCTIONS |
| 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])
| |
|
| |
|
| -- The 'navbox-styles' div exists to wrap the styles to work around T200206
| | --- Processes the arguments to create the navbox. |
| -- more elegantly. Instead of combinatorial rules, this ends up being linear
| | -- |
| -- number of CSS rules.
| | -- @return A string with HTML that is the navbox. |
| return mw.html.create('div')
| | local function _navbox() |
| :addClass(cfg.class.navbox_styles)
| | -- Create the root HTML element |
| :wikitext(
| | local trim = function(s) |
| add_list_styles() .. -- see [hlist_note] applied to 'before base_templatestyles'
| | return s and mw.ustring.gsub(s, "^%s*(.-)%s*$", "%1") or '' |
| base_templatestyles ..
| |
| templatestyles ..
| |
| child_templatestyles ..
| |
| table.concat(hiding_templatestyles)
| |
| )
| |
| :done()
| |
| end
| |
| | |
| -- work around [[phab:T303378]]
| |
| -- for each arg: find all the templatestyles strip markers, insert them into a
| |
| -- table. then remove all templatestyles markers from the arg
| |
| local function move_hiding_templatestyles(args) | |
| local gfind = string.gfind
| |
| local gsub = string.gsub
| |
| local templatestyles_markers = {}
| |
| 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
| |
| args[k] = gsub(arg, strip_marker_pattern, '')
| |
| end | | end |
| return templatestyles_markers | | local border = args.border or trim(args[1]) or '' |
| end
| | isChild = (border == 'child' or border == 'subgroup') |
|
| |
|
| function p._navbox(navboxArgs)
| | if isChild then |
| args = navboxArgs | | navbox = mw.html.create('table'):addClass('navbox-subgroup') |
| local hiding_templatestyles = move_hiding_templatestyles(args)
| | else |
| local listnums = {}
| | navbox = mw.html.create('table'):addClass('navbox') |
|
| |
|
| for k, _ in pairs(args) do
| | if args.state ~= 'plain' then |
| if type(k) == 'string' 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) |
| local listnum = k:match(cfg.pattern.listnum)
| | if args.state == 'collapsed' then |
| if listnum then table.insert(listnums, tonumber(listnum)) end | | navbox:addClass('mw-collapsed') |
| | end |
| end | | end |
| end
| |
| table.sort(listnums)
| |
|
| |
| local border = mw.text.trim(args[cfg.arg.border] or args[1] or '')
| |
| if border == cfg.keyword.border_child then
| |
| border = cfg.keyword.border_subgroup
| |
| end | | end |
|
| |
|
| -- render the main body of the navbox
| | if args.bodyclass then navbox:addClass(args.bodyclass) end |
| local tbl = renderMainTable(border, listnums) | | if args.bodystyle then navbox:cssText(args.bodystyle) end |
|
| |
|
| local res = mw.html.create() | | -- Process... |
| -- render the appropriate wrapper for the navbox, based on the border param
| | if not isChild then |
| | processTitle() |
| | processAboveBelow('above') |
| | processRows() |
| | processAboveBelow('below') |
|
| |
|
| if border == cfg.keyword.border_none then
| | return tostring(navbox) |
| res:node(add_navbox_styles(hiding_templatestyles)) | |
| local nav = res:tag('div')
| |
| :attr('role', 'navigation')
| |
| :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
| |
| elseif border == cfg.keyword.border_subgroup then
| |
| -- 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 | | else |
| res:node(add_navbox_styles(hiding_templatestyles)) | | processRows() |
| 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
| |
|
| |
|
| if (args[cfg.arg.nocat] or cfg.keyword.nocat_false):lower() == cfg.keyword.nocat_false then
| | local wrapper = mw.html.create('') |
| renderTrackingCategories(res, border) | | wrapper:wikitext('</div>') |
| | wrapper:node(navbox) |
| | wrapper:wikitext('<div class="hlist">') |
| | return tostring(wrapper) |
| end | | end |
| return striped(tostring(res), border)
| |
| end | | end |
|
| |
|
| function p.navbox(frame)
| | --- Main module entry point. |
| if not getArgs then
| | -- To be called with {{#invoke:navbox|main}} or directly from another module. |
| getArgs = require('Module:Arguments').getArgs
| | -- |
| end
| | -- @param frame The frame passed to the module via the #invoke. If called from another |
| args = getArgs(frame, {wrappers = {cfg.pattern.navbox}})
| | -- module directly, this should be a table with the parameter definition. |
| | | function p.main(frame) |
| -- Read the arguments in the order they'll be output in, to make references
| | -- Save the arguments in a local variable so other functions can use them. |
| -- number in the right order.
| | preProcessArgs(frame) |
| local _
| | |
| _ = args[cfg.arg.title]
| | return _navbox() |
| _ = args[cfg.arg.above]
| |
| -- Limit this to 20 as covering 'most' cases (that's a SWAG) and because
| |
| -- iterator approach won't work here | |
| for i = 1, 20 do | |
| _ = args[format(cfg.arg.group_and_num, i)]
| |
| _ = args[format(cfg.arg.list_and_num, i)]
| |
| end
| |
| _ = args[cfg.arg.below]
| |
| | |
| return p._navbox(args) | |
| end | | end |
|
| |
|
| return p | | return p |