More actions
Content deleted Content added
// via Wikitext Extension for VSCode Tags: Manual revert Reverted |
// via Wikitext Extension for VSCode Tags: Manual revert Reverted |
||
Line 1: | Line 1: | ||
local p = {} |
local p = {} |
||
function |
function removeAfter(str, delimiter) |
||
local pos = str:find(delimiter) |
|||
⚫ | |||
if pos then |
|||
return str:sub(1, pos - 1) |
|||
else |
|||
return str |
|||
end |
|||
end |
|||
function formatItem(item, format, cut) |
|||
⚫ | |||
if cut then |
|||
out = out:gsub("#c#", removeAfter(item, cut)) |
|||
else |
|||
out = out:gsub("#c#", item) |
|||
end |
|||
out = out:gsub("!!", "xx") |
|||
return out |
|||
end |
end |
||
Line 9: | Line 25: | ||
local delimiter = frame.args['delimiter'] or frame.args['delim'] or frame.args['d'] or ", " |
local delimiter = frame.args['delimiter'] or frame.args['delim'] or frame.args['d'] or ", " |
||
local format = frame.args['format'] or frame.args['f'] or "##" |
local format = frame.args['format'] or frame.args['f'] or "##" |
||
local cut = frame.args['cut'] or frame.args['c'] |
|||
input = input:gsub("%s*%|%s*", ",") -- Convert DPL separators to commas if present |
input = input:gsub("%s*%|%s*", ",") -- Convert DPL separators to commas if present |
||
local items = {} |
local items = {} |
||
Line 18: | Line 35: | ||
local processed_items = {} |
local processed_items = {} |
||
for _, item in ipairs(items) do |
for _, item in ipairs(items) do |
||
table.insert(processed_items, formatItem(item, format)) |
table.insert(processed_items, formatItem(item, format, cut)) |
||
end |
end |
||
return frame:preprocess(table.concat(processed_items, delimiter)) |
return frame:preprocess(table.concat(processed_items, delimiter)) |
Revision as of 01:18, 12 February 2025
Documentation for this module may be created at Module:Sort/doc
local p = {}
function removeAfter(str, delimiter)
local pos = str:find(delimiter)
if pos then
return str:sub(1, pos - 1)
else
return str
end
end
function formatItem(item, format, cut)
out = tostring(format:gsub("##", item))
if cut then
out = out:gsub("#c#", removeAfter(item, cut))
else
out = out:gsub("#c#", item)
end
out = out:gsub("!!", "xx")
return out
end
function p.clean(frame)
local input = frame.args[1] or ""
local delimiter = frame.args['delimiter'] or frame.args['delim'] or frame.args['d'] or ", "
local format = frame.args['format'] or frame.args['f'] or "##"
local cut = frame.args['cut'] or frame.args['c']
input = input:gsub("%s*%|%s*", ",") -- Convert DPL separators to commas if present
local items = {}
for item in string.gmatch(input, "([^,]+)") do
local trimmed_item = item:match("^%s*(.-)%s*$")
table.insert(items, trimmed_item)
end
table.sort(items)
local processed_items = {}
for _, item in ipairs(items) do
table.insert(processed_items, formatItem(item, format, cut))
end
return frame:preprocess(table.concat(processed_items, delimiter))
-- return table.concat(processed_items, delimiter)
end
function p.parse(frame)
local input = frame.args[1] or ""
-- DPL-specific preprocessing
input = input:gsub("%s*%|%s*", ",") -- Convert DPL separators to commas if present
local pre = ""
local post = ""
local prePublic = ""
local postPublic = ""
local prePrivate = ""
local postPrivate = ""
if frame.args['prepublic'] then
prePublic = frame.args['prepublic']
end
if frame.args['postpublic'] then
postPublic = frame.args['postpublic']
end
if frame.args['preprivate'] then
prePrivate = frame.args['preprivate']
end
if frame.args['postprivate'] then
postPrivate = frame.args['postprivate']
end
if frame.args['wrap'] then
pre = "{{L|" .. prePrivate .. frame.args['wrap'] .. postPrivate .. "|" .. prePublic .. frame.args['wrap'] .. postPublic .. "|"
post = "|u=1}}"
end
if frame.args['cat'] and frame.args['name'] and frame.args['ns'] then
pre = "{{Cat|name=" .. frame.args['name'] .. "|ns=" .. frame.args['ns'] .. "|"
post = "}}"
end
if frame.args['item'] and frame.args['name'] and frame.args['ns'] then
pre = "{{Cat|name=" .. frame.args['name'] .. "|ns=" .. frame.args['ns'] .. "|"
post = " equipment}}"
elseif frame.args['item'] and frame.args['ns'] then
pre = "{{Cat|ns=" .. frame.args['ns'] .. "|"
post = " equipment}}"
end
if frame.args['sub'] then
pre = pre .. "{{SSub|Ability:"
post = post .. "}}\n"
end
local items = {}
for item in string.gmatch(input, "([^,]+)") do
local trimmed_item = item:match("^%s*(.-)%s*$") -- Trim whitespace
if trimmed_item ~= "Weapon" then
table.insert(items, pre .. trimmed_item .. post)
end
end
table.sort(items)
if frame.args['cat'] or frame.args['item'] or frame.args['sub'] then
return frame:preprocess(table.concat(items, ""))
else
if (frame.args['wrap'] == 'Ability') and #items > 1 then
items[#items] = "and " .. items[#items]
end
return frame:preprocess(table.concat(items, ", "))
end
end
return p