มอดูล:tl-sortkey
หน้าตา
- This มอดูล lacks a documentation subpage. Please create it.
- Useful links: subpage list • links • transclusions • testcases • sandbox
local export = {}
local u = mw.ustring.char
local a, b = u(0xF000), u(0xF001)
local oneChar = {
["ë"] = "e" .. a, ["ñ"] = "n" .. a
}
local twoChars = {
["ng"] = "n" .. b, ["ng̃"] = "n" .. b, ["ñg"] = "n" .. b
}
function export.makeSortKey(text, lang, sc)
text = mw.ustring.gsub(text, "([!-&])([^%s]+)", "%2%1")
for from, to in pairs(twoChars) do
text = text:gsub(from, to)
end
return mw.ustring.upper(mw.ustring.gsub(mw.ustring.toNFC(text), ".", oneChar))
end
local tl = require("Module:languages").getByCode("tl")
local function tag(text)
return require("Module:script utilities").tag_text(text, tl)
end
local showsubst = {
[a] = "₂",
[b] = "₃"
}
function export.showSortkey(frame)
local output = {}
for _, word in ipairs(frame.args) do
local sc = tl:findBestScript(word):getCode()
local sortkey = mw.ustring.gsub(export.makeSortKey(word, "tl", sc), ".", showsubst)
sortkey = mw.ustring.gsub(sortkey, "([^0-9²])$", "%1¹")
sortkey = mw.ustring.gsub(sortkey, "([^0-9²])(%s)", "%1¹%2")
local example = "\n* <code>" .. sortkey .. "</code>\n: " .. tag(word)
table.insert(output, example)
end
return table.concat(output)
end
function export.showSorting(frame)
local terms = {}
for _, term in ipairs(frame.args) do
table.insert(terms, term)
end
local makeSortKey = require("Module:fun").memoize(export.makeSortKey)
local function comp(term1, term2)
return makeSortKey(term1) < makeSortKey(term2)
end
table.sort(terms, comp)
for i, term in pairs(terms) do
local sc = tl:findBestScript(term):getCode()
local sortkey = mw.ustring.gsub(export.makeSortKey(term, "tl", sc), ".", showsubst)
sortkey = mw.ustring.gsub(sortkey, "([^0-9²])$", "%1¹")
sortkey = mw.ustring.gsub(sortkey, "([^0-9²])(%s)", "%1¹%2")
terms[i] = "\n* " .. tag(term) .. " (<code>" .. sortkey .. "</code>)"
end
return table.concat(terms)
end
return export