Module:Navbox: Difference between revisions

don't use globals
Enwikipedia>Ged UK
m (Changed protection level of Module:Navbox: lowering to template protection ([Edit=Allow only template editors and admins] (indefinite) [Move=Allow only template editors and admins] (indefinite)))
Enwikipedia>Jackmcbarn
(don't use globals)
Line 14:
local listnums = {}
local function trim(s)
return (mw.ustring.gsub(s, "^%s*(.-)%s*$", "%1"))
end
 
local function addNewline(s)
if s:match('^[*:;#]') or s:match('^{|') then
return '\n' .. s ..'\n'
Line 26:
end
 
local function addTableRow(tbl)
-- If any other rows have already been added, then we add a 2px gutter row.
if tableRowAdded then
Line 41:
end
 
local function renderNavBar(titleCell)
-- Depending on the presence of the navbar and/or show/hide link, we may need to add a spacer div on the left
-- or right to keep the title centered.
local spacerSide = nil
 
if args.navbar == 'off' then
-- No navbar, and client wants no spacer, i.e. wants the title to be shifted to the left. If there's
-- also no show/hide link, then we need a spacer on the right to achieve the left shift.
if args.state == 'plain' then spacerSide = 'right' end
elseif args.navbar == 'plain' or args.navbar == 'off' or (not args.name and (border == 'subgroup' or border == 'child' or border == 'none')) then
-- No navbar. Need a spacer on the left to balance out the width of the show/hide link.
if args.state ~= 'plain' then spacerSide = 'left' end
else
-- Will render navbar (or error message). If there's no show/hide link, need a spacer on the right
-- to balance out the width of the navbar.
if args.state == 'plain' then spacerSide = 'right' end
 
titleCell.wikitext(Navbar.navbar({
args.name,
mini = 1,
fontstyle = (args.basestyle or '') .. ';' .. (args.titlestyle or '') .. ';background:none transparent;border:none;'
}))
end
-- Render the spacer div.
if spacerSide then
titleCell
.tag('span')
.css('float', spacerSide)
.css('width', '6em')
.wikitext(' ')
end
end
 
--
-- Title row
--
local function renderTitleRow(tbl)
if not args.title then return end
Line 90 ⟶ 123:
end
 
--
function renderNavBar(titleCell)
-- Above/Below rows
-- Depending on the presence of the navbar and/or show/hide link, we may need to add a spacer div on the left
--
-- or right to keep the title centered.
local spacerSide = nil
 
local function getAboveBelowColspan()
if args.navbar == 'off' then
local ret = 2
-- No navbar, and client wants no spacer, i.e. wants the title to be shifted to the left. If there's
if args.imageleft then ret = ret + 1 end
-- also no show/hide link, then we need a spacer on the right to achieve the left shift.
if args.stateimage ==then 'plain'ret then= spacerSideret =+ 'right'1 end
return ret
elseif args.navbar == 'plain' or args.navbar == 'off' or (not args.name and (border == 'subgroup' or border == 'child' or border == 'none')) then
-- No navbar. Need a spacer on the left to balance out the width of the show/hide link.
if args.state ~= 'plain' then spacerSide = 'left' end
else
-- Will render navbar (or error message). If there's no show/hide link, need a spacer on the right
-- to balance out the width of the navbar.
if args.state == 'plain' then spacerSide = 'right' end
 
titleCell.wikitext(Navbar.navbar({
args.name,
mini = 1,
fontstyle = (args.basestyle or '') .. ';' .. (args.titlestyle or '') .. ';background:none transparent;border:none;'
}))
end
-- Render the spacer div.
if spacerSide then
titleCell
.tag('span')
.css('float', spacerSide)
.css('width', '6em')
.wikitext(' ')
end
end
 
local function renderAboveRow(tbl)
 
--
-- Above/Below rows
--
function renderAboveRow(tbl)
if not args.above then return end
 
Line 142 ⟶ 148:
end
 
local function renderBelowRow(tbl)
if not args.below then return end
 
Line 155 ⟶ 161:
.wikitext(addNewline(args.below))
end
 
function getAboveBelowColspan()
local ret = 2
if args.imageleft then ret = ret + 1 end
if args.image then ret = ret + 1 end
return ret
end
--
-- List rows
--
local function renderListRow(tbl, listnum)
local row = addTableRow(tbl)
Line 258 ⟶ 256:
-- Tracking categories
--
local function renderTrackingCategories(builder)
local frame = mw.getCurrentFrame()
Line 273 ⟶ 271:
end
 
local function getTrackingCategories()
local cats = {}
if needsHorizontalLists() then table.insert(cats, 'Navigational boxes without horizontal lists') end
Line 280 ⟶ 278:
end
 
local function needsHorizontalLists()
if border == 'child' or border == 'subgroup' or args.tracking == 'no' then return false end
Line 293 ⟶ 291:
end
 
local function hasBackgroundColors()
return args.titlestyle or args.groupstyle
end
Line 301 ⟶ 299:
-- Main navbox tables
--
local function renderMainTable()
local tbl = HtmlBuilder.create('table')
.attr('cellspacing', 0)