Module:Liste3 : Différence entre versions

 
(37 révisions intermédiaires par un autre utilisateur non affichées)
Ligne 33 : Ligne 33 :
 
end
 
end
 
 
local debut = 1904
+
local debut = 1900
local periode,nb = 7,0
+
local periode,nb = 10,0
 
local d,f = debut,debut+periode
 
local d,f = debut,debut+periode
local texte_periode = '\n <div class="collapsible"> '..  d+1 ..'-'..f .. '</div><div class="content"> '
 
 
local retour, tbl = '',{''}
 
local retour, tbl = '',{''}
--[[
+
 
 +
local epoques = {}
 +
local n = 1
 +
epoques[n] = {d..' > '..f,{}}
 
for _,row in ipairs(result) do
 
for _,row in ipairs(result) do
if not tbl[2] then
 
retour = retour .. '\n <div class="collapsible"> '.. d+1 .. '-' .. f .. '</div><div class="content"><br> '
 
end
 
 
if row['annee'] >= f + 1 then
 
if row['annee'] >= f + 1 then
 
while row['annee'] > f + periode do
 
while row['annee'] > f + periode do
 
d,f = f,f+periode
 
d,f = f,f+periode
 
end
 
end
retour = retour .. table.concat(tbl,args.delimiter or '') .. '</div><br>'
+
d,f,n = f,f+periode,n+1
tbl = {}
+
epoques[n] = {}
d,f = f,f+periode
+
epoques[n] = {d..' > '..f, {}}
 
end
 
end
tbl[#tbl+1] = frame:expandTemplate{ title = args.template, args = row }
+
table.insert(epoques[n][2], row)
 
end
 
end
retour = retour .. table.concat(tbl,args.delimiter or '') .. '</div><br>'
+
]]--
+
for _,epoque in ipairs(epoques) do
 
+
retour = retour .. frame:expandTemplate{ title = 'Banniere2', args = {Titre = epoque[1] ..'<span class="toHide"> : </span><span class="periodeNbFilms">' .. #epoque[2] .. ' films</span>'}}
tbl_per = {}
+
local nn
tbl_per[d..' - '..f]={{}}
+
for n,film in ipairs(epoque[2]) do
for _,row in ipairs(result) do
+
if n == 4 then
if row['annee'] >= f + 1 then
+
retour = retour .. '\n <div class="mw-collapsible mw-collapsed"><div class="mw-collapsible-content">'
while row['annee'] > f + periode do
 
d,f = f,f+periode
 
 
end
 
end
-- tbl_per[d..' - '..f][#tbl_per[d..' - '..f]+1] = row
+
retour = retour .. frame:expandTemplate{ title = args.template, args = film}
d,f = f,f+periode
+
nn = n
 +
end
 +
if nn > 4 then
 +
retour = retour .. '</div></div>'
 
end
 
end
tbl_per[d..' - '..f][#tbl_per[d..' - '..f]+1] = row
+
end
end
 
retour = 'aa'
 
 
 
 
local intro = frame:preprocess(args.intro or '')
 
local intro = frame:preprocess(args.intro or '')

Version actuelle datée du 1 février 2021 à 17:49

La documentation pour ce module peut être créée à Module:Liste3/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 = 1900
	local periode,nb = 10,0
	local d,f = debut,debut+periode
	local retour, tbl = '',{''}

	local epoques = {}
	local n = 1
	epoques[n] = {d..' > '..f,{}}
	for _,row in ipairs(result) do
		if row['annee'] >= f + 1 then
			while row['annee'] > f + periode do
				d,f = f,f+periode
			end
			d,f,n = f,f+periode,n+1
			epoques[n] = {}
			epoques[n] = {d..' > '..f, {}}
		end
		table.insert(epoques[n][2], row)
	end	
	
	for _,epoque in ipairs(epoques) do
		retour = retour .. frame:expandTemplate{ title = 'Banniere2', args = {Titre = epoque[1] ..'<span class="toHide"> : </span><span class="periodeNbFilms">' .. #epoque[2] .. ' films</span>'}}
		local nn
		for n,film in ipairs(epoque[2]) do
			if n == 4 then
				retour = retour .. '\n <div class="mw-collapsible mw-collapsed"><div class="mw-collapsible-content">'
			end
			retour = retour .. frame:expandTemplate{ title = args.template, args = film}
			nn = n
		end
		if nn > 4 then
			retour = retour .. '</div></div>'
		end
	end
	
	local intro = frame:preprocess(args.intro or '')
	local outro = frame:preprocess(args.outro or '')

	return  intro .. retour .. outro

end 
return p