Module:CareerList: Difference between revisions

1,464 bytes removed ,  13 March 2023
no edit summary
No edit summary
No edit summary
local p = {}
 
local function getSiteConfiggetConfig(site)
-- Функция для получения конфигурации по сайту
local itemsconfig = mw.text.splitloadData(list, '%s*{{"Module:CareerList%s*|'/config")
local function getSiteConfig(site)
localreturn config = mw.loadData('Module:CareerList/config')[site:lower()]
if not config then
error(string.format('Не найдена конфигурация для сайта "%s"', site))
end
return config
end
 
function p.CareerListTop(frame)
-- Функция для генерации ссылки по конфигурации
local iargs = 1frame.args
local function generateLink(config, id)
local list = args.list or ""
return config.url:gsub('%$1', id)
local bgcolor = args.bgcolor or "#F2F2F2"
return string.format([[
html = html .. '<trtable class="wikitable" style="background-color:#F2F2F2%s;width:100%%;">\n'
i = i + 1<tr>
<th>Site</th>
html = html .. rowHtml<th>ID</th>
<th>Alias</th>
<th>Notes</th>
end </tr>
if item ~= '' then%s
html = html .. ' </table>'
]], bgcolor, list)
end
 
function p.mainCareerList(frame)
local args = frame:getParent().args
local site = args.site or ""
 
local id = args.id or ""
-- Проверяем передан ли параметр list
local listalias = args.listalias or errormw.title.getCurrentTitle('Не задан список').text
local notes = args.notes or "N/A"
 
local config = getSiteConfiggetConfig(site)
-- Разбиваем список на отдельные строки
if not config then
local items = mw.text.split(list, '%s*{{CareerList%s*|')
return config""
 
-- Генерируем HTML-таблицу
local html = '<table class="wikitable CareerListTable">\n'
html = html .. '<tr style="background-color:#F2F2F2;">\n'
html = html .. '<th style="text-align:left;">Website/Studio</th>\n'
html = html .. '<th style="text-align:left;">Site</th>\n'
html = html .. '<th style="text-align:left;">ID</th>\n'
html = html .. '<th style="text-align:left;">Alias</th>\n'
html = html .. '<th style="text-align:left;">Notes</th>\n'
html = html .. '</tr>\n'
 
-- Перебираем каждый элемент списка
local i = 1
for _, item in ipairs(items) do
if item ~= '' then
local itemArgs = mw.text.split(item, '%|')
local site = mw.text.trim(itemArgs[1] or '')
local id = mw.text.trim(itemArgs[2] or '')
local alias = mw.text.trim(itemArgs[3] or '')
local notes = mw.text.trim(itemArgs[4] or '')
 
-- Получаем конфигурацию для сайта
local config = getSiteConfig(site)
 
-- Генерируем HTML-строку для текущего элемента
local rowHtml = '<tr style="background-color:'..(i%2==0 and '#F3F3F3' or '#FFFFFF')..';">\n'
rowHtml = rowHtml .. '<td style="background-color:'..(config.type == 'Studio' and '#DADADA' or '#E7E7E7')..';">'..config.type..'</td>\n'
rowHtml = rowHtml .. '<td><a href="'..generateLink(config, id)..'">'..config.name..'</a></td>\n'
rowHtml = rowHtml .. '<td>'..id..'</td>\n'
rowHtml = rowHtml .. '<td>'..(alias ~= '' and alias or config.name)..'</td>\n'
rowHtml = rowHtml .. '<td>'..(notes ~= '' and notes or 'N/A')..'</td>\n'
rowHtml = rowHtml .. '</tr>\n'
 
html = html .. rowHtml
i = i + 1
end
end
returnlocal url = config.url:gsub('"%$1'", id)
 
local bgcolor = config.type == "Studio" and "#DADADA" or "#FFFFFF"
html = html .. '</table>'
local color = config.type == "Studio" and "#000000" or "#000000"
 
return htmlstring.format([[
<tr style="background-color:%s;color:%s;">
<td><a href="%s">%s</a></td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
html = html .. '</tr>\n'
]], bgcolor, color, url, config.name, id, alias, notes)
end
 
Anonymous user