Module:Liste1 : Différence entre versions

(Page créée avec « local p = {} function p.main(frame) 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 loc... »)
 
 
(42 révisions intermédiaires par le même utilisateur non affichées)
Ligne 1 : Ligne 1 :
 
local p = {}
 
local p = {}
 
function p.main(frame)
 
function p.main(frame)
 +
if frame == mw.getCurrentFrame() then
 +
args = require('Module:ProcessArgs').merge(true)
 +
else
 +
frame = mw.getCurrentFrame()
 +
end
 
 
local query = {}
+
local query = {}
 
for k, v in pairs(args) do
 
for k, v in pairs(args) do
 
if string.sub(k, 0, 2) == 'q?' then
 
if string.sub(k, 0, 2) == 'q?' then
 
query[string.sub(k, 3)] = v
 
query[string.sub(k, 3)] = v
 
end
 
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
 
end
 
 
local result = mw.ext.cargo.query(query.tables, query.fields, query)
+
result = mw.ext.cargo.query(query.tables, query.fields, query)
end
+
if not next(result) then
 +
return frame:preprocess(args.default or '')
 +
end
 +
 
 +
local tbl = {}
 +
for _, row in ipairs(result) do
 +
if row['video'] == '' then
 +
if supports[row['idSupport']] then row['video']=supports[row['idSupport']] end
 +
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 .. table.concat(tbl,args.delimiter or '') .. outro
 +
end
 
return p
 
return p

Version actuelle datée du 10 décembre 2018 à 18:12

La documentation pour ce module peut être créée à Module:Liste1/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
		if row['video'] == '' then
			if supports[row['idSupport']] then row['video']=supports[row['idSupport']] end
		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 .. table.concat(tbl,args.delimiter or '') .. outro 	
end
return p