Модуль:Wikidata/SisterCities
Перейти до навігації
Перейти до пошуку
Документація модуля[перегляд] [редагувати] [історія] [очистити кеш]
Цей модуль залежить від наступних модулів: |
Цей модуль додає список Міст-побратимів з Вікіданих. Переважно використовується шаблоном {{Wikidata/SisterCities}}
Документація вище включена з Модуль:Wikidata/SisterCities/документація. (ред. | історія) Дописувачі можуть експериментувати на підсторінках пісочниця (створити | дзеркало) та тести (створити) цього модуля. Будь ласка, додавайте категорії до підсторінки /SisterCities/документація. Підсторінки цієї сторінки. |
local p = {};
local flags = require( 'Module:Wikidata/Flags' );
function p.formatSisterCitiesProperty( context, options )
if not context then error( 'context not specified' ); end;
if not options then error( 'options not specified' ); end;
if not options.entity then error( 'options.entity missing' ); end;
local claims = context.selectClaims( options, options.property );
if claims == nil then
return ''; --TODO error?
end
local cityNames = {};
for i, claim in ipairs( claims ) do
if claim.mainsnak and claim.mainsnak.datavalue and claim.mainsnak.datavalue.value then
cityNames[ claim.id ] = mw.wikibase.label( claim.mainsnak.datavalue.value.id );
else
cityNames[ claim.id ] = '(none)';
end
end
local comparator = function( c1, c2 )
local n1 = cityNames[ c1.id ] or '';
local n2 = cityNames[ c2.id ] or '';
return n1 < n2;
end
table.sort( claims, comparator );
-- Обхід всіх заяв затвердження та з накопиченням оформлених найкращих
-- заявлений у таблиці
local formattedClaims = {};
for i, claim in ipairs( claims ) do
local formattedStatement = context.formatStatement( options, claim );
-- тут може повернутися оформлений текст заяви
-- або рядок помилки nil може ніколи не повертається
if formattedStatement then
formattedStatement = '<span class="wikidata-claim" data-wikidata-property-id="' ..
string.upper( options.property ) .. '" data-wikidata-claim-id="' .. claim.id .. '">' ..
formattedStatement .. '</span>';
table.insert( formattedClaims, formattedStatement );
end
end
-- створення текстового рядка зі списком оформлених заяв із таблиці
local out = mw.text.listToText( formattedClaims, '\n* ', '\n* ' );
if out ~= '' then
out = '* ' .. out;
if options.before then
out = options.before .. out;
end
if options.after then
out = out .. options.after;
end
end
return out
end
function findCountryStatements( placeId )
local countryStatements = {};
for _, countryStatement in pairs( mw.wikibase.getBestStatements( placeId, 'P17' ) ) do
if countryStatement and
countryStatement.mainsnak and
countryStatement.mainsnak.datavalue and
countryStatement.mainsnak.datavalue.value and
not ( countryStatement.qualifiers and countryStatement.qualifiers.P582 )
then
table.insert( countryStatements, countryStatement );
end
end
return countryStatements;
end
local flagsWikitextCache = {};
local countriesWikitextCache = {};
function p.formatSisterCityClaim( context, options, statement )
local result = '';
if not statement or statement.mainsnak.snaktype ~= 'value' then
return result;
end
local countryStatements = findCountryStatements( statement.mainsnak.datavalue.value.id );
local flagImages = {};
for _, countryStatement in pairs( countryStatements ) do
local countryId = countryStatement.mainsnak.datavalue.value.id;
local flagImage = flagsWikitextCache[ countryId ];
if flagImage == nil then
flagImage = flags.getFlag( context, countryId, os.time() * 1000);
flagsWikitextCache[ countryId ] = flagImage;
end
if flagImage then
table.insert( flagImages, flagImage );
end
end
if #flagImages then
local flagText = mw.text.listToText( flagImages, ' / ', ' / ' )
result = result .. flagText .. ( flagText ~= '' and ' ' or '' );
end
result = result .. context.formatSnak( options, statement.mainsnak, {} );
local countryLinks = {};
for _, countryStatement in pairs( countryStatements ) do
local countryId = countryStatement.mainsnak.datavalue.value.id;
local countryText = countriesWikitextCache[ countryId ];
if countryText == nil then
countryText = context.formatSnak( {}, countryStatement.mainsnak, {} );
countriesWikitextCache[ countryId ] = countryText;
end
if countryText then
table.insert( countryLinks, countryText );
end
end
if #countryLinks then
result = result .. ', ' .. mw.text.listToText( countryLinks, ' / ', ' / ' );
end
if statement.qualifiers and statement.qualifiers.P580 then
result = result .. ' (' .. context.formatSnak( options, statement.qualifiers.P580[ 1 ] ) .. ')';
end
if options.references then
result = result .. context.formatRefs( options, statement );
end
return result;
end
return p;