יחידה:תבנית מידע/אישיות
מראה
יחידה זו מרחיבה את יחידה:תבנית מידע עבור תבניות מידע של אישים. היחידה כוללת תמיכה אוטומטית בפרמטרים האופיינים לאישים כדוגמת תאריכים ומקומות של לידה/פטירה, יחד עם ציון גיל.
local Infobox = require('Module:תבנית מידע').Infobox
local LocationAndCountry = require('Module:LocationAndCountry')
local PropertyLink = require('Module:PropertyLink')
local ageModule = require('Module:גיל לערכי אישים')
function getEventDetails(birthDate, deathDate, eventPlace, propDate, propPlace, isBirth, usingWikidata)
local entityId = mw.wikibase.getEntityIdForCurrentPage()
local eventDate
if isBirth then
eventDate = birthDate
if deathDate==nil then
eventDate = eventDate .. ageModule.ageCalc(birthDate, deathDate, true, false, true)
end
else
eventDate = deathDate .. ageModule.ageCalc(birthDate, deathDate, false, false, true)
end
local formattedEvent = eventDate
if eventPlace==nil or eventPlace=='' then
eventPlace = LocationAndCountry.displayFromParams( propPlace, entityId, propDate , 1)
usingWikidata = true
end
if eventPlace~='' and eventPlace~=nil then
formattedEvent = formattedEvent..'<br/>' ..eventPlace
end
if usingWikidata then
formattedEvent = formattedEvent .. ' [[File:Blue pencil RTL.svg|15px|link=https://www.wikidata.org/wiki/'..entityId.. '?uselang=he#P569|עריכת הנתון בוויקינתונים]]'
end
return formattedEvent
end
function infobox(frame)
local templateArgs = frame:getParent().args
local infoObj = Infobox:new()
infoObj:parseArgs(frame)
local usingBirthWikidata = false
local usingDeathWikidata = false
if templateArgs['תאריך לידה']==nil or templateArgs['תאריך לידה']=='' then
templateArgs['תאריך לידה'] = PropertyLink.getProperty( 'P569' )
if templateArgs['תאריך לידה'] then
usingBirthWikidata = true
end
end
if templateArgs['תאריך פטירה']==nil or templateArgs['תאריך פטירה']=='' then
templateArgs['תאריך פטירה'] = PropertyLink.getProperty( 'P570' )
if templateArgs['תאריך פטירה'] then
usingDeathWikidata = true
end
end
if templateArgs['תאריך לידה']~=nil and templateArgs['תאריך לידה']~='' then
local birthDetails = getEventDetails(templateArgs['תאריך לידה'], templateArgs['תאריך פטירה'], templateArgs['מקום לידה'], 'P569', 'P19', true, usingBirthWikidata)
table.insert(infoObj.templateStructure, 1, {
label='לידה',
data=birthDetails
})
end
if templateArgs['תאריך פטירה']~=nil and templateArgs['תאריך פטירה']~='' then
local deathDetails = getEventDetails(templateArgs['תאריך לידה'], templateArgs['תאריך פטירה'], templateArgs['מקום פטירה'], 'P570', 'P20', false, usingDeathWikidata)
table.insert(infoObj.templateStructure, 2, {
label='פטירה',
data=deathDetails
})
end
--[[
TODO:
table.insert(infoObj.templateStructure, 2, deathDetails(frame))
infoObj.args.usingWikidata
infoObj.wikidataCats
]]
return infoObj:render()
end
return {
['מידע']=infobox
}