Module:Lua banner: Difference between revisions
From Test Wiki
Content deleted Content added
m 1 revision imported |
m 1 revision imported |
||
| (7 intermediate revisions by 6 users not shown) | |||
| Line 5: | Line 5: | ||
local mTableTools = require('Module:TableTools') |
local mTableTools = require('Module:TableTools') |
||
local mMessageBox = require('Module:Message box') |
local mMessageBox = require('Module:Message box') |
||
local TNT = require('Module:TNT') |
|||
local lang = mw.getCurrentFrame():preprocess('{{int:lang}}') |
|||
local p = {} |
local p = {} |
||
local function format(msg) |
|||
return TNT.formatInLanguage(lang, 'I18n/Lua banner', msg) |
|||
end |
|||
local function getConfig() |
|||
return mw.loadData('Module:Lua banner/config') |
|||
end |
|||
function p.main(frame) |
function p.main(frame) |
||
| Line 20: | Line 30: | ||
end |
end |
||
function p._main(args) |
function p._main(args, cfg) |
||
local modules = mTableTools.compressSparseArray(args) |
local modules = mTableTools.compressSparseArray(args) |
||
local box = p.renderBox(modules) |
local box = p.renderBox(modules, cfg) |
||
local trackingCategories = p.renderTrackingCategories(args, modules) |
local trackingCategories = p.renderTrackingCategories(args, modules, nil, cfg) |
||
return box .. trackingCategories |
return box .. trackingCategories |
||
end |
end |
||
function p.renderBox(modules) |
function p.renderBox(modules, cfg) |
||
local boxArgs = {} |
local boxArgs = {} |
||
if #modules < 1 then |
if #modules < 1 then |
||
cfg = cfg or getConfig() |
|||
| ⚫ | |||
if cfg['allow_wishes'] then |
|||
boxArgs.text = format('wishtext') |
|||
else |
|||
| ⚫ | |||
end |
|||
else |
else |
||
local moduleLinks = {} |
local moduleLinks = {} |
||
| Line 37: | Line 52: | ||
end |
end |
||
local moduleList = mList.makeList('bulleted', moduleLinks) |
local moduleList = mList.makeList('bulleted', moduleLinks) |
||
boxArgs.text = ' |
boxArgs.text = format('header') .. '\n' .. moduleList |
||
end |
end |
||
boxArgs.type = 'notice' |
boxArgs.type = 'notice' |
||
boxArgs.small = true |
boxArgs.small = true |
||
boxArgs.class = 'tpl-lua-banner' |
|||
boxArgs.image = '[[File:Lua-logo-nolabel.svg|30px|alt=Lua logo|link=Wikipedia:Lua]]' |
|||
boxArgs.image = string.format( |
|||
'<span aria-hidden="true">[[File:Lua-Logo-small.svg|30px|alt=%s|link=%s]]</span>', |
|||
format('logo_alt'), |
|||
format('logo_link') |
|||
| ⚫ | |||
return mMessageBox.main('mbox', boxArgs) |
return mMessageBox.main('mbox', boxArgs) |
||
end |
end |
||
function p.renderTrackingCategories(args, modules, titleObj) |
function p.renderTrackingCategories(args, modules, titleObj, cfg) |
||
if yesno(args.nocat) then |
if yesno(args.nocat) then |
||
return '' |
return '' |
||
end |
end |
||
cfg = cfg or getConfig() |
|||
local cats = {} |
local cats = {} |
||
-- Error category |
-- Error category |
||
if #modules < 1 then |
if #modules < 1 and not cfg['allow_wishes'] and cfg['error_category'] then |
||
cats[#cats + 1] = ' |
cats[#cats + 1] = cfg['error_category'] |
||
end |
end |
||
-- Lua templates category |
-- Lua templates category |
||
titleObj = titleObj or mw.title.getCurrentTitle() |
titleObj = titleObj or mw.title.getCurrentTitle() |
||
local subpageBlacklist = { |
|||
doc = true, |
|||
sandbox = true, |
|||
sandbox2 = true, |
|||
testcases = true |
|||
| ⚫ | |||
if titleObj.namespace == 10 |
if titleObj.namespace == 10 |
||
and not |
and not cfg['subpage_blacklist'][titleObj.subpageText] |
||
then |
then |
||
local category = args.category |
local category = args.category |
||
if not category then |
if not category then |
||
| ⚫ | |||
local categories = { |
|||
category = pagename and cfg['module_categories'][pagename.text] |
|||
['Module:String'] = 'Lua String-based templates', |
|||
if not category then |
|||
['Module:Math'] = 'Templates based on the Math Lua module', |
|||
if cfg['allow_wishes'] and #modules < 1 then |
|||
['Module:BaseConvert'] = 'Templates based on the BaseConvert Lua module', |
|||
category = cfg['wish_category'] |
|||
['Module:Citation'] = 'Lua-based citation templates' |
|||
else |
|||
category = cfg['default_category'] |
|||
categories['Module:Citation/CS1'] = categories['Module:Citation'] |
|||
end |
|||
| ⚫ | |||
end |
|||
category = category or 'Lua-based templates' |
|||
end |
|||
if category then |
|||
| ⚫ | |||
end |
end |
||
| ⚫ | |||
end |
end |
||