« Module:Infobox » : différence entre les versions
Aller à la navigation
Aller à la recherche
Nouvelle page : local Infobox = {} function Infobox:new( args ) --Object initialisation local object = { text = "", title = mw.title.getCurrentTitle() } setmetata... |
m + table and mixed rows |
||
Ligne 48 : | Ligne 48 : | ||
end | end | ||
str = str .. '>' | str = str .. '>' | ||
if args.text then | if args.text and args.text ~= '' then | ||
str = str .. args.text | str = str .. args.text | ||
else | else | ||
Ligne 54 : | Ligne 54 : | ||
end | end | ||
self.text = self.text .. str .. '</p>' | self.text = self.text .. str .. '</p>' | ||
end | |||
function Infobox:openTable( args ) | |||
local str = '<table' | |||
if args.type then | |||
str = str .. ' class="' .. args.type .. '"' | |||
end | |||
str = str .. '><caption' | |||
if class then | |||
str = str .. ' class="' .. args.class .. '"' | |||
end | |||
--Style of the caption | |||
local style = {} | |||
if args.border then | |||
style['border-color'] = args.border | |||
end | |||
if args.background then | |||
style['background'] = args.background | |||
if args.color then | |||
style['color'] = args.color | |||
end | |||
end | |||
if style ~= {} then | |||
str = str .. ' style="' .. formatStyle( style ) .. '"' | |||
end | |||
str = str .. '>' | |||
if args.text and args.text ~= '' then | |||
str = str .. args.text | |||
else | |||
str = str .. 'Données clés' | |||
end | |||
self.text = self.text .. str .. '</caption>' | |||
end | |||
function Infobox:closeTable( args ) | |||
self.text = self.text .. '</table>' | |||
end | |||
function Infobox:addMixedRow( args ) | |||
if not args.value or args.value == '' then | |||
return | |||
end | |||
if not args.label then | |||
self.text = self.text .. '<tr><td class="error">Le paramètre label n\'est pas renseigné.</td></tr>' | |||
end | |||
local str = '<tr><th scope="row"' | |||
if args.class then | |||
str = str .. ' class="' .. args.class .. '"' | |||
end | |||
local style = {} | |||
if args.width then | |||
style['width'] = args.width .. 'em' | |||
end | |||
if style ~= {} then | |||
str = str .. ' style="' .. formatStyle( style ) .. '"' | |||
end | |||
self.text = self.text .. str .. '>' .. args.label .. '</th><td>' .. args.value .. '</td></tr>' | |||
end | end | ||
Ligne 63 : | Ligne 125 : | ||
function formatStyle( args ) | function formatStyle( args ) | ||
local elems = {} | local elems = {} | ||
for | for key, val in pairs( args ) do | ||
elems.add( key .. ':' .. val ) | elems.add( key .. ':' .. val ) | ||
end | end | ||
Ligne 76 : | Ligne 138 : | ||
local a = Infobox:new( {} ) | local a = Infobox:new( {} ) | ||
a:addTitle( {} ) | a:addTitle( {} ) | ||
return a | a:openTable( {} ) | ||
a:addMixedRow( { | |||
label = 'Test', | |||
value = 'test' | |||
} ) | |||
a:closeTable( {} ) | |||
return tostring(a) | |||
end | end | ||
return p | return p |
Version du 1 avril 2013 à 12:43
local Infobox = {}
function Infobox:new( args )
--Object initialisation local object = { text = "", title = mw.title.getCurrentTitle() } setmetatable(object, { __index = Infobox, __tostring = function( self ) return self:tostring() end })
--Open main div
local str = '
'
return object
end
function Infobox:addTitle( args )
local str = '' if args.text and args.text ~= then str = str .. args.text else str = str .. self.title.text end self.text = self.text .. str .. '
'end
function Infobox:openTable( args )
local str = '<table' if args.type then str = str .. ' class="' .. args.type .. '"' end str = str .. '><caption' if class then str = str .. ' class="' .. args.class .. '"' end
--Style of the caption local style = {} if args.border then style['border-color'] = args.border end if args.background then style['background'] = args.background if args.color then style['color'] = args.color end end if style ~= {} then str = str .. ' style="' .. formatStyle( style ) .. '"' end
str = str .. '>' if args.text and args.text ~= then str = str .. args.text else str = str .. 'Données clés' endself.text = self.text .. str .. '' end function Infobox:closeTable( args ) self.text = self.text .. ''
end
function Infobox:addMixedRow( args )
if not args.value or args.value == then return end if not args.label thenself.text = self.text .. 'Le paramètre label n\'est pas renseigné.'
endlocal str = '' .. args.label .. '' .. args.value .. ''
end
function Infobox:tostring()
return self.text .. ''
end
--Create a style property value from an array CSS property = CSS value function formatStyle( args )
local elems = {} for key, val in pairs( args ) do elems.add( key .. ':' .. val ) end return table.concat( elems, '; ' )
end
local p = {} function p.new( args )
return Infobox:new( args )
end function p.test()
local a = Infobox:new( {} ) a:addTitle( {} ) a:openTable( {} ) a:addMixedRow( { label = 'Test', value = 'test' } ) a:closeTable( {} ) return tostring(a)
end return p