« Module:IconUtils » : différence entre les versions

De Eco - Wiki Français
Aller à :navigation, rechercher
[version vérifiée][version vérifiée]
Aucun résumé des modifications
Aucun résumé des modifications
 
(8 versions intermédiaires par le même utilisateur non affichées)
Ligne 3 : Ligne 3 :
function p.main(param)
function p.main(param)
     local Utils = require('Module:Utils')
     local Utils = require('Module:Utils')
    local ItemData = require('Module:ItemData') or {}
    local args = Utils.normalise(param)


     if not args.id or args.id == '' then
     local Icon = ''
        return "Module:IconUtils 'id' must be specified."
    local IconStyle = ''
     end
    local IconSize = ''
     local IconLink = ''
    local IconBorder = ''
    local IconCount = ''


     local Icon = args.id .. "_Icon.png"
     local args = Utils.normalise(param)
    local IconSize = args.size and args.size ~= '' and args.size or 28
    local IconStyle = args.style and args.style ~= '' and args.style or '1'
 
    -- ==========================
    -- Récupération nom auto
    -- ==========================
    local name = args.name
    local link = args.link
    local defaultLang = "French"
 
    if not name or name == '' or not link or link == '' then
        for _, item in pairs(ItemData) do
            if type(item) == "table" and item.ID == args.id and item.Name then
                local fr = item.Name[defaultLang]
                local en = item.Name['English']
 
                if (not name or name == '') then
                    if fr and fr ~= '' then
                        name = fr
                    elseif en and en ~= '' then
                        name = en
                    else
                        name = args.id
                    end
                end


                if (not link or link == '') then
    if args.id == nil or args.name == '' then return 'Module:IconUtils \'id\' must be specified.' end
                    if fr and fr ~= '' then
                        link = fr
                    elseif en and en ~= '' then
                        link = en
                    else
                        link = args.id
                    end
                end
            end
        end
    end


     if not name or name == '' then name = args.id end
     local Icon = args.id .. '_Icon.png'
    if not link or link == '' then link = name end


     -- Construit le lien final
     if args.size == nil or args.size == '' then IconSize = 28 else IconSize = args.size end
     local IconLink = '[[' .. link .. ']]'
    if args.style == nil or args.style == '' then IconStyle = '1' else IconStyle = args.style end
     local IconTextLine = '  ' .. IconLink
     if args.link == nil or args.link == '' then IconLink = '' else IconLink = '[[' .. args.link .. ']]' end 
    local IconTextBr   = '<br>' .. IconLink
     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 args.border == nil or args.border == '' then IconBorder = ' borderwhite' else IconBorder = ' border' .. args.border end


     if IconStyle == '1' then
     if IconStyle == '1' then return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' end
        return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]'
     if IconStyle == '2' then return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextLine end
     elseif IconStyle == '2' then
     if IconStyle == '3' then return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextBr end
        return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextLine
     if IconStyle == '4' then return '<div class="IconFrame">[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextBr .. '</div>' end
     elseif IconStyle == '3' then
     if IconStyle == '5' then return '<div class="recipeitem withcount' .. IconBorder .. '" style="font-size:' .. IconSize .. 'px">' .. '<div class="recipeitemicon">[[file:'.. Icon ..'|'.. IconSize ..'px|link=]]</div><span class="recipeitemcount">' .. IconCount .. '</span>' .. '[[' .. args.link .. '|<div class="recipeitemlink" title="' .. args.link .. '"></div>]]</div>' end
        return '[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextBr
    if IconStyle == '6' then return '<div class="recipeitem' .. IconBorder .. '" style="font-size:' .. IconSize .. 'px">' .. '<div class="recipeitemicon">[[file:'.. Icon ..'|'.. IconSize ..'px|link=]]</div>[[' .. args.link .. '|<div class="recipeitemlink" title="' .. args.link .. '"></div>]]</div>' end
     elseif IconStyle == '4' then
        return '<div class="IconFrame">[[file:'.. Icon ..'|'.. IconSize ..'px|link='.. IconLink ..']]' .. IconTextBr .. '</div>'
     end
end
end


return p
return p

Dernière version du 25 février 2026 à 21:53

La documentation pour ce module peut être créée à Module:IconUtils/doc

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 args.border == nil or args.border == '' then IconBorder = ' borderwhite' else IconBorder = ' border' .. args.border 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="recipeitem withcount' .. IconBorder .. '" style="font-size:' .. IconSize .. 'px">' .. '<div class="recipeitemicon">[[file:'.. Icon ..'|'.. IconSize ..'px|link=]]</div><span class="recipeitemcount">' .. IconCount .. '</span>' .. '[[' .. args.link .. '|<div class="recipeitemlink" title="' .. args.link .. '"></div>]]</div>' end
    if IconStyle == '6' then return '<div class="recipeitem' .. IconBorder .. '" style="font-size:' .. IconSize .. 'px">' .. '<div class="recipeitemicon">[[file:'.. Icon ..'|'.. IconSize ..'px|link=]]</div>[[' .. args.link .. '|<div class="recipeitemlink" title="' .. args.link .. '"></div>]]</div>' end
end

return p