Module:Liste2
Révision datée du 12 décembre 2018 à 17:22 par L.strappazon (discussion | contributions)
La documentation pour ce module peut être créée à Module:Liste2/doc
local p = {}
function p.main(frame)
if frame == mw.getCurrentFrame() then
args = require('Module:ProcessArgs').merge(true)
else
frame = mw.getCurrentFrame()
end
local query = {}
for k, v in pairs(args) do
if string.sub(k, 0, 2) == 'q?' then
query[string.sub(k, 3)] = v
end
end
supports={}
local result = mw.ext.cargo.query('Supports','idSupport,video',{groupBy = 'idSupport',limit=3000})
for d, row in ipairs(result) do
supports[row['idSupport']] = row['video']
end
result = mw.ext.cargo.query(query.tables, query.fields, query)
if not next(result) then
return frame:preprocess(args.default or '')
end
local tbl = {}
for _, row in ipairs(result) do
row['annee'] = tonumber(row['annee'])
if row['video'] == '' then
if supports[row['idSupport']] then row['video']=supports[row['idSupport']] end
end
end
local debut = 1904
local periode,nb = 7,0
local d,f = debut,debut+periode
local texte_periode = '\n <div class="collapsible"> '.. d+1 ..'-'..f .. '</div><div class="content"> '
local retour, tbl = '',{''}
for _,row in ipairs(result) do
if not tbl[2] then
retour = retour .. '\n <div class="collapsible"> '.. d+1 ..'-'..f .. ' : ' .. nb .. ' séquences </div><div class="content"><br> '
end
if row['annee'] >= f + 1 then
retour = retour .. table.concat(tbl,args.delimiter or '') .. '</div><br>'
nb = #tbl
d,f,tbl = f,f+periode,{}
end
tbl[#tbl+1] = frame:expandTemplate{ title = args.template, args = row }
end
local intro = frame:preprocess(args.intro or '')
local outro = frame:preprocess(args.outro or '')
return intro .. retour .. outro
end
return p