Module:IconUtils: Difference between revisions

From Eco - English Wiki
[checked revision][checked revision]
BuloBon (talk | contribs)
Undo revision 16002 by BuloBon (talk)
Tag: Undo
No edit summary
Line 8: Line 8:
     local IconSize = ''
     local IconSize = ''
     local IconLink = ''
     local IconLink = ''
    local IconBorder = ''
    local IconCount = ''


     local args = Utils.normalise(param)
     local args = Utils.normalise(param)
Line 13: Line 15:
     if args.id == nil or args.name == '' then return 'Module:IconUtils \'id\' must be specified.' end
     if args.id == nil or args.name == '' then return 'Module:IconUtils \'id\' must be specified.' end


     Icon = args.id .. '_Icon.png'
     local Icon = args.id .. '_Icon.png'


     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
Line 20: Line 22:
     if args.link == '1' then IconLink = '[[' .. args.name .. ']]' 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 IconLink == '' then IconTextLine = '  ' .. args.name IconTextBr = '<br>' .. args.name else IconTextLine = '  ' .. IconLink IconTextBr = '<br>' .. IconLink end
if args.count == nil or args.count == '' then IconCount = '1' else IconCount = args.count end


     if IconStyle == '1' then return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' end
     if IconStyle == '1' then return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' end
Line 25: Line 28:
     if IconStyle == '3' then return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextBr end
     if IconStyle == '3' then return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextBr end
     if IconStyle == '4' then return '<div class="IconFrame">[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextBr .. '</div>' end
     if IconStyle == '4' then return '<div class="IconFrame">[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextBr .. '</div>' end
    if IconStyle == '5' then return '<div class="recipe-item-icon">' .. IconCount .. '</div>' end
end
end


return p
return p

Revision as of 21:12, 23 February 2026


local p = {}

function p.main(param)
    local Utils = require('Module:Utils')

    local Icon = ''
    local IconStyle = ''
    local IconSize = ''
    local IconLink = ''
    local IconBorder = ''
    local IconCount = ''

    local args = Utils.normalise(param)

    if args.id == nil or args.name == '' then return 'Module:IconUtils \'id\' must be specified.' end

    local Icon = args.id .. '_Icon.png'

    if args.size == nil or args.size == '' then IconSize = 28 else IconSize = args.size end
    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 args.count == nil or args.count == '' then IconCount = '1' else IconCount = args.count 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
    if IconStyle == '4' then return '<div class="IconFrame">[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextBr .. '</div>' end
    if IconStyle == '5' then return '<div class="recipe-item-icon">' .. IconCount .. '</div>' end
end

return p