Module:Chapters: Difference between revisions
NeonWabbit (talk | contribs) No edit summary |
NeonWabbit (talk | contribs) No edit summary |
||
Line 81: | Line 81: | ||
:attr('colspan', '2') | :attr('colspan', '2') | ||
:css('text-align', 'center') | :css('text-align', 'center') | ||
:css('font-size', ' | :css('font-size', '125%') | ||
:css('padding', ' | :css('padding', '5px') | ||
:wikitext(chapterTitle) | :wikitext(chapterTitle) | ||
:done() | :done() | ||
Line 115: | Line 115: | ||
:done() | :done() | ||
-- Add chapter navigation heading | |||
infobox:tag('tr') | infobox:tag('tr') | ||
:tag('th'): | :tag('th') | ||
:attr('colspan', '2') | |||
:css('text-align', 'center') | |||
:css('font-size', '110%') | |||
:css('padding', '5px') | |||
:wikitext('Chapter navigation') | |||
:done() | |||
:done() | :done() | ||
infobox:tag('tr') | -- Add chapter navigation links | ||
local navigation_row = infobox:tag('tr') | |||
: | navigation_row:tag('td') | ||
:attr('colspan', '2') | |||
:css('text-align', 'center') | |||
:wikitext( | |||
(prev_chapter ~= "N/A" and "[[" .. prev_chapter .. "|< Previous]]" or "< Previous") .. | |||
" | " .. | |||
(next_chapter ~= "N/A" and "[[" .. next_chapter .. "|Next >]]" or "Next >") | |||
) | |||
:done() | :done() | ||
navigation_row:done() | |||
return infobox | return infobox |
Revision as of 02:44, 20 May 2024
Documentation for this module may be created at Module:Chapters/doc
-- Module:Chapters
local p = {}
function p.getChaptersList()
local listPage = mw.title.new('Template:ChapterList')
if not listPage then
return {}
end
local content = listPage:getContent()
if not content then
return {}
end
local chapters = {}
for number, title, date, pagecount in string.gmatch(content, "{{Chapter|number=(%d+)|title=([^|]+)|date=([^|]+)|pagecount=(%d+)}}") do
table.insert(chapters, {number = tonumber(number), title = title, date = date, pagecount = tonumber(pagecount)})
end
mw.logObject(chapters) -- Debug: log the parsed chapters
return chapters
end
function p.getChapterDetails(chapterTitle, detail)
local chapters = p.getChaptersList()
for _, chapter in ipairs(chapters) do
if chapter.title == chapterTitle then
mw.logObject(chapter) -- Debug: log the chapter details
return chapter[detail]
end
end
return nil
end
function p.getTotalChapters()
local totalChapters = #p.getChaptersList()
mw.log("Total chapters: " .. totalChapters) -- Debug: log the total number of chapters
return totalChapters
end
function p.getNextChapter(chapterTitle)
local chapters = p.getChaptersList()
for i, chapter in ipairs(chapters) do
if chapter.title == chapterTitle and i < #chapters then
mw.log("Next chapter: " .. chapters[i + 1].title) -- Debug: log the next chapter
return chapters[i + 1].title
end
end
return nil
end
function p.getPreviousChapter(chapterTitle)
local chapters = p.getChaptersList()
for i, chapter in ipairs(chapters) do
if chapter.title == chapterTitle and i > 1 then
mw.log("Previous chapter: " .. chapters[i - 1].title) -- Debug: log the previous chapter
return chapters[i - 1].title
end
end
return nil
end
function p.infoboxChapter(frame)
local chapterTitle = frame.args.chapter_title or mw.title.getCurrentTitle().text
local image = frame.args.image
local chapter_no = p.getChapterDetails(chapterTitle, "number") or "N/A"
local date = p.getChapterDetails(chapterTitle, "date") or "N/A"
local pagecount = p.getChapterDetails(chapterTitle, "pagecount") or "N/A"
local total_chapters = p.getTotalChapters() or "N/A"
local next_chapter = p.getNextChapter(chapterTitle) or "N/A"
local prev_chapter = p.getPreviousChapter(chapterTitle) or "N/A"
local infobox = mw.html.create('table')
infobox:addClass('infobox')
-- Add title as heading
infobox:tag('tr')
:tag('th')
:attr('colspan', '2')
:css('text-align', 'center')
:css('font-size', '125%')
:css('padding', '5px')
:wikitext(chapterTitle)
:done()
:done()
-- Optionally add image
if image and image ~= "" then
infobox:tag('tr')
:tag('td')
:attr('colspan', '2')
:css('text-align', 'center')
:wikitext('[[File:' .. image .. ']]')
:done()
:done()
end
-- Add chapter number and total chapters on the same line
local chapter_info = string.format("%s of %s [[Template:ChapterList|(See all chapters)]]", chapter_no, total_chapters)
infobox:tag('tr')
:tag('th'):wikitext('Chapter'):done()
:tag('td'):wikitext(chapter_info):done()
:done()
infobox:tag('tr')
:tag('th'):wikitext('Date'):done()
:tag('td'):wikitext(date):done()
:done()
infobox:tag('tr')
:tag('th'):wikitext('Pagecount'):done()
:tag('td'):wikitext(pagecount):done()
:done()
-- Add chapter navigation heading
infobox:tag('tr')
:tag('th')
:attr('colspan', '2')
:css('text-align', 'center')
:css('font-size', '110%')
:css('padding', '5px')
:wikitext('Chapter navigation')
:done()
:done()
-- Add chapter navigation links
local navigation_row = infobox:tag('tr')
navigation_row:tag('td')
:attr('colspan', '2')
:css('text-align', 'center')
:wikitext(
(prev_chapter ~= "N/A" and "[[" .. prev_chapter .. "|< Previous]]" or "< Previous") ..
" | " ..
(next_chapter ~= "N/A" and "[[" .. next_chapter .. "|Next >]]" or "Next >")
)
:done()
navigation_row:done()
return infobox
end
return p