Module:SiteList: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
PeaceDeadC (talk | contribs) No edit summary Tag: Reverted |
PeaceDeadC (talk | contribs) No edit summary Tag: Manual revert |
||
| Line 6: | Line 6: | ||
local siteLabel = 'N/A' |
local siteLabel = 'N/A' |
||
if siteInfo then |
if siteInfo then |
||
sceneid |
if sceneid and sceneid ~= '' then |
||
id = mw.text.trim(id) |
|||
if sceneid ~= '' then -- если строка не пустая |
|||
link = string.format(siteInfo.sceneFormat, sceneid) |
link = string.format(siteInfo.sceneFormat, sceneid) |
||
elseif id ~= '' then |
elseif id and id ~= '' then |
||
link = string.format(siteInfo.idFormat, id) |
link = string.format(siteInfo.idFormat, id) |
||
else |
else |
||
Revision as of 15:15, 21 July 2023
Documentation for this module may be created at Module:SiteList/doc
local p = {}
local function buildRow(siteType, site, id, sceneid, alias, notes)
local siteInfo = mw.loadData('Module:SiteDictionary')[site:lower()]
local link = 'N/A'
local siteLabel = 'N/A'
if siteInfo then
if sceneid and sceneid ~= '' then
link = string.format(siteInfo.sceneFormat, sceneid)
elseif id and id ~= '' then
link = string.format(siteInfo.idFormat, id)
else
link = siteInfo.defaultLink
end
siteLabel = string.format("[%s %s]", link, siteInfo.name)
else
siteLabel = siteType
end
return string.format('|-\n| style="text-align:center;vertical-align:middle;" | %s\n| style="text-align:center;vertical-align:middle;" | %s\n| style="text-align:center;vertical-align:middle;" | %s\n| style="text-align:center;vertical-align:middle;" | %s\n', siteType, siteLabel, alias or 'N/A', notes or 'N/A')
end
function p.siteList(frame)
local args = frame:getParent().args
local siteType = args[1]
local site = args.site or ''
local id = args.id or ''
local sceneid = args.sceneid or ''
local alias = args.alias
local notes = args.notes
return buildRow(siteType, site, id, sceneid, alias, notes)
end
return p