Module:Sandbox: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
function p.main(frame) | function p.main(frame) | ||
local args = frame.args | local args = frame.args | ||
local output = | local output = {} | ||
-- Header row | -- Header row | ||
output = output | table.insert(output, '<table class="templateTheme" style="text-align: center; margin: auto; width: 50%;">') | ||
output | table.insert(output, '<tr>') | ||
output | table.insert(output, '<th class="templatePrimary" rowspan="2" style="border-radius: 1rem 0 0 0; width: 10%;">Model</th>') | ||
output | table.insert(output, '<th class="templatePrimary" colspan="2">' .. frame:expandTemplate{title = "Etrian1", args = {"Monsters"}} .. '</th>') | ||
output | table.insert(output, '<th class="templatePrimary" rowspan="2" style="width: 20%;">' .. frame:expandTemplate{title = "Etrian1", args = {"Experience"}} .. '</th>') | ||
output | table.insert(output, '<th class="templatePrimary" rowspan="2" style="border-radius: 0 1rem 0 0; width: 20%;">Floors</th>') | ||
output | table.insert(output, '</tr>') | ||
output | table.insert(output, '<tr>') | ||
output | table.insert(output, '<th class="templatePrimary" style="width: 25%;">English</th>') | ||
output | table.insert(output, '<th class="templatePrimary" style="width: 25%;">Japanese</th>') | ||
table.insert(output, '</tr>') | |||
-- Data rows | -- Data rows | ||
for i = 1, 100 do | for i = 1, 100 do | ||
Line 33: | Line 36: | ||
break -- exit loop when no more rows are found | break -- exit loop when no more rows are found | ||
end | end | ||
local rowData = {} | |||
table.insert(rowData, '<tr class="monstersTableRow">') | |||
table.insert(rowData, '<th class="templatePrimary">' .. frame:expandTemplate{title = "Etrian1Model", args = {(monsterArg or "")}} .. '</th>') | |||
table.insert(rowData, '<td class="templateSecondary">' .. frame:expandTemplate{title = "Etrian1", args = {(monsterArg or "")}} .. '</td>') | |||
table.insert(rowData, '<td class="templateSecondary">' .. frame:preprocess('{{#invoke:Etrian 1 Monster Data Cell|etrian1MonsterDataCell|name=' .. (monsterArg or "") .. '|getVar=ja}}') .. '</td>') | |||
table.insert(rowData, '<td class="templateSecondary">' .. frame:preprocess('{{#invoke:Etrian 1 Monster Data Cell|etrian1MonsterDataCell|name=' .. (monsterArg or "") .. '|getVar=exp}}') .. '</td>') | |||
table.insert(rowData, '<td class="templateSecondary">' .. (floorArg or "") .. '</td>') | |||
table.insert(rowData, '</tr>') | |||
table.insert(output, table.concat(rowData)) | |||
end | end | ||
output | |||
return output | table.insert(output, '</table>') | ||
return table.concat(output) | |||
end | end | ||
return p | return p |
Revision as of 09:48, 26 March 2023
----------------------------------------------------------------------------------------------------
--
-- Module:Sandbox
--
-- Here you can set anything you want in this sandbox, as long as it uses the language Lua.
-- Do not forget to add {{#invoke:Sandbox|<function name>}} in your template.
-- [[Category:Sandbox]]
--
----------------------------------------------------------------------------------------------------
local p = {}
local mw = require('mw')
function p.main(frame)
local args = frame.args
local output = {}
-- Header row
table.insert(output, '<table class="templateTheme" style="text-align: center; margin: auto; width: 50%;">')
table.insert(output, '<tr>')
table.insert(output, '<th class="templatePrimary" rowspan="2" style="border-radius: 1rem 0 0 0; width: 10%;">Model</th>')
table.insert(output, '<th class="templatePrimary" colspan="2">' .. frame:expandTemplate{title = "Etrian1", args = {"Monsters"}} .. '</th>')
table.insert(output, '<th class="templatePrimary" rowspan="2" style="width: 20%;">' .. frame:expandTemplate{title = "Etrian1", args = {"Experience"}} .. '</th>')
table.insert(output, '<th class="templatePrimary" rowspan="2" style="border-radius: 0 1rem 0 0; width: 20%;">Floors</th>')
table.insert(output, '</tr>')
table.insert(output, '<tr>')
table.insert(output, '<th class="templatePrimary" style="width: 25%;">English</th>')
table.insert(output, '<th class="templatePrimary" style="width: 25%;">Japanese</th>')
table.insert(output, '</tr>')
-- Data rows
for i = 1, 100 do
local monsterArg = args["monster_" .. i]
local floorArg = args["floor_" .. i]
if not monsterArg and not floorArg then
break -- exit loop when no more rows are found
end
local rowData = {}
table.insert(rowData, '<tr class="monstersTableRow">')
table.insert(rowData, '<th class="templatePrimary">' .. frame:expandTemplate{title = "Etrian1Model", args = {(monsterArg or "")}} .. '</th>')
table.insert(rowData, '<td class="templateSecondary">' .. frame:expandTemplate{title = "Etrian1", args = {(monsterArg or "")}} .. '</td>')
table.insert(rowData, '<td class="templateSecondary">' .. frame:preprocess('{{#invoke:Etrian 1 Monster Data Cell|etrian1MonsterDataCell|name=' .. (monsterArg or "") .. '|getVar=ja}}') .. '</td>')
table.insert(rowData, '<td class="templateSecondary">' .. frame:preprocess('{{#invoke:Etrian 1 Monster Data Cell|etrian1MonsterDataCell|name=' .. (monsterArg or "") .. '|getVar=exp}}') .. '</td>')
table.insert(rowData, '<td class="templateSecondary">' .. (floorArg or "") .. '</td>')
table.insert(rowData, '</tr>')
table.insert(output, table.concat(rowData))
end
table.insert(output, '</table>')
return table.concat(output)
end
return p