模块:EventShopList
本页面之全部或部分原来自萌娘百科的模块:EventShopList,依 CC BY-NC-SA 3.0 CN 授权引入;原贡献者可以在这里看到。 |
用于显示活动素材兑换的表格,可勾选部分素材计算需要的活动道具总数。
参数:
token_alias(必须):活动道具的名称。
token_icon(可选):活动道具图标的文件名,默认是以token_alias为名的png文件。
token_icon_size(可选):活动道具图标的大小,默认30px。
1;;[[文件:凶骨.jpg|30px|link=凶骨]] 凶骨;;30;;40;;#FFEDD6;;是分隔符,从左往右的每项分别为:是否初始选中(1/0),显示的名称,兑换次数,单价,背景色(可省略)。
local p = {}
function p.list(frame)
local args = (frame == mw.getCurrentFrame() and frame.args) or frame
local token_name = mw.text.trim(args["token_alias"] or "")
local token_icon_file = mw.text.trim(args["token_icon"] or token_name .. ".png")
local token_icon_size = mw.text.trim(args["token_icon_size"] or "30px")
local data_str = mw.text.trim(args["data"] or "")
local token_icon = string.format("[[File:%s|%s|link=]]", token_icon_file, token_icon_size)
local selectall_str = frame:callParserFunction{name = '#Widget:ShopItemSelectAll', args = {item = token_name}}
res_table = {}
table.insert(res_table, '{| class="wikitable logo" style="white-space:normal;width:600px;max-width:100%;display:table;"\n')
table.insert(res_table, string.format('!style="width:1.5em;"|%s!!可兑换道具!!style="width:5.0em;"|兑换次数!!style="width:6.0em;"|单价\n', selectall_str))
local data_table = mw.text.split(data_str, "\n", true)
for i = 1, #data_table do
local datum_table = mw.text.split(data_table[i], ";;", true)
local name = mw.text.trim(datum_table[2] or "")
local color = mw.text.trim(datum_table[5] or "")
local checkbox_str = ""
local num_limit = tonumber(mw.text.trim(datum_table[3] or ""))
local unit_price = tonumber(mw.text.trim(datum_table[4] or ""))
if num_limit ~= nil and unit_price ~= nil then
checkbox_str = frame:expandTemplate{title = "商店列表复选框", args = { token_name, num_limit * unit_price, ((datum_table[1] == '1') and "是" or "否")}}
end
local num_limit_str = (num_limit ~= nil) and num_limit .. "次" or mw.text.trim(datum_table[3] or "----")
local unit_price_str = (unit_price ~= nil) and tostring(unit_price) or mw.text.trim(datum_table[4] or "----")
table.insert(res_table, (color ~= "") and (string.format('|-style="background:%s"\n', color)) or ('|-\n'))
table.insert(res_table, string.format("|%s||%s||%s||%s%s\n", checkbox_str, name, num_limit_str, token_icon, unit_price_str))
end
local total_str = frame:callParserFunction{name = '#Widget:ShopItemTotalCost', args = {item = token_name}}
table.insert(res_table, '|-\n')
table.insert(res_table, string.format('| ||colspan="2"|勾选素材总计需要||%s%s\n', token_icon, total_str))
table.insert(res_table, '|}')
return table.concat(res_table)
end
return p