Module:Infobox Item: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 293: | Line 293: | ||
if onmain() then | |||
local a1 = ret:param('all') | |||
local a2 = ret:categoryData() | |||
ret:wikitext(addcategories(a1, a2)) | |||
end | |||
ret:finish() | ret:finish() | ||
Line 306: | Line 304: | ||
end | end | ||
function addcategories(args, catargs) | function addcategories(args, catargs) | ||
local ret = { 'Items' } | local ret = { 'Items' } | ||
Line 389: | Line 386: | ||
-- combine table and format category wikicode | -- combine table and format category wikicode | ||
for i, v in ipairs(ret) do | for i, v in ipairs(ret) do | ||
ret[i] = string.format('[[Category:%s]]', v) | |||
end | |||
return table.concat(ret, '') | return table.concat(ret, '') | ||
end | end | ||
return p | return p |
Revision as of 11:08, 1 April 2022
Documentation for this module may be created at Module:Infobox Item/doc
-------------------------- -- Module for [[Template:Infobox Item]] -- -- Todo: -- * Text on drop -- * Equipable -- * Automatic categories with semantic mediawiki -- ------------------------ local p = {} local infobox = require('Module:Experimental/Infobox') local onmain = require('Module:Mainonly').on_main local commas = require('Module:Addcommas')._add VariablesLua = mw.ext.VariablesLua function p.main(frame) local args = frame:getParent().args local ret = infobox.new(args) ret:defineParams{ --- General -- { name = 'name', func = 'name' }, { name = 'image', func = 'image' }, { name = 'release', func = 'release' }, { name = 'id', func = 'number' }, { name = 'description', func = 'has_content' }, { name = 'members', func = 'yes_no' }, { name = 'level', func = 'number' }, { name = 'cost', func = 'has_content' }, -- Todo: Unbuyable { name = 'sell', func = 'has_content' }, -- Todo: Unsellable -- Properties -- { name = 'tradable', func = 'yes_no' }, { name = 'quest', func = 'has_content' }, -- Market values -- { name = 'market_sp_limit', func = 'has_content' }, -- sell price { name = 'market_bp_limit', func = 'has_content' }, -- buy price -- Item type Properties -- { name = 'type', func = 'has_content' }, -- Item type -- Potion Params -- { name = 'potion_type', func = 'has_content' }, { name = 'potion_effect', func = 'has_content' }, -- Book Params -- { name = 'book_author', func = 'has_content' }, -- Armor Params -- { name = 'damage_blocked', func = 'has_content' }, -- Rune Params -- { name = 'rune_tp', func = 'has_content' }, -- Weapon Params -- { name = 'damage', func = 'has_content' }, } ret:setMaxButtons(7) ret:create() ret:cleanParams() ret:customButtonPlacement(true) ret:setDefaultVersionSMW(true) ret:defineLinks({ hide = true }) -- ret:useSMWOne({ -- members = 'All Is members only', -- id_smw = 'All Item ID', -- image_smw = 'All Image', -- }) -- ret:useSMWSubobject({ -- version = 'Version anchor', -- release = 'Release date', -- id_smw = 'Item ID', -- description = 'Description', -- members = 'Is members only', -- buyvalue = 'Buyable for', -- sellvalue = 'Sellable for', -- image_smw = 'Image', -- market_buy_limit = 'Buy limits', -- market_sell_limit = 'Sell limits', -- usesinfobox = 'Uses infobox', -- }) ret:addButtonsCaption() ret:defineName('Infobox Item') ret:addClass('infobox-item') ret:addRow{ { tag = 'argh', content = 'name', class = 'infobox-header', colspan = '20' } } :pad(20) :addRow{ { tag = 'argd', content = 'image', class = 'infobox-image infobox-full-width-content', colspan = '20' } } :addRow{ { tag = 'argd', content = 'description', class = 'infobox-desription infobox-full-width-content', colspan = '20' } } :pad(20) :addRow{ { tag = 'th', content = 'ID', colspan = '7' }, { tag = 'argd', content = 'id', colspan = '13' }, } :pad(20) :addRow{ { tag = 'th', content = 'Type', colspan = '7' }, { tag = 'argd', content = 'type', colspan = '13' }, } :pad(20) :addRow{ { tag = 'th', content = 'Released', colspan = '7' }, { tag = 'argd', content = 'release', colspan = '13' }, } :pad(20) :addRow{ { tag = 'th', content = '[[Members]]', colspan = '7' }, { tag = 'argd', content = 'members', colspan = '13' }, } :pad(20) :addRow{ { tag = 'th', content = 'Level', colspan = '7' }, { tag = 'argd', content = 'level', colspan = '13' }, } :pad(20) :addRow{ { tag = 'th', content = 'Buy Price', colspan = '7' }, { tag = 'argd', content = 'cost', colspan = '13' }, } :pad(20) :addRow{ { tag = 'th', content = 'Sell Price', colspan = '7' }, { tag = 'argd', content = 'sell', colspan = '13' }, } --[[ Add rows for properties ]] :pad(20) :addRow{ { tag = 'th', content = 'Properties', class = 'infobox-subheader', colspan = '20' }, } :pad(20) :addRow{ { tag = 'th', content = 'Tradable', colspan = '7' }, { tag = 'argd', content = 'tradable', colspan = '13' }, } :pad(20) :addRow{ { tag = 'th', content = '[[Quests|Quest]]', colspan = '7' }, { tag = 'argd', content = 'quest', colspan = '13' }, } --[[ Add rows for Market stuff ]] local hasMarketSPLimit = ret:paramDefined('market_sp_limit') local hasMarketBPLimit = ret:paramDefined('market_bp_limit') if hasMarketSPLimit or hasMarketBPLimit then ret:pad(20) :addRow{ { tag = 'th', content = 'Market Limits', class = 'infobox-subheader', colspan = '20' }, } if hasMarketSPLimit then ret:pad(20) :addRow{ { tag = 'th', content = 'Sell Price', colspan = '7' }, { tag = 'argd', content = 'market_sp_limit', colspan = '13' }, } end if hasMarketBPLimit then ret:pad(20) :addRow{ { tag = 'th', content = 'Buy Price', colspan = '7' }, { tag = 'argd', content = 'market_bp_limit', colspan = '13' }, } end end --[[ Add rows for potion stuff ]] local hasPotionType = ret:paramDefined('potion_type') local hasPotionEffect = ret:paramDefined('potion_effect') if hasPotionType or hasPotionEffect then ret:pad(20) :addRow{ { tag = 'th', content = 'Potion Info', class = 'infobox-subheader', colspan = '20' }, } if hasPotionType then ret:pad(20) :addRow{ { tag = 'th', content = 'Type', colspan = '7' }, { tag = 'argd', content = 'potion_type', colspan = '13' }, } end if hasPotionEffect then ret:pad(20) :addRow{ { tag = 'th', content = 'Effect', colspan = '7' }, { tag = 'argd', content = 'potion_effect', colspan = '13' }, } end end --[[ Add rows for armor stuff ]] if ret:paramDefined('damage_blocked') then ret:pad(20) :addRow{ { tag = 'th', content = 'Armor', class = 'infobox-subheader', colspan = '20' }, } :pad(20) :addRow{ { tag = 'th', content = 'Damage blocked', colspan = '7' }, { tag = 'argd', content = 'damage_blocked', colspan = '13' }, } end --[[ Add rows for book stuff ]] if ret:paramDefined('book_author') then ret:pad(20) :addRow{ { tag = 'th', content = 'Book', class = 'infobox-subheader', colspan = '20' }, } :pad(20) :addRow{ { tag = 'th', content = 'Author', colspan = '7' }, { tag = 'argd', content = 'book_author', colspan = '13' }, } end --[[ Add rows for rune stuff ]] if ret:paramDefined('rune_tp') then ret:pad(20) :addRow{ { tag = 'th', content = 'Rune', class = 'infobox-subheader', colspan = '20' }, } :pad(20) :addRow{ { tag = 'th', content = 'Teleports to', colspan = '7' }, { tag = 'argd', content = 'rune_tp', colspan = '13' }, } end --[[ Add rows for weapon stuff ]] if ret:paramDefined('damage') then ret:pad(20) :addRow{ { tag = 'th', content = 'Weapon', class = 'infobox-subheader', colspan = '20' }, } :pad(20) :addRow{ { tag = 'th', content = 'Damage', colspan = '7' }, { tag = 'argd', content = 'damage', colspan = '13' }, } end if onmain() then local a1 = ret:param('all') local a2 = ret:categoryData() ret:wikitext(addcategories(a1, a2)) end ret:finish() return ret:tostring() end function addcategories(args, catargs) local ret = { 'Items' } local cat_map = { -- Added if the parameter has content defined = { aka = 'Pages with AKA' }, -- Added if the parameter has no content notdefined = { image = 'Needs image', release = 'Needs release date', id = 'Needs ID', description = 'Needs description', members = 'Needs members status', level = 'Needs level', cost = 'Items missing cost', sell = 'Items missing sell', value = 'Items missing value', quest = 'Items missing quest', }, -- Parameters that have text -- map a category to a value matches = { members = { yes = 'Members\' items', no = 'Free-to-play items' }, rune_tp = { yes = 'Runes'}, tradeable = { yes = 'Tradeable items', no = 'Untradeable items' }, } } -- defined categories for n, v in pairs(cat_map.defined) do if catargs[n] and catargs[n].one_defined then table.insert(ret, v) end end -- undefined categories for n, v in pairs(cat_map.notdefined) do if catargs[n] and catargs[n].all_defined == false then table.insert(ret, v) end end -- searches for n, v in pairs(cat_map.matches) do for m, w in pairs(v) do if args[n] then if string.lower(tostring(args[n].d) or '') == m then table.insert(ret, w) end if args[n].switches then for _, x in ipairs(args[n].switches) do if string.lower(tostring(x)) == m then table.insert(ret, w) end end end end end end -- quest items -- just look for a link if args.quest.d:find('%[%[') then table.insert(ret, 'Quest items') elseif args.quest.switches then for _, v in ipairs(args.quest.switches) do if v:find('%[%[') then table.insert(ret, 'Quest items') break end end end -- ids if not catargs.id.all_defined then table.insert(ret, 'Needs ID') end -- combine table and format category wikicode for i, v in ipairs(ret) do ret[i] = string.format('[[Category:%s]]', v) end return table.concat(ret, '') end return p