Difference between revisions of "Module:Navbar"

From BESA® Wiki
Jump to: navigation, search
m (1 revision)
(navbar code split from Module:Navbox)
(22 intermediate revisions by 10 users not shown)
Line 1: Line 1:
 
local p = {}
 
local p = {}
  
−
local getArgs
+
local HtmlBuilder = require('Module:HtmlBuilder')
  
−
function p._navbar(args)
+
function trim(s)
−
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; width:6em;'
+
            .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 not (args.mini or args.plain) then
+
    if args.mini 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
−
:newline();
+
        div
−
end
+
            .tag( 'span' )
−
 
+
                .css( 'word-spacing', 0 )
−
local ul = div:tag('ul');
+
                .cssText( args.fontstyle )
−
 
+
                .wikitext( args.text or 'This box:' )
−
ul
+
                .wikitext( ' ' )
−
:tag('li')
+
    end
−
:addClass('nv-view')
+
−
:wikitext('[[' .. title.fullText .. '|')
+
    if args.brackets then
−
:tag(args.mini and 'abbr' or 'span')
+
        div
−
:attr('title', 'View this template')
+
            .tag('span')
−
:cssText(args.fontstyle)
+
                .css('margin-right', '-0.125em')
−
:wikitext(args.mini and 'v' or 'view')
+
                .cssText( args.fontstyle )
−
:done()
+
                .wikitext( '[' )
−
:wikitext(']]')
+
                .newline();
−
:done()
+
    end
−
:tag('li')
+
−
:addClass('nv-talk')
+
    local ul = div.tag('ul');
−
:wikitext('[[' .. talkpage .. '|')
+
−
:tag(args.mini and 'abbr' or 'span')
+
    ul
−
:attr('title', 'Discuss this template')
+
        .tag( 'li' )
−
:cssText(args.fontstyle)
+
            .addClass( 'nv-view' )
−
:wikitext(args.mini and 't' or 'talk')
+
            .wikitext( '[[' .. mainpage .. '|' )
−
:done()
+
            .tag( 'span ' )
−
:wikitext(']]');
+
                .attr( 'title', 'View this template' )
−
 
+
                .cssText( args.fontstyle or '' )
−
if not args.noedit then
+
                .wikitext( viewLink )
−
ul
+
                .done()
−
:tag('li')
+
            .wikitext( ']]' )
−
:addClass('nv-edit')
+
            .done()
−
:wikitext('[' .. title:fullUrl('action=edit') .. ' ')
+
        .tag( 'li' )
−
:tag(args.mini and 'abbr' or 'span')
+
            .addClass( 'nv-talk' )
−
:attr('title', 'Edit this template')
+
            .wikitext( '[[' .. talkpage .. '|' )
−
:cssText(args.fontstyle)
+
            .tag( 'span ' )
−
:wikitext(args.mini and 'e' or 'edit')
+
                .attr( 'title', 'Discuss this template' )
−
:done()
+
                .cssText( args.fontstyle or '' )
−
:wikitext(']');
+
                .wikitext( talkLink )
−
end
+
                .done()
−
 
+
            .wikitext( ']]' );
−
if args.brackets then
+
−
div
+
    if not args.noedit then  
−
:tag('span')
+
        ul
−
:css('margin-left', '-0.125em')
+
            .tag( 'li' )
−
:cssText(args.fontstyle)
+
                .addClass( 'nv-edit' )
−
:wikitext(']')
+
                .wikitext( '[' .. editurl .. ' ' )
−
:newline();
+
                .tag( 'span ' )
−
end
+
                    .attr( 'title', 'Edit this template' )
−
 
+
                    .cssText( args.fontstyle or '' )
−
if args.collapsible then
+
                    .wikitext( editLink )
−
div
+
                    .done()
−
:done()
+
                .wikitext( ']' );
−
:tag('span')
+
    end
−
:css('font-size', '110%')
+
−
:cssText(args.fontstyle)
+
    if args.brackets then
−
:wikitext(args[1])
+
        div
−
end
+
            .tag('span')
−
 
+
                .css('margin-left', '-0.125em')
−
return tostring(div:done())
+
                .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

Revision as of 04:45, 16 March 2013

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

Script error: Lua error: Internal error: The interpreter exited with status 126.

local p = {}

local HtmlBuilder = require('Module:HtmlBuilder')

function trim(s)
    return (mw.ustring.gsub(s, "^%s*(.-)%s*$", "%1"))
end

function _navbar( args )
    if not args[1] then
        local span = HtmlBuilder.create('span')
 
        span
            .addClass('error')
            .css('float', 'left')
            .css('white-space', 'nowrap')
            .wikitext('Error: No name provided')
 
        return span
    end
 
    local title;
    local pageName = trim(args[1])
    if mw.ustring.sub(pageName, 1, 1) == ':' then
        title = mw.title.new( mw.ustring.sub(pageName, 2) );
    else
        title = mw.title.new( pageName );
        if title.namespace == 0 then
            title = mw.title.makeTitle( 'Template', pageName );
        end    
    end       
 
    local mainpage = title.fullText;
    local talkpage = title.talkPageTitle and title.talkPageTitle.fullText or ''
    local editurl = title:fullUrl( 'action=edit' ); 
 
    local viewLink, talkLink, editLink = 'view', 'talk', 'edit'
    if args.mini then
        viewLink, talkLink, editLink = 'v', 't', 'e'
    end
 
    local div = HtmlBuilder.create( 'div' )
    div
        .addClass( 'noprint' )
        .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
 
    return div
end

function p.navbar(frame)
    local origArgs
    -- If called via #invoke, use the args passed into the invoking template.
    -- Otherwise, for testing purposes, assume args are being passed directly in.
    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