Модуль:Infobox/bulleted block
Перейти к навигации
Перейти к поиску
Этот модуль является реализацией шаблона {{Карточка/блок с маркерами}}.
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
function p.main(frame)
local args = frame:getParent().args
local texts = {}
for i = 1, 20 do -- TODO
if args['текст' .. i] then
texts[i] = makeText(frame, args['текст' .. i], args['тептарданные' .. i], args['from'])
end
end
local textsAreEmpty = true
for i = 1, 20 do -- TODO
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, 20 do --TODO
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, 20 do -- TODO
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