Module:CareerList: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
PeaceDeadC (talk | contribs) No edit summary |
PeaceDeadC (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
local p = {} |
local p = {} |
||
-- Функция для |
-- Функция для создания таблицы |
||
function p. |
function p.makeTableTop() |
||
local |
local headerRow = mw.html.create('tr') |
||
:node(mw.html.create('th'):wikitext('Site')) |
|||
| ⚫ | |||
:node(mw.html.create('th'):wikitext('ID')) |
|||
| ⚫ | |||
:node(mw.html.create('th'):wikitext('Alias')) |
|||
| ⚫ | |||
:node(mw.html.create('th'):wikitext('Notes')) |
|||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
-- Функция для создания верхней части таблицы |
|||
| ⚫ | |||
return mw.html.create('table') |
return mw.html.create('table') |
||
:addClass('wikitable sortable') |
|||
:css('width', '100%') |
:css('width', '100%') |
||
: |
:node(headerRow) |
||
| ⚫ | |||
:tag('th'):css('width', '25%'):wikitext('Студия'):done() |
|||
:tag('th'):css('width', '25%'):wikitext('Идентификатор'):done() |
|||
:tag('th'):css('width', '25%'):wikitext('Название'):done() |
|||
:tag('th'):css('width', '25%'):wikitext('Примечания'):done() |
|||
:done() |
:done() |
||
end |
end |
||
| Line 89: | Line 77: | ||
:node(notesCell) |
:node(notesCell) |
||
:done() |
:done() |
||
| ⚫ | |||
-- Функция для определения ссылки на сайт |
|||
| ⚫ | |||
local config = mw.loadData('Module:CareerList/config') |
|||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
local id = mw.text.encode(site.id) |
|||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
end |
end |
||
Revision as of 23:58, 12 March 2023
Documentation for this module may be created at Module:CareerList/doc
local p = {}
-- Функция для создания таблицы
function p.makeTableTop()
local headerRow = mw.html.create('tr')
:node(mw.html.create('th'):wikitext('Site'))
:node(mw.html.create('th'):wikitext('ID'))
:node(mw.html.create('th'):wikitext('Alias'))
:node(mw.html.create('th'):wikitext('Notes'))
:done()
return mw.html.create('table')
:css('width', '100%')
:node(headerRow)
:done()
end
-- Функция для создания ячейки таблицы
function p.makeCell(cellType, site, id, alias, notes)
local function getColor(index)
return (index % 2 == 0) and '#F3F3F3' or '#FFFFFF'
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
-- Функция для определения ссылки на сайт
function p.getSiteLink(site)
local config = mw.loadData('Module:CareerList/config')
site = site:lower()
if config[site] then
local url = config[site].url
local id = mw.text.encode(site.id)
return string.format('[%s %s]', url:gsub('$1', id), site)
else
return site
end
end
return p