Content deleted Content added
use code in Module:Portal |
better implementation of nbsp |
||
(34 intermediate revisions by 4 users not shown) | |||
Line 1:
-- This module implements {{portal bar}}.
require('
-- determine whether we're being called from a sandbox
local portalModule = require('Module:Portal/sandbox')▼
local isSandbox = mw.getCurrentFrame():getTitle():find('sandbox', 1, true)
local getImageName = portalModule.image▼
local sandbox = isSandbox and '/sandbox' or ''
local checkTracking = portalModule._checkTracking▼
local processPortalArgs = portalModule._processPortalArgs
local yesno = require( 'Module:Yesno' )
Line 11 ⟶ 15:
local p = {}
local function
return
end
-- Builds the portal bar used by {{portal bar}}.
function p._main( portals, args )
-- check for sensible args
Line 25 ⟶ 26:
-- Normalize arguments
for key, default in pairs({border=true,redlinks
if args[key] == nil then args[key] = default end
args[key] = yesno(args[key], default)
Line 31 ⟶ 32:
local nav = mw.html.create( 'div' )
:addClass(
:addClass( 'noprint metadata noviewer' )
:attr( 'role', 'navigation' )
:attr( 'aria-label' , 'Portals' )
:addClass(
-- Allow any number of portals
args.minPortals = 0
args.maxPortals = -1
-- Check to see whether there are redlinks, filter out unless args.redlink is true
portals, trackingCat = checkPortals(portals, args)
return trackingCat
local related = yesno(args.related)
▲ local trackingCats = ''
else
local
header:wikitext('s')▼
▲ end
▲ if #portals == 0 then
end
header:wikitext(':')
end
if related then
▲ header:addClass(sandbox(args,'portal-bar-header'))
container:addClass(sandboxVersion('portal-bar-content-related'))
▲ header:wikitext('[[Wikipedia:Contents/Portals|Portal]]')
▲ if #portals > 1 then
▲ header:wikitext('s')
end
local size = related and '27x25px' or '21x19px'
▲ header:wikitext(':')
▲ local container = nav:tag('div')
▲ container:addClass(sandbox(args,'portal-bar-content'))
for _, portal in ipairs( portals ) do
container
:tag( '
:addClass(
▲ :addClass(sandbox(args,'portal-bar-link'))
▲ :wikitext( string.format('[[Portal:%s|%s]]', portal, portal))
end
local styleFile = 'Module:Portal bar'..sandbox..'/styles.css'
return mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = styleFile }
} .. tostring( nav )
end
|