Module:Navbar: Difference between revisions

m
28 revisions imported
(return an html string instead of an htmlbuilder)
m (28 revisions imported)
 
(28 intermediate revisions by 13 users not shown)
Line 1:
local p = {}
 
local getArgs
local HtmlBuilder = require('Module:HtmlBuilder')
local ul
 
function p.addItem (mini, full, link, descrip, args, url)
function trim(s)
local l
return (mw.ustring.gsub(s, "^%s*(.-)%s*$", "%1"))
if url then
l = {'[', '', ']'}
else
l = {'[[', '|', ']]'}
end
ul:tag('li')
:addClass('nv-'..full)
:wikitext(l[1] .. link .. l[2])
:tag(args.mini and 'abbr' or 'span')
:attr('title', descrip..' this template')
:cssText(args.fontstyle)
:wikitext(args.mini and mini or full)
:done()
:wikitext(l[3])
end
 
function _navbarp.brackets (position, c, args, div)
if not args[1].brackets then
div
local span = HtmlBuilder.create('span')
:tag('span')
:css('margin-'..position, '-0.125em')
span
:cssText(args.fontstyle)
.addClass('error')
:wikitext(c)
.css('float', 'left')
end
.css('white-space', 'nowrap')
end
.wikitext('Error: No name provided')
 
function p._navbar(args)
return span
local show = {true, true, true, false, false, false}
end
local titleArg = 1
local title;
if args.collapsible then
local pageName = trim(args[1])
titleArg = 2
if mw.ustring.sub(pageName, 1, 1) == ':' then
if not args.plain then args.mini = 1 end
title = mw.title.new( mw.ustring.sub(pageName, 2) );
if args.fontcolor then
else
args.fontstyle = 'color:' .. args.fontcolor .. ';'
title = mw.title.new( pageName );
end
if title.namespace == 0 then
args.style = 'float:left; text-align:left'
title = mw.title.makeTitle( 'Template', pageName );
end
end
end
if args.template then
titleArg = 'template'
local mainpage = title.fullText;
show = {true, false, false, false, false, false}
local talkpage = title.talkPageTitle and title.talkPageTitle.fullText or ''
local index = {t = 2, d = 2, e = 3, h = 4, m = 5, w = 6, talk = 2, edit = 3, hist = 4, move = 5, watch = 6}
local editurl = title:fullUrl( 'action=edit' );
for k,v in ipairs(require ('Module:TableTools').compressSparseArray(args)) do
local num = index[v]
local viewLink, talkLink, editLink = 'view', 'talk', 'edit'
if num then show[num] = true end
if args.mini then
end
viewLink, talkLink, editLink = 'v', 't', 'e'
end
if args.noedit then show[3] = false end
local div = HtmlBuilder.create( 'div' )
div
local titleText = args[titleArg] or (':' .. mw.getCurrentFrame():getParent():getTitle())
.addClass( 'noprint' )
local title = mw.title.new(mw.text.trim(titleText), 'Template')
.addClass( 'plainlinks' )
if not title then
.addClass( 'hlist' )
error('Invalid title ' .. titleText)
.addClass( 'navbar')
end
.cssText( args.style )
local talkpage = title.talkPageTitle and title.talkPageTitle.fullText or ''
if args.mini then div.addClass('mini') end
local div = mw.html.create():tag('div')
div
if not (args.mini or args.plain) then
:addClass('plainlinks')
div
:addClass('hlist')
.tag( 'span' )
:addClass('navbar')
.css( 'word-spacing', 0 )
. :cssText( args.fontstyle style)
 
.wikitext( args.text or 'This box:' )
if args.mini then div:addClass('mini') end
.wikitext( ' ' )
 
end
if not (args.mini or args.plain) then
div
if args.brackets then
:tag('span')
div
:css('word-spacing', 0)
.tag('span')
:cssText(args.fontstyle)
.css('margin-right', '-0.125em')
:wikitext(args.text or 'This box:')
.cssText( args.fontstyle )
. :wikitext(' '[' )
end
.newline();
end
p.brackets('right', '[ ', args, div)
local ul = div.tag('ul');
ul = div:tag('ul')
if show[1] then p.addItem('v', 'view', title.fullText, 'View', args) end
ul
if show[2] then p.addItem('t', 'talk', talkpage, 'Discuss', args) end
.tag( 'li' )
if show[3] then p.addItem('e', 'edit', title:fullUrl('action=edit'), 'Edit', args, true) end
.addClass( 'nv-view' )
if show[4] then p.addItem('h', 'hist', title:fullUrl('action=history'), 'History of', args, true) end
.wikitext( '[[' .. mainpage .. '|' )
if show[5] then
.tag( 'span ' )
local move = mw.title.new ('Special:Movepage')
.attr( 'title', 'View this template' )
p.addItem('m', 'move', move:fullUrl('target='..title.fullText), 'Move', args, true) end
.cssText( args.fontstyle or '' )
if show[6] then p.addItem('w', 'watch', title:fullUrl('action=watch'), 'Watch', args, true) end
.wikitext( viewLink )
.done()
p.brackets('left', ' ]', args, div)
.wikitext( ']]' )
.done()
if args.collapsible then
.tag( 'li' )
div
.addClass( 'nv-talk' )
:done()
.wikitext( '[[' .. talkpage .. '|' )
. :tag( 'span div' )
:css('font-size', '114%')
.attr( 'title', 'Discuss this template' )
:css('margin', args.mini and '0 4em' or '0 7em')
.cssText( args.fontstyle or '' )
:cssText(args.fontstyle)
.wikitext( talkLink )
:wikitext(args[1])
.done()
end
.wikitext( ']]' );
 
return tostring(div:done())
if not args.noedit then
ul
.tag( 'li' )
.addClass( 'nv-edit' )
.wikitext( '[' .. editurl .. ' ' )
.tag( 'span ' )
.attr( 'title', 'Edit this template' )
.cssText( args.fontstyle or '' )
.wikitext( editLink )
.done()
.wikitext( ']' );
end
if args.brackets then
div
.tag('span')
.css('margin-left', '-0.125em')
.cssText( args.fontstyle or '' )
.wikitext( ']' )
.newline();
end
return tostring(div)
end
 
function p.navbar(frame)
if not getArgs then
local origArgs
getArgs = require('Module:Arguments').getArgs
-- If called via #invoke, use the args passed into the invoking template.
end
-- Otherwise, for testing purposes, assume args are being passed directly in.
return p._navbar(getArgs(frame))
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
-- ParserFunctions considers the empty string to be false, so to preserve the previous
-- behavior of {{navbar}}, change any empty arguments to nil, so Lua will consider
-- them false too.
args = {}
for k, v in pairs(origArgs) do
if v ~= '' then
args[k] = v
end
end
return _navbar(args)
end
 
return p