Open main menu

Changes

Module:Navbar

287 bytes removed, 01:34, 10 September 2019
m
29 revisions imported
local getArgs
local HtmlBuilder = require('Module:HtmlBuilder')ul
local function trim(s) return mwp.ustring.matchaddItem (smini, "^%s*(.-)%s*$")end local function htmlError(sfull, link, descrip, args, url) local span = HtmlBuilder.create('span')l spanif url then .addClass('error') .css(l = {'float[', 'left') .css('white-space', 'nowrap') .wikitext('Error: ' .. s)  return tostring(span)end local function getTitle(pageName) pageName = trim(pageName); local page_title, talk_page_title;  if mw.ustring.sub(pageName, 1, 1) == ':]' then page_title = mw.title.new( mw.ustring.sub(pageName, 2));}
else
page_title l = mw.title.new(pageName{'[[', '|', 'Template]]');}
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 p.brackets (position, c, args, div) if page_title args.brackets then talk_page_title = page_titlediv :tag('span') :css('margin-'..talkPageTitle;position, '-0.125em') else :cssText(args.fontstyle) talk_page_title = nil; :wikitext(c)
end
 
return page_title, talk_page_title;
end
function p._navbar(args)
local goodshow = {true, titletrue, talk_title;true, false, false, false}
local titleArg = 1
if args.collapsible then
titleArg = 2
if not args.plain then args.mini = 1 end
if args.fontcolor then
args.fontstyle = 'color:' .. args.fontcolor .. ';'
end
args.style = 'float:left; text-align:left; width:6em;'
end
goodif args.template then titleArg = 'template' show = {true, false, false, false, false, titlefalse} local index = {t = 2, talk_title d = pcall2, e = 3, h = 4, m = 5, w = 6, talk = 2, edit = 3, hist = 4, move = 5, watch = 6} for k,v in ipairs(getTitle, args[titleArg] or require ('Module:TableTools' ).. mw.getCurrentFramecompressSparseArray(args):getParent():getTitle()));do local num = index[v] if not good num thenshow[num] = true end return htmlError(title);end
end
if args.noedit then show[3] = false end local titleText = args[titleArg] or (':' .. mw.getCurrentFrame():getParent():getTitle()) local title = mw.title.new(mw.text.trim(titleText), 'Template')
if not title then
return htmlErrorerror('Page does not existInvalid title '.. titleText)
end
  local mainpage talkpage = title.fullText; local talkpage = talk_title talkPageTitle and talk_titletitle.talkPageTitle.fullText or '' local editurl = title:fullUrl('action=edit');  local viewLink, talkLink, editLink div = 'view', 'talk', 'edit' if argsmw.mini then viewLink, talkLink, editLink = 'v', 't', 'e' end  local div = HtmlBuilderhtml.create().:tag('div')
div
.:addClass('plainlinks') .:addClass('hlist') .:addClass('navbar') .:cssText(args.style)
if args.mini then div.:addClass('mini') end
if not (args.mini or args.plain) then
div
.:tag('span') .:css('word-spacing', 0) .:cssText(args.fontstyle) .:wikitext(args.text or 'This box:') .wikitext(' ') end  if args.brackets then div .tag('span') .css('margin-right', '-0.125em') .cssText(args.fontstyle) .wikitext('[') .newline(); end  local ul = div.tag('ul');  ul .tag('li') .addClass('nv-view') .wikitext('[[' .. mainpage .. '|') .tag('span') .attr('title', 'View this template') .cssText(args.fontstyle or '') .wikitext(viewLink) .done() .wikitext(']]') .done() .tag('li') .addClass('nv-talk') .wikitext('[[' .. talkpage .. '|') .tag('span') .attr('title', 'Discuss this template') .cssText(args.fontstyle or '') .wikitext(talkLink) .done() .wikitext(']]');  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
p.brackets('right', '[ ', args, div)
ul = div:tag('ul')
if show[1] then p.addItem('v', 'view', title.fullText, 'View', args) end
if show[2] then p.addItem('t', 'talk', talkpage, 'Discuss', args) end
if show[3] then p.addItem('e', 'edit', title:fullUrl('action=edit'), 'Edit', args, true) end
if show[4] then p.addItem('h', 'hist', title:fullUrl('action=history'), 'History of', args, true) end
if show[5] then
local move = mw.title.new ('Special:Movepage')
p.addItem('m', 'move', move:fullUrl('target='..title.fullText), 'Move', args, true) end
if show[6] then p.addItem('w', 'watch', title:fullUrl('action=watch'), 'Watch', args, true) end
p.brackets('left', ' ]', args, div)
if args.collapsible then
div
.:done() .:tag('spandiv') .:css('font-size', '110114%') .cssText:css('margin', args.fontstyle mini and '0 4em' or '0 7em') :cssText(args.fontstyle) :wikitext(args[1])
end
return tostring(div.allDone:done())
end