Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Navbar: Difference between revisions

Content added Content deleted
(navbar code split from Module:Navbox)
 
m (27 revisions imported: import clickable buttons 2)
 
(35 intermediate revisions by 16 users not shown)
Line 1: Line 1:
local p = {}
local p = {}


local getArgs
local HtmlBuilder = require('Module:HtmlBuilder')


function trim(s)
function p._navbar(args)
local titleArg = 1
return (mw.ustring.gsub(s, "^%s*(.-)%s*$", "%1"))
end


if args.collapsible then
function _navbar( args )
titleArg = 2
if not args[1] then
if not args.plain then
local span = HtmlBuilder.create('span')
args.mini = 1
end
span
if args.fontcolor then
.addClass('error')
args.fontstyle = 'color:' .. args.fontcolor .. ';'
.css('float', 'left')
end
.css('white-space', 'nowrap')
args.style = 'float:left; text-align:left'
.wikitext('Error: No name provided')
end

return span
local titleText = args[titleArg] or (':' .. mw.getCurrentFrame():getParent():getTitle())
end
local title = mw.title.new(mw.text.trim(titleText), 'Template');

local title;
if not title then
local pageName = trim(args[1])
error('Invalid title ' .. titleText)
if mw.ustring.sub(pageName, 1, 1) == ':' then
end
title = mw.title.new( mw.ustring.sub(pageName, 2) );

else
local talkpage = title.talkPageTitle and title.talkPageTitle.fullText or '';
title = mw.title.new( pageName );

if title.namespace == 0 then
local div = mw.html.create():tag('div')
title = mw.title.makeTitle( 'Template', pageName );
div
end
:addClass('plainlinks')
end
:addClass('hlist')
:addClass('navbar')
local mainpage = title.fullText;
:cssText(args.style)
local talkpage = title.talkPageTitle and title.talkPageTitle.fullText or ''

local editurl = title:fullUrl( 'action=edit' );
if args.mini then div:addClass('mini') end

local viewLink, talkLink, editLink = 'view', 'talk', 'edit'
if args.mini then
if not (args.mini or args.plain) then
div
viewLink, talkLink, editLink = 'v', 't', 'e'
:tag('span')
end
:css('word-spacing', 0)
:cssText(args.fontstyle)
local div = HtmlBuilder.create( 'div' )
:wikitext(args.text or 'This box:')
div
:wikitext(' ')
.addClass( 'noprint' )
end
.addClass( 'plainlinks' )

.addClass( 'hlist' )
if args.brackets then
.addClass( 'navbar')
div
.cssText( args.style )
:tag('span')
:css('margin-right', '-0.125em')
if args.mini then div.addClass('mini') end
:cssText(args.fontstyle)
:wikitext('[ ')
if not (args.mini or args.plain) then
end
div

.tag( 'span' )
local ul = div:tag('ul');
.css( 'word-spacing', 0 )

.cssText( args.fontstyle )
ul
.wikitext( args.text or 'This box:' )
:tag('li')
.wikitext( ' ' )
:addClass('nv-view')
end
:wikitext('[[' .. title.fullText .. '|')
:tag(args.mini and 'abbr' or 'span')
if args.brackets then
:attr('title', 'View this template')
div
:cssText(args.fontstyle)
.tag('span')
:wikitext(args.mini and 'v' or 'view')
.css('margin-right', '-0.125em')
:done()
.cssText( args.fontstyle )
.wikitext( '[' )
:wikitext(']]')
:done()
.newline();
:tag('li')
end
:addClass('nv-talk')
:wikitext('[[' .. talkpage .. '|')
local ul = div.tag('ul');
:tag(args.mini and 'abbr' or 'span')
:attr('title', 'Discuss this template')
ul
:cssText(args.fontstyle)
.tag( 'li' )
:wikitext(args.mini and 't' or 'talk')
.addClass( 'nv-view' )
:done()
.wikitext( '[[' .. mainpage .. '|' )
:wikitext(']]');
.tag( 'span ' )

.attr( 'title', 'View this template' )
if not args.noedit then
.cssText( args.fontstyle or '' )
ul
.wikitext( viewLink )
:tag('li')
.done()
:addClass('nv-edit')
.wikitext( ']]' )
:wikitext('[' .. title:fullUrl('action=edit') .. ' ')
.done()
:tag(args.mini and 'abbr' or 'span')
.tag( 'li' )
:attr('title', 'Edit this template')
.addClass( 'nv-talk' )
:cssText(args.fontstyle)
.wikitext( '[[' .. talkpage .. '|' )
:wikitext(args.mini and 'e' or 'edit')
.tag( 'span ' )
:done()
.attr( 'title', 'Discuss this template' )
:wikitext(']');
.cssText( args.fontstyle or '' )
end
.wikitext( talkLink )

.done()
if args.brackets then
.wikitext( ']]' );
div
:tag('span')
if not args.noedit then
:css('margin-left', '-0.125em')
ul
:cssText(args.fontstyle)
.tag( 'li' )
:wikitext(' ]')
.addClass( 'nv-edit' )
end
.wikitext( '[' .. editurl .. ' ' )

.tag( 'span ' )
if args.collapsible then
.attr( 'title', 'Edit this template' )
div
.cssText( args.fontstyle or '' )
:done()
.wikitext( editLink )
:tag('div')
.done()
:css('font-size', '114%')
.wikitext( ']' );
:css('margin', args.mini and '0 4em' or '0 7em')
end
:cssText(args.fontstyle)
:wikitext(args[1])
if args.brackets then
end
div

.tag('span')
return tostring(div:done())
.css('margin-left', '-0.125em')
.cssText( args.fontstyle or '' )
.wikitext( ']' )
.newline();
end
return div
end
end


function p.navbar(frame)
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
end

return p
return p

Latest revision as of 00:30, 28 March 2020

Documentation for this module may be created at Module:Navbar/doc

local p = {}

local getArgs

function p._navbar(args)
	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'
	end

	local titleText = args[titleArg] or (':' .. mw.getCurrentFrame():getParent():getTitle())
	local title = mw.title.new(mw.text.trim(titleText), 'Template');

	if not title then
		error('Invalid title ' .. titleText)
	end

	local talkpage = title.talkPageTitle and title.talkPageTitle.fullText or '';

	local div = mw.html.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('[ ')
	end

	local ul = div:tag('ul');

	ul
		:tag('li')
			:addClass('nv-view')
			:wikitext('[[' .. title.fullText .. '|')
			:tag(args.mini and 'abbr' or 'span')
				:attr('title', 'View this template')
				:cssText(args.fontstyle)
				:wikitext(args.mini and 'v' or 'view')
				:done()
			:wikitext(']]')
			:done()
		:tag('li')
			:addClass('nv-talk')
			:wikitext('[[' .. talkpage .. '|')
			:tag(args.mini and 'abbr' or 'span')
				:attr('title', 'Discuss this template')
				:cssText(args.fontstyle)
				:wikitext(args.mini and 't' or 'talk')
				:done()
			:wikitext(']]');

	if not args.noedit then
		ul
			:tag('li')
				:addClass('nv-edit')
				:wikitext('[' .. title:fullUrl('action=edit') .. ' ')
				:tag(args.mini and 'abbr' or 'span')
					:attr('title', 'Edit this template')
					:cssText(args.fontstyle)
					:wikitext(args.mini and 'e' or 'edit')
					:done()
				:wikitext(']');
	end

	if args.brackets then
		div
			:tag('span')
				:css('margin-left', '-0.125em')
				:cssText(args.fontstyle)
				:wikitext(' ]')
	end

	if args.collapsible then
		div
			:done()
		:tag('div')
			:css('font-size', '114%')
			:css('margin', args.mini and '0 4em' or '0 7em')
			:cssText(args.fontstyle)
			:wikitext(args[1])
	end

	return tostring(div:done())
end

function p.navbar(frame)
	if not getArgs then
		getArgs = require('Module:Arguments').getArgs
	end
	return p._navbar(getArgs(frame))
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.