ХӀокху модулах лаьцна хааман Модуль:Infobox/bulleted block/doc агӀо кхолла мега

local p = {}

-- takes strings or nils; returns a string
function makeText(frame, text, wikidata, from)
	if wikidata and wikidata ~= ''then
		return frame:expandTemplate{title='Wikidata', args={wikidata, text or '', from=from or ''}}
	else
		return text or ''
	end
end

-- from [[ce:Модуль:Infobox]]
local function maxNumber ( args )
	local maxNumber = 0
	for argName, _ in pairs(args) do
		local argNumber = mw.ustring.match(argName, '^[^0-9]+([0-9]+)$')
		if argNumber and tonumber(argNumber) > maxNumber then
			maxNumber = tonumber(argNumber)
		end
	end
	return maxNumber
end

function p.main(frame)
	local args = frame:getParent().args
	local maxNumberArgs = maxNumber(args)
	
	local texts = {}
	for i = 1, maxNumberArgs do
		if args['текст' .. i] then
			texts[i] = makeText(frame, args['текст' .. i], args['викихаамаш' .. i], args['from'])
		end
	end
	
	local textsAreEmpty = true
	for i = 1, maxNumberArgs do
		if texts[i] and texts[i] ~= '' then
			textsAreEmpty = false
		end
	end
	
	local results = {}
	if not textsAreEmpty and args['корталг'] and args['корталг'] ~= '' then
		results['текст1'] = args['корталг']
		results['текстан_хатӀ1'] = 'padding-bottom:0; border-bottom:0; text-align:left; font-weight:bold;'
	end
	
	local mainText = makeText(frame, args['текст'], args['викихаамаш'], args['from'])
	if mainText == '' and args['билгало'] and args['билгало'] ~= '' and not textsAreEmpty then
		mainText = ' '
	end
	
	if mainText and mainText ~= '' then
		results['билгало2'] = args['билгало']
		results['билгалонан_хатӀ2'] = 'padding-bottom:0; border-bottom:0;'
		results['текст2'] = mainText
		results['текстан_хатӀ2'] = 'padding-bottom:0; border-bottom:0;'
	end
	
	for i = 1, maxNumberArgs do
		if texts[i] and texts[i] ~= '' then
			results['билгало' .. (i+2)] = ' • ' .. (args['билгало' .. i] or '')
			results['текст' .. (i+2)] = texts[i]
			
			local last = true
			for j = i+1, maxNumberArgs do
				if texts[j] and texts[j] ~= '' then
					last = false
				end
			end
			
			if last then
				results['билгалонан_хатӀ' .. (i+2)] = 'font-weight:normal; padding-top:0; border-top:0;'
				results['текстан_хатӀ' .. (i+2)] = 'padding-top:0; border-top:0;'
			else
				results['билгалонан_хатӀ' .. (i+2)] = 'font-weight:normal; padding-bottom:0; border-bottom:0; padding-top:0; border-top:0;'
				results['текстан_хатӀ' .. (i+2)] = 'padding-bottom:0; border-bottom:0; padding-top:0; border-top:0;'
			end
		end
	end

	return frame:expandTemplate{title='Таблицан дакъа', args=results}
end

return p