Module:IconUtils: Difference between revisions
From Eco - English Wiki
[checked revision] | [checked revision] |
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
function p.main(param) | function p.main(param) | ||
local Utils = require('Module:Utils') | local Utils = require('Module:Utils') | ||
local itemData = mw.loadData("Module:ItemData") | local itemData = mw.loadData("Module:ItemData") | ||
local Icon = '' | local Icon = '' | ||
local args = Utils.normaliseArgs(param) | local args = Utils.normaliseArgs(param) | ||
Line 12: | Line 12: | ||
if args.size == nil or args.size == '' then IconSize = 28 else IconSize = args.size end | if args.size == nil or args.size == '' then IconSize = 28 else IconSize = args.size end | ||
local ItemEN = itemTable.untranslated | local ItemEN = itemTable.untranslated | ||
local IconName = string.gsub(ItemEN, ' ', '') .. 'Item' | local IconName = string.gsub(ItemEN, ' ', '') .. 'Item' | ||
Icon = Utils.checkImage(IconName) | Icon = Utils.checkImage(IconName) | ||
return '[[file:'.. Icon ..'|'.. IconSize ..'px|link=]]' | if args.style == nil or args.style == '' then IconStyle = 1 else IconStyle = args.style end | ||
if args.link == nil or args.link == '' then IconLink = '' end | |||
if args.link == '1' then IconLink = args.name end | |||
return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' | |||
end | end | ||
return p | return p |
Revision as of 10:27, 14 June 2024
local p = {}
function p.main(param)
local Utils = require('Module:Utils')
local itemData = mw.loadData("Module:ItemData")
local Icon = ''
local args = Utils.normaliseArgs(param)
if args.name == nil or args.name == '' then return '\'name\' must be specified.' end
local itemTable = itemData.items[args.name]
if itemTable == nil then return args.name .. ' could not be found ' end
if args.size == nil or args.size == '' then IconSize = 28 else IconSize = args.size end
local ItemEN = itemTable.untranslated
local IconName = string.gsub(ItemEN, ' ', '') .. 'Item'
Icon = Utils.checkImage(IconName)
if args.style == nil or args.style == '' then IconStyle = 1 else IconStyle = args.style end
if args.link == nil or args.link == '' then IconLink = '' end
if args.link == '1' then IconLink = args.name end
return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]'
end
return p