local p = {}
-- загрузка конфигурационного файла
local config = require('Module:CareerList/config')
-- функцияФункция для определения ссылки на сайт
local function p.getSiteLink(site, id)
local config = mw.loadData('Module:CareerList/config')
-- проверка наличия значения в конфигурационном файле
if not config.sites[site] then= site:lower()
if config[site] then
error(string.format('Сайт %s не найден в конфигурационном файле', site))
local url = config[site].url
end
local id = mw.text.encode(site.id)
return string.format('[%s %s]', url:gsub('$1', id), site)
-- замена переменной $1 на значение id
else
local url = config.sites[site].url:gsub('%$1', id)
return site
end
-- возврат ссылки
return string.format('[[%s|%s]]', url, site)
end
-- функцияФункция для создания ячейкиверхней части таблицы
local function makeCellp.makeTableTop(site, id, alias, notes)
return mw.html.create('table')
-- определение цвета фона ячейки 1
:addClass('wikitable sortable')
local bg
if site == :css('Studiowidth', then'100%')
bg = :css('text-align', '#DADADAcenter')
:tag('tr')
elseif site == 'Website' then
:tag('th'):css('width', '25%'):wikitext('Студия'):done()
bg = '#E7E7E7'
:tag('th'):css('width', '25%'):wikitext('Идентификатор'):done()
else
:tag('th'):css('width', '25%'):wikitext('Название'):done()
error(string.format('Значение site (%s) должно быть "Studio" или "Website"', site))
:tag('th'):css('width', '25%'):wikitext('Примечания'):done()
end
:done()
-- определение значения alias
if alias == '' then
alias = config.sites[site].name
end
-- определение значения notes
if notes == '' then
notes = 'N/A'
end
-- создание ячейки
local cell = string.format('|-\n| style="background-color: %s;" | %s\n| %s\n| %s\n| %s', bg, site, getSiteLink(site, id), alias, notes)
return cell
end
-- Функция для создания ячейки таблицы
-- экспорт функций
function p.makeCell(cellType, site, id, alias, notes)
return {
local function getColor(index)
getSiteLink = getSiteLink,
return (index % 2 == 0) and '#F3F3F3' or '#FFFFFF'
makeCell = makeCell
end
}
local function getBackground(site)
local config = mw.loadData('Module:CareerList/config')
local color = (cellType == 'Studio') and '#DADADA' or '#E7E7E7'
return config[site] and color or '#FFFFFF'
end
local function getAlias(alias, title)
if not alias or alias == '' then
return title
else
return alias
end
end
local function getNotes(notes)
if not notes or notes == '' then
return 'N/A'
else
return notes
end
end
local background = getBackground(site)
local cell = mw.html.create('td')
:css('background-color', background)
:css('padding', '8px')
:wikitext(p.getSiteLink(site))
:done()
local idCell = mw.html.create('td')
:css('background-color', background)
:css('padding', '8px')
:wikitext(id)
:done()
local aliasCell = mw.html.create('td')
:css('background-color', background)
:css('padding', '8px')
:wikitext(getAlias(alias, mw.title.getCurrentTitle().text))
:done()
local notesCell = mw.html.create('td')
:css('background-color', background)
:css('padding', '8px')
:wikitext(getNotes(notes))
:done()
return mw.html.create('tr')
:css('background-color', getColor())
:node(cell)
:node(idCell)
:node(aliasCell)
:node(notesCell)
:done()
end
return p
|