Module:Infobox/Catch (personnalité)

 Documentation[voir] [modifier] [historique] [purger]

Cette page définit un module d'infobox. Pour les conseils sur l'usage de ce module, voyez Modèle:Infobox Catch (personnalité).


local general = require 'Module:Infobox/Fonctions'
local localdata = require 'Module:Infobox/Localdata'
local wikidata = require 'Module:Wikidata'
local person = require 'Module:Infobox/Fonctions/Personne'

local function getgender()
	local vals = {
		['Q6581072'] = 'f',
		['Q1052281'] = 'f',
		['Q6581097'] = 'm',
		['Q2449503'] = 'm',
		default      = '?'
	}
	local gender = wikidata.formatStatements{entity = localdata.item, property = 'P21', displayformat = 'raw', numval = 1}
	return vals[gender] or vals.default
end

local gender = getgender()

local function header()
	local words = {
		['m'] = {'Catcheur ', 'mort', 'retraité'},
		['f'] = {'Catcheuse ', 'morte', 'retraitée'},
		['?'] = {'Catcheur ', 'mort', 'retraité'},
	}
	
	local text = words[gender]
	local death = localdata['date de décès'] or wikidata.formatStatements{entity = localdata.item, property = 'P570'}
	if death then
		return text[1] .. text[2]
	end
	
	if localdata['fin de carrière'] then
		return text[1] .. text[3]
	end
	
	return text[1] .. 'en activité'
end

local function nationality()
	local nation = require 'Module:Country data'.nationality
	
	local g = gender
	if g == '?' then
		g = 'm'
	end
	
	local wd = {
		entity = item,
		property = 'P27',
		conjtype = 'new line',
		displayformat = 
			function(snak)
				local nationality, success = nation(wikidata.getId(snak), g)
				if not success then
					return wikidata.formatSnak(snak)
				end
				
				return nationality
			end
	}
	
	local value = function(localdata)
		if not localdata['nationalité'] then
			return nil
		end
		
		local nationality, success = nation(localdata['nationalité'], g)
		if not success then
			return nil
		end
		
		if not localdata['nationalité2'] then
			return nationality
		end
		
		local nationality2, success = nation(localdata['nationalité2'], g)
		if not success then
			return nationality
		end
		
		return nationality .. '<br>' .. nationality2
	end
		
	return {type = 'row', label = "Nationalité", singularlabel = 'Nationalité', plurallabel = 'Nationalités', value = value, wikidata = wd}	
end

local function height()
	local wd = {
		entity = item,
		property = 'P2048',
		displayformat =
			function(snak)
				return wikidata.getDataValue(snak, {targetunit = 'metre', rounding = 2, showlink = true}) .. ' (' .. wikidata.getDataValue(snak, {targetunit = 'foot', rounding = 2, showlink = true}) .. ')'
			end,
		numval = 1
	}
	
	local value = function(localdata)
		if not localdata['taille'] then
			return nil
		end
		
		local convert = require 'Module:Conversion'.displayvalue
		local metre = convert(localdata['taille'], 'metre', {showunit = true, rounding = 2, showlink = true})
		local foot = convert(localdata['taille'], 'metre', {targetunit = 'foot', showunit = true, rounding = 2, showlink = true})
		if metre == foot then
			return metre
		end
		
		return metre .. ' (' .. foot .. ')'
	end
	
	return {type = 'row', label = '[[Taille (anthropométrie)|Taille]]', value = value, wikidata = wd}
end

local function weight()
	local wd = {
		entity = item,
		property = 'P2067',
		displayformat =
			function(snak)
				return wikidata.getDataValue(snak, {targetunit = 'kilogram', rounding = 0, showlink = true}) .. ' (' .. wikidata.getDataValue(snak, {targetunit = 'pound', rounding = 0, showlink = true}) .. ')'
			end,
		numval = 1
	}
	
	local value = function(localdata)
		if not localdata['poids'] then
			return nil
		end
		
		local convert = require 'Module:Conversion'.displayvalue
		local kilogram = convert(localdata['poids'], 'kilogram', {showunit = true, rounding = 0, showlink = true})
		local pound = convert(localdata['poids'], 'kilogram', {targetunit = 'pound', showunit = true, rounding = 0, showlink = true})
		if kilogram == pound then
			return kilogram
		end
		
		return kilogram .. ' (' .. pound .. ')'
	end
	
	return {type = 'row', label = '[[Poids de forme|Poids]]', value = value, wikidata = wd}
end

return {
	maincolor = '#dfedff',
	parts = {
		general.title('catch'),
		general.mainimage('Article à illustrer Catch', 'Defaut 2.svg'),
		
		{type = 'table', title = 'Données générales',
			rows = {
				{type = 'row', label = 'Nom de naissance', value = 'nom de naissance', wikidata = {property = 'P1477', numval = 1}},
				{type = 'row', label = '[[Nom de scène|Nom de ring]]', singularlabel = '[[Nom de scène|Nom de ring]]', plurallabel = '[[Nom de scène|Noms de ring]]', value = 'surnom', wikidata = {property = 'P1449', conjtype = 'new line'}},
				nationality(),
				person.birth(),
				person.death(),
				{type = 'row', label = 'Lieu de résidence', value = 'lieu de résidence', wikidata = {property = 'P551', showqualifiers = 'P131', numval = 1}},
				height(),
				weight()
			}
		},
	
		{type = 'table', title = header(),
			rows = {
				{type = 'row', label = 'Fédération', value = 'fédérations'},
				{type = 'row', label = 'Entraîneur', singularlabel = 'Entraîneur', plurallabel = 'Entraîneurs', value = 'entraîneur', wikidata = {property = 'P286', conjtype = 'new line'}},
				{type = 'row', label = 'Carrière pro.',
					value = function(localdata)
						if localdata['début de carrière'] then
							if localdata['fin de carrière'] then
								return localdata['début de carrière'] .. ' - ' .. localdata['fin de carrière']
							else
								return localdata['début de carrière'] .. ' - <i>aujourd\'hui</i>'
							end
						end
					end
				},
				{type = 'row', label = 'Annoncé de', value = 'annoncé de'}
			}
		}
	}
}