Module:IconUtils: Difference between revisions

From Eco - English Wiki
[checked revision][checked revision]
No edit summary
No edit summary
 
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
local p = {}
local p = {}


function p.main(name,style,link,size,type)
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 IconStyle = ''
    local IconSize = ''
    local IconLink = ''


     local itemTable = itemData.items[name]
    local args = Utils.normaliseArgs(param)
     if itemTable == nil then
    if args.name == nil or args.name == '' then return '\'name\' must be specified.' end
        return name .. ' could not be found '
     local itemTable = itemData.items[args.name]
     end
     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


return Icon
    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 = '' else IconLink = '[[' .. args.link .. ']]' end 
    if args.link == '1' then IconLink = '[[' .. args.name .. ']]' end
    if IconLink == '' then IconTextLine = '  ' .. args.name IconTextBr = '<br>' .. args.name else IconTextLine = '  ' .. IconLink IconTextBr = '<br>' .. IconLink end
 
    if IconStyle == '1' then return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' end
    if IconStyle == '2' then return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextLine end
    if IconStyle == '3' then return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextBr end
end
end


return p
return p

Latest revision as of 14:02, 14 June 2024

Documentation for this module may be created at Module:IconUtils/doc

local p = {}

function p.main(param)
    local Utils = require('Module:Utils')
    local itemData = mw.loadData("Module:ItemData")
    local Icon = ''
    local IconStyle = ''
    local IconSize = ''
    local IconLink = ''

    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 = '' else IconLink = '[[' .. args.link .. ']]' end   
    if args.link == '1' then IconLink = '[[' .. args.name .. ']]' end
    if IconLink == '' then IconTextLine = '  ' .. args.name IconTextBr = '<br>' .. args.name else IconTextLine = '  ' .. IconLink IconTextBr = '<br>' .. IconLink end

    if IconStyle == '1' then return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' end
    if IconStyle == '2' then return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextLine end
    if IconStyle == '3' then return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextBr end
end

return p