Module:Labelled list hatnote: Difference between revisions

m
(Pass through extraclasses)
m (1 revision imported from wikipedia:Module:Labelled_list_hatnote)
 
(9 intermediate revisions by 3 users not shown)
Line 10:
local mHatlist = require('Module:Hatnote list')
local mArguments --initialize lazily
local yesno --initialize lazily
local p = {}
 
-- Defaults global to this module
local defaults = {
label = 'See also', --Final fallback for label argument
labelForm = '%s: %s',
prefixes = {'label', 'label ', 'l'},
(options. template or= 'Module:Labelled list hatnote') .. '#Errors',
}
 
-- Localizable message strings
local msg = {
errorSuffix = '#Errors',
noInputWarning = 'no page names specified',
noOutputWarning =
"'''[[%s]] — no output: none of the target pages exist.'''"
}
 
Line 22 ⟶ 34:
-- Prefixes specify which parameters, in order, to check for display options
-- They each have numbers auto-appended, e.g. 'label1', 'label 1', & 'l1'
prefixes = prefixes or {'label', 'label ', 'l'}defaults.prefixes
local pagesindices = {}
local sparsePages = {}
for k, v in pairs(args) do
if type(k) == 'number' then
pagesindices[#pagesindices + 1] = pagek
local display
for i = 1, #prefixes do
Line 31 ⟶ 45:
if display then break end
end
local pagesparsePages[k] = display and
string.format('%s|%s', string.gsub(v, '|.*$', ''), display) or v
pages[#pages + 1] = page
end
end
table.sort(indices)
local pages = {}
for k, v in ipairs(indices) do pages[#pages + 1] = sparsePages[v] end
return pages
end
 
--Helper function to get a page target from a processed page string
--e.g. "Page|Label" → "Page" or "Target" → "Target"
local function getTarget(pagename)
local pipe = string.find(pagename, '|')
return string.sub(pagename, 0, pipe and pipe - 1 or nil)
end
 
Line 46 ⟶ 69:
function p.labelledList (frame)
mArguments = require('Module:Arguments')
yesno = require('Module:Yesno')
local labels = {frame.args[1] or defaults.label}
labels[2] = frame.args[2] or labels[1]
labels[3] = frame.args[3] --no defaulting
labels[4] = frame.args[4] --no defaulting
local template = frame:getParent():getTitle()
local args = mArguments.getArgs(frame, {parentOnly = true})
local pages = p.preprocessDisplays(args)
local options = {
extraclassescategory = yesno(args.extraclassescategory),
categoryextraclasses = frame.args.categoryextraclasses,
selfrefifexists = yesno(frame.args.selfrefifexists),
namespace = frame.args.namespace or args.namespace,
selfref = yesno(frame.args.selfref or args.selfref),
template = template
}
Line 61 ⟶ 89:
 
function p._labelledList (pages, labels, options)
if options.ifexists then
for k = #pages, 1, -1 do --iterate backwards to allow smooth removals
local v = pages[k]
local title = mw.title.new(getTarget(v), namespace)
if (v == '') or title == nil or not title.exists then
table.remove(pages, k)
end
end
end
labels = labels or {}
label = (#pages == 1 and labels[1] or labels[2]) or defaults.label
for k, v in pairs(pages) do
if mHatnote.findNamespaceId(v) ~= 0 then
label =
(
#pages == 1 and
(labels[3] or labels[1] or defaults.label) or
(labels[4] or labels[2] or defaults.label)
) or defaults.label
end
end
if #pages == 0 then
if options.ifexists then
return mHatnote.makeWikitextError(
mw.addWarning(
'no page names specified',
string.format(
(options.template or 'Module:Labelled list hatnote') .. '#Errors',
msg.noOutputWarning, options.template or defaults.template
options.category
)
)
return ''
else
return mHatnote.makeWikitextError(
msg.noInputWarning,
(options.template or defaults.template) .. msg.errorSuffix,
options.category
)
end
end
local text = string.format(
label = (#pages == 1 and labels[1] or labels[2]) or defaults.label
options.labelForm or defaults.labelForm,
local text = string.format('%s: %s', label, mHatlist.andList(pages, true))
label,
mHatlist.andList(pages, true)
)
local hnOptions = {
extraclasses = options.extraclasses,