Modul:Index template
Görünüş
Bu modulun sənədləşdirmə səhifəsi Modul:Index template/doc səhifəsində yaradıla bilər
function withWikidataLink(wikitext, category)
if wikitext == nil then
return nil
end
new_wikitext = mw.ustring.gsub(wikitext, '%[%[([^|%]]*)%]%]', function(page)
return addWikidataToLink(page, mw.ustring.gsub(page, '%.*/', '') , category)
end)
if new_wikitext ~= wikitext then
return new_wikitext
end
return mw.ustring.gsub(wikitext, '%[%[([^|]*)|([^|%]]*)%]%]', function(page, link)
return addWikidataToLink(page, link, category)
end)
end
function addWikidataToLink(page, label, category)
local title = mw.title.new( page )
if title == nil then
return '[[' .. page .. '|' .. label .. ']]'
end
if title.isRedirect then
title = title.redirectTarget
end
local tag = mw.html.create('span')
local itemId = mw.wikibase.getEntityIdForTitle(title.fullText)
tag:wikitext('[[' .. page .. '|' .. label .. ']]')
if itemId ~= nil then
--transalate "View information on Wikidata"
tag:wikitext(' [[Image:Wikidata.svg|10px|link=d:' .. itemId .. '|View information on Wikidata]]')
if category ~= nil then
tag:wikitext('[[Категория:' .. category .. ']]')
end
end
return tostring(tag)
end
function addRow(metadataTable, key, value)
if value then
metadataTable:tag('tr')
:tag('th')
:attr('score', 'row')
:css('vertical-align', 'top')
:wikitext(key)
:done()
:tag('td'):wikitext(value)
end
end
function splitFileNameInFileAndPage(title)
local slashPosition = string.find(title.text, "/")
if slashPosition == nil then
return title.text,nil
else
return string.sub(title.text, 1, slashPosition - 1), string.sub(title.text, slashPosition + 1)
end
end
function indexTemplate(frame)
local data = (require 'Module:Index_data').indexDataWithWikidata(frame)
local args = data.args
local item = data.item
local page = mw.title.getCurrentTitle()
local html = mw.html.create()
if item then
html:wikitext('[[Category:Индекс/Книги с указанным ID элемента Wikidata]]<indicator name="wikidata">[[File:Wikidata.svg|20px|element Wikidata|link=d:' .. item.id .. ']]</indicator>')
else
html:wikitext('[[Category:Индекс/Книги без указанного ID элемента Wikidata]]')
end
local left = html:tag('div')
if args.remarks or args.notes then
left:css('width', '53%')
end
left:css('float', 'left')
if args.image then
local imageContainer = left:tag('div')
:css({
float = 'left',
overflow = 'hidden',
border = 'thin grey solid'
})
local imageTitle = nil
if tonumber(args.image) ~= nil then
imageTitle = mw.title.getCurrentTitle():subPageTitle(args.image)
else
imageTitle = mw.title.new(args.image, "Media")
end
if imageTitle == nil then
imageContainer:wikitext(args.image)
else
local imageName, imagePage = splitFileNameInFileAndPage(imageTitle)
if imagePage ~= nil then
imageContainer:wikitext('[[File:' .. imageName .. '|page=' .. imagePage .. '|250px]]')
else
imageContainer:wikitext('[[File:' .. imageName .. '|250px]]')
end
end
end
local metadataContainer = left:tag('div')
if args.image then
metadataContainer:css('margin-left', '150px')
end
local metadataTable = metadataContainer:tag('table')
if args.title then
if item then
addRow(metadataTable, 'Title', withWikidataLink(args.title))
else
addRow(metadataTable, 'Title', '[[' .. args.title .. ']]')
end
else
--Translate "You must enter the title field of the form"
mw.addWarning('You must enter the title field of the form.')
end
addRow(metadataTable, 'Subtitle', withWikidataLink(args.subtitle))
if args.volume then
addRow(metadataTable, 'Volume', '[[' .. args.volume .. ']]' )
html:wikitext('[[Category:Индекс/Книги с указанным томом]]')
else
html:wikitext('[[Category:Индекс/Книги без указания тома]]')
end
--Translate "Books with edition" and "Books without edition"
if args.edition then
addRow(metadataTable, 'Edition', '[[' .. args.edition .. ']]')
html:wikitext('[[Category:Индекс/Книги с указанной редакцией]]')
else
html:wikitext('[[Category:Индекс/Книги без указания редакции]]')
end
if args.author then
if item then
addRow(metadataTable, 'Author', withWikidataLink(args.author))
html:wikitext('[[Category:Индекс/Книги с указанным автором]]')
local authors = item:formatPropertyValues( 'P253075', { mw.wikibase.entity.claimRanks.RANK_NORMAL } )['value']
for author in string.gmatch(authors, '([^,]+)') do
html:wikitext('[[Category:Индекс/Книги автора ' .. author .. ']]')
end
else
addRow(metadataTable, 'Author', '{{Al|' .. args.author .. '}}')
end
else
html:wikitext('[[Category:Индекс/Книги без указания автора]]')
end
if args.translator then
if item then
addRow(metadataTable, 'Translator', withWikidataLink(args.translator))
html:wikitext('[[Category:Индекс/Книги с указанным переводчиком]]')
else
addRow(metadataTable, 'Translator', '{{Al|' .. args.translator .. '}}')
end
else
html:wikitext('[[Category:Индекс/Книги без указания переводчика]]')
end
if args.editor then
if item then
addRow(metadataTable, 'Editor', withWikidataLink(args.editor))
html:wikitext('[[Category:Индекс/Книги с указанным редактором]]')
else
addRow(metadataTable, 'Editor', '{{Al|' .. args.editor .. '}}')
end
else
html:wikitext('[[Category:Индекс/Книги без указания редактора]]')
end
if args.illustrator then
addRow(metadataTable, 'Illustrator', withWikidataLink(args.illustrator))
html:wikitext('[[Category:Индекс/Книги с указанным иллюстратором]]')
else
html:wikitext('[[Category:Индекс/Книги без указаниия иллюстратора]]')
end
if args.publisher then
if item then
addRow(metadataTable, 'Publisher', withWikidataLink(args.publisher))
html:wikitext('[[Category:Индекс/Книги с указанным издателем]]')
else
addRow(metadataTable, 'Publisher', withWikidataLink(args.publisher))
html:wikitext('[[Category:Индекс/Книги с указанным издателем]]')
end
else
html:wikitext('[[Category:Индекс/Книги без указания издателя]]')
end
if args.address then
addRow(metadataTable, 'Address', withWikidataLink(args.address))
html:wikitext('[[Category:Индекс/Книги с указанным местом публикации]]')
else
if args.publishedin then
addRow(metadataTable, 'Published In', withWikidataLink(args.publishedin))
html:wikitext('[[Category:Индекс/Книги с указанным местом публикации]]')
else
html:wikitext('[[Category:Индекс/Книги без указания места публикации]]')
end
end
if args.year then
addRow(metadataTable, 'Year', withWikidataLink(args.year))
html:wikitext('[[Category:Индекс/Книги с указанным годом]]')
html:wikitext('[[Category:Индекс/Книги опубликованные в ' ..args.year..']]')
else
html:wikitext('[[Category:Индекс/Книги без указания года]]')
end
--Translate "Books with printer" and Books without printer
if args.printer then
addRow(metadataTable, 'Printer', withWikidataLink(args.printer))
html:wikitext('[[Category:Индекс/Книги с указанием типографии]]')
else
html:wikitext('[[Category:Индекс/Книги без указания типографии]]')
end
if args.source == 'djvu' or args.source == 'pdf' then
addRow(metadataTable, 'Source', '[[:File:' .. mw.title.getCurrentTitle().text .. '|' .. args.source .. ']]')
local query = 'SELECT ?item ?itemLabel ?pages ?page WHERE {\n ?item wdt:P996 <http://commons.wikimedia.org/wiki/Special:FilePath/' .. mw.uri.encode(mw.title.getCurrentTitle().text, 'PATH') .. '> .\n OPTIONAL { ?page schema:about ?item ; schema:isPartOf <https://bn.wikisource.org/> . }\n OPTIONAL { ?item wdt:P304 ?pages . }\n SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],bn".\n}}'
--Translate "Wikidata items"
html:wikitext('<indicator name="index-scan-wikidata">[[File:Wikidata Query Service Favicon.svg|20px|Wikidata items|link=https://query.wikidata.org/embed.html#' .. mw.uri.encode(query, 'PATH') .. ']]</indicator>')
else
addRow(metadataTable, 'Source', args.source)
end
if args.progress == 'T' then
addRow(metadataTable, 'Progress', '[[Категория:Индекс - Закончено]] [[:Категория:Индекс - Закончено | Закончено — Все страницы вычитаны и проверены]]')
elseif args.progress == 'V' then
addRow(metadataTable, 'Progress', '[[Категория:Индекс - Нужно проверить]] [[:Категория:Индекс - Нужно проверить | Вычитано — Все страницы вычитаны, но не все проверены]]')
elseif args.progress == 'C' then
addRow(metadataTable, 'Progress', '[[Категория:Индекс - Нужно вычитать]] [[:Категория:Индекс - Нужно вычитать | Нужно вычитать]]')
elseif args.progress == 'OCR' then
addRow(metadataTable, 'Progress', '[[Категория:Индекс - Нужно распознать]] [[:Категория:Индекс - Нужно распознать | В исходном файле отсутствует текстовый OCR слой]]')
elseif args.progress == 'L' then
addRow(metadataTable, 'Progress', '[[Категория:Индекс - Исходный файл содержит ошибки]] <span style = "color: # FF0000;"> [[:Категория:Индекс - Исходный файл содержит ошибки | <span class="error">Исходный файл нуждается в исправлении перед вычиткой</span>]] </span>')
elseif args.progress == 'X' then
addRow(metadataTable, 'Progress', '[[Категория:Индекс - Исходный файл нуждается в проверке]] [[:Категория:Индекс - Исходный файл нуждается в проверке | <span class="error">Создайте список страниц исходного файла перед началом вычитки (чтобы убедиться в исправности файла)</span>]]')
else
addRow(metadataTable, 'Progress', '[[Категория:Unknown progress books]] [[:Категория:Unknown progress books | Unknown progress]]')
end
addRow(metadataTable, 'Series', args.volumes)
if args.pages then
left:tag('div'):css('clear', 'both')
left:tag('p')
:wikitext('<b>Страницы</b>   (<span style="font-size:83%;">справка по [[Справка:Состояние страницы{{!}}состоянию страниц]]</span>)')
-- left:tag('span'):attr('id', 'pagelist'):css({
left:tag('div'):attr('id', 'pagelist'):css({
background = '#F0F0F0',
['padding-left'] = '0.5em',
['text-align'] = 'justify'
}):newline():wikitext(args.pages):newline()
else
mw.addWarning('You must enter the pagination of the facsimile (Pages field) ')
end
if args.remarks or args.notes then
local right = html:tag('div'):css({
width = '44%;',
['padding-left'] = '1em',
float = 'right'
})
if args.remarks then
right:tag('div'):attr('id', 'remarks'):wikitext(args.remarks)
end
if args.notes then
right:tag('hr'):css({
['margin-top'] = '1em',
['margin-bottom'] = '1em'
})
right:tag('div'):attr('id', 'notes'):wikitext(args.notes)
end
end
--Please translate or replace the following type categories.
if args.type == 'book' then
html:wikitext('[[Категория:Индекс - Books]] ')
elseif args.type == 'journal' then
html:wikitext('[[Категория:Индекс - Periodicals]] ')
elseif args.type == 'collection' then
html:wikitext('[[Категория:Индекс - Collections]] ')
elseif args.type == 'dictionary' then
html:wikitext('[[Категория:Индекс - Dictionaries]] ')
elseif args.type == 'phdthesis' then
html:wikitext('[[Категория:Индекс - Theses]] ')
end
html:wikitext('[[Категория:Индекс]]')
if args.source ~= 'djvu' then
html:wikitext('[[Category:Non djvu book]] ')
elseif args.source == 'pdf' then
html:wikitext ('[[Category:PDF файл]]')
elseif args.source == 'ogg' then
html:wikitext ('[[Category:OGG файл]]')
elseif args.source == 'webm' then
html:wikitext ('[[Category:webm файл]]')
end
if not args.remarks then
html:wikitext ('[[Category:Indexed pages]]')
end
return tostring(html)
end
local p = {}
function p.indexTemplate( frame )
return indexTemplate( frame )
end
return p