Модуль:Wikidata/positions
Перейти к навигации
Перейти к поиску
Модуль для вывода . Отображает должность только при наличии квалификатора .
local p = {}
function p.formatPositionClaim( context, options, statement )
if (not context) then error('context is not specified') end;
if (not options) then error('options is not specified') end;
if (not statement) then error('statement is not specified') end;
local args = {}
if not statement.qualifiers or not statement.qualifiers['P580'] or not statement.qualifiers['P580'][1] then
return '' -- нет даты начала
end
args['должность_'] = '<span class="ts-wikidata-positions-uppercasefirst">' .. context.formatSnak( options, statement.mainsnak ) .. '</span>'
if statement.qualifiers and statement.qualifiers['P642'] then -- относится к/of
local organizations = {}
for _, v in pairs(statement.qualifiers['P642']) do
table.insert(organizations, context.formatSnak( options, v ))
end
args['должность_'] = args['должность_'] .. ' (' .. mw.text.listToText(organizations) .. ')'
end
local params = {
['периодначало_'] = 'P580',
['периодконец_'] = 'P582',
['предшественник_'] = 'P1365',
['преемник_'] = 'P1366',
}
if statement.qualifiers then
for k, v in pairs(params) do
if statement.qualifiers[v] then
args[k] = context.formatSnak( options, statement.qualifiers[v][1] )
end
end
end
local res = options.frame:extensionTag( 'templatestyles', '', { src = 'Шаблон:Wikidata/positions/styles.css' } );
res = res .. options.frame:expandTemplate{ title = 'Государственный деятель/Должность', args = args };
return res
end
return p