Module:ChapterNavbox: Difference between revisions
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
end_ = 46, | end_ = 46, | ||
style = 'background:#707ebd;color:white;', | style = 'background:#707ebd;color:white;', | ||
group = 'group1', | |||
list = 'list1', | |||
}, | }, | ||
{ | { | ||
Line 14: | Line 16: | ||
end_ = 58, | end_ = 58, | ||
style = 'background:#912f28;color:white;', | style = 'background:#912f28;color:white;', | ||
group = 'group2', | |||
list = 'list2', | |||
}, | }, | ||
{ | { | ||
Line 20: | Line 24: | ||
end_ = 69.1, | end_ = 69.1, | ||
style = 'background:#2b8842;color:white;', | style = 'background:#2b8842;color:white;', | ||
group = 'group3', | |||
list = 'list3', | |||
}, | }, | ||
{ | { | ||
Line 26: | Line 32: | ||
end_ = 80, | end_ = 80, | ||
style = 'background:#4589c8;color:white;', | style = 'background:#4589c8;color:white;', | ||
group = 'group4', | |||
list = 'list4', | |||
}, | }, | ||
{ | { | ||
Line 32: | Line 40: | ||
end_ = 88, | end_ = 88, | ||
style = 'background:#aa715e;color:white;', | style = 'background:#aa715e;color:white;', | ||
group = 'group5', | |||
list = 'list5', | |||
}, | }, | ||
{ | { | ||
Line 38: | Line 48: | ||
end_ = 96.1, | end_ = 96.1, | ||
style = 'background:#f27191;color:white;', | style = 'background:#f27191;color:white;', | ||
group = 'group6', | |||
list = 'list6', | |||
}, | }, | ||
{ | { | ||
Line 44: | Line 56: | ||
end_ = 110, | end_ = 110, | ||
style = 'background:#efb63b;color:white;', | style = 'background:#efb63b;color:white;', | ||
group = 'group7', | |||
list = 'list7', | |||
}, | }, | ||
} | } | ||
Line 57: | Line 71: | ||
local chapters = chaptersModule.getChaptersList() | local chapters = chaptersModule.getChaptersList() | ||
local navbox = | local navbox = { | ||
'{{Navbox', | |||
'|bodyclass = hlist', | |||
'|name = BCB chapters', | |||
'|title = \'\'[[Bittersweet Candy Bowl]]\'\' Chapters', | |||
'|titlestyle = ', | |||
'|image = ', | |||
'|above = ' | |||
} | |||
-- Add | -- Add volume groups and lists | ||
for _, volume in ipairs(volumes) do | for _, volume in ipairs(volumes) do | ||
navbox | table.insert(navbox, string.format('|%sstyle = %s', volume.group, volume.style)) | ||
table.insert(navbox, string.format('|%s = %s', volume.group, volume.name)) | |||
local list = {} | local list = {} | ||
for _, chapter in ipairs(chapters) do | for _, chapter in ipairs(chapters) do | ||
if isChapterInVolume(chapter.number, volume.start, volume.end_) then | if isChapterInVolume(chapter.number, volume.start, volume.end_) then | ||
table.insert(list, '[[' .. chapter.title .. ']]') | table.insert(list, '* [[' .. chapter.title .. ']]') | ||
end | end | ||
end | end | ||
table.insert(navbox, string.format('|%s = %s', volume.list, table.concat(list, '\n'))) | |||
end | end | ||
-- Add group for chapters not in print | -- Add group for chapters not in print | ||
navbox | table.insert(navbox, '|group8style = background:#707ebd;color:white;') | ||
table.insert(navbox, '|group8 = Chapters Not Yet in Print') | |||
local list_not_in_print = {} | local list_not_in_print = {} | ||
Line 121: | Line 111: | ||
if not in_volume then | if not in_volume then | ||
table.insert(list_not_in_print, '[[' .. chapter.title .. ']]') | table.insert(list_not_in_print, '* [[' .. chapter.title .. ']]') | ||
end | end | ||
end | end | ||
table.insert(navbox, '|list8 = ' .. table.concat(list_not_in_print, '\n')) | |||
table.insert(navbox, '|below = ') | |||
table.insert(navbox, '}}') | |||
return | return table.concat(navbox, '\n') | ||
end | end | ||
return p | return p |
Revision as of 10:33, 26 May 2024
Documentation for this module may be created at Module:ChapterNavbox/doc
local p = {}
-- Define the volume ranges and styles
local volumes = {
{
name = 'Volume One',
start = 1,
end_ = 46,
style = 'background:#707ebd;color:white;',
group = 'group1',
list = 'list1',
},
{
name = 'Volume Two',
start = 47,
end_ = 58,
style = 'background:#912f28;color:white;',
group = 'group2',
list = 'list2',
},
{
name = 'Volume Three',
start = 59,
end_ = 69.1,
style = 'background:#2b8842;color:white;',
group = 'group3',
list = 'list3',
},
{
name = 'Volume Four',
start = 70,
end_ = 80,
style = 'background:#4589c8;color:white;',
group = 'group4',
list = 'list4',
},
{
name = 'Volume Five',
start = 81,
end_ = 88,
style = 'background:#aa715e;color:white;',
group = 'group5',
list = 'list5',
},
{
name = 'Volume Six',
start = 89,
end_ = 96.1,
style = 'background:#f27191;color:white;',
group = 'group6',
list = 'list6',
},
{
name = 'Volume Seven',
start = 97,
end_ = 110,
style = 'background:#efb63b;color:white;',
group = 'group7',
list = 'list7',
},
}
-- Function to check if a chapter is within a volume range
local function isChapterInVolume(chapter_no, start, end_)
local number = tonumber(chapter_no)
return number and number >= start and number <= end_
end
function p.generateNavbox()
local chaptersModule = require('Module:Chapters')
local chapters = chaptersModule.getChaptersList()
local navbox = {
'{{Navbox',
'|bodyclass = hlist',
'|name = BCB chapters',
'|title = \'\'[[Bittersweet Candy Bowl]]\'\' Chapters',
'|titlestyle = ',
'|image = ',
'|above = '
}
-- Add volume groups and lists
for _, volume in ipairs(volumes) do
table.insert(navbox, string.format('|%sstyle = %s', volume.group, volume.style))
table.insert(navbox, string.format('|%s = %s', volume.group, volume.name))
local list = {}
for _, chapter in ipairs(chapters) do
if isChapterInVolume(chapter.number, volume.start, volume.end_) then
table.insert(list, '* [[' .. chapter.title .. ']]')
end
end
table.insert(navbox, string.format('|%s = %s', volume.list, table.concat(list, '\n')))
end
-- Add group for chapters not in print
table.insert(navbox, '|group8style = background:#707ebd;color:white;')
table.insert(navbox, '|group8 = Chapters Not Yet in Print')
local list_not_in_print = {}
for _, chapter in ipairs(chapters) do
local number = tonumber(chapter.number)
local in_volume = false
for _, volume in ipairs(volumes) do
if isChapterInVolume(chapter.number, volume.start, volume.end_) then
in_volume = true
break
end
end
if not in_volume then
table.insert(list_not_in_print, '* [[' .. chapter.title .. ']]')
end
end
table.insert(navbox, '|list8 = ' .. table.concat(list_not_in_print, '\n'))
table.insert(navbox, '|below = ')
table.insert(navbox, '}}')
return table.concat(navbox, '\n')
end
return p