Module:Item link: Difference between revisions

From Path of Exile Wiki
Jump to navigation Jump to search
(Item query abstracted out to Module:Item util)
(Use invoker factory from Module:Util.)
Line 13: Line 13:


require('Module:No globals')
require('Module:No globals')
local getArgs = require('Module:Arguments').getArgs
local m_util = require('Module:Util')
local m_util = require('Module:Util')
local m_cargo = require('Module:Cargo')
local m_cargo = require('Module:Cargo')
Line 28: Line 27:


-- ----------------------------------------------------------------------------
-- ----------------------------------------------------------------------------
-- Exported functions
-- Main functions
-- ----------------------------------------------------------------------------
-- ----------------------------------------------------------------------------


local p = {}
local function _main(args)
 
--
-- Template:Item link
--
function p.item_link (frame)
     --[[
     --[[
     Creates a link to the item and displays the item info box on hover  
     Creates a link to the item and displays the item info box on hover  
Line 45: Line 39:
     = p.item_link{'Multistrike'}
     = p.item_link{'Multistrike'}
     = p.item_link{'Multistrike Support'}
     = p.item_link{'Multistrike Support'}
    --]]
      
      
     ]]
     args.item_name = args.item_name or args[1]
   
     args.name = args.name or args[2]
    -- Get arguments:
     args.large = m_util.cast.boolean(args.large)
    local tpl_args = getArgs(frame, {
        parentFirst = true,
        removeBlanks = false,
    })
    frame = m_util.misc.get_frame(frame)
   
    tpl_args.item_name = tpl_args.item_name or tpl_args[1]
     tpl_args.name = tpl_args.name or tpl_args[2]
     tpl_args.large = m_util.cast.boolean(tpl_args.large)
      
      
     local img
     local img
     local result
     local result
     if tpl_args.skip_query == nil then
     if args.skip_query == nil then
         tpl_args.fields = {
         args.fields = {
             'items.name=name',
             'items.name=name',
             'items.inventory_icon=inventory_icon',
             'items.inventory_icon=inventory_icon',
Line 70: Line 56:
             'items.size_y=size_y',
             'items.size_y=size_y',
         }
         }
         tpl_args.error_category = i18n.categories.broken_item_links
         args.error_category = i18n.categories.broken_item_links
         result = m_item_util.query_item(tpl_args)
         result = m_item_util.query_item(args)
         if result.error then
         if result.error then
             return result.error
             return result.error
Line 77: Line 63:
     else
     else
         result = {
         result = {
             ['_pageName'] = tpl_args.page or tpl_args.name
             ['_pageName'] = args.page or args.name
         }
         }
     end
     end
      
      
     for k, prop in pairs(cfg.parameters) do
     for k, prop in pairs(cfg.parameters) do
         if tpl_args[k] ~= nil then
         if args[k] ~= nil then
             result[prop] = tpl_args[k]
             result[prop] = args[k]
         end
         end
     end
     end
      
      
     if tpl_args.image ~= nil then
     if args.image ~= nil then
         if result['alternate_art_inventory_icons'] == nil then
         if result['alternate_art_inventory_icons'] == nil then
             return m_util.misc.raise_error_or_return{
             return m_util.misc.raise_error_or_return{
                 raise_required=true,  
                 raise_required = true,  
                 args=tpl_args,  
                 args = args,  
                 msg=string.format(
                 msg = string.format(
                     i18n.errors.alt_art_undefined,
                     i18n.errors.alt_art_undefined,
                     result['_pageName']
                     result['_pageName']
Line 104: Line 90:
         )
         )
          
          
         local index = tonumber(tpl_args.image)
         local index = tonumber(args.image)
         if index ~= nil then
         if index ~= nil then
             img = result['alternate_art_inventory_icons'][index]
             img = result['alternate_art_inventory_icons'][index]
Line 114: Line 100:
              
              
             for _, filename in ipairs(result['alternate_art_inventory_icons']) do
             for _, filename in ipairs(result['alternate_art_inventory_icons']) do
                 if string.sub(filename, prefix, -suffix) == tpl_args.image then
                 if string.sub(filename, prefix, -suffix) == args.image then
                     img = filename
                     img = filename
                     break
                     break
Line 123: Line 109:
         if img == nil then
         if img == nil then
             return m_util.misc.raise_error_or_return{
             return m_util.misc.raise_error_or_return{
                 raise_required=true,  
                 raise_required = true,  
                 args=tpl_args,  
                 args = args,  
                 msg=string.format(
                 msg = string.format(
                     i18n.errors.alt_art_invalid_index,
                     i18n.errors.alt_art_invalid_index,
                     tpl_args.image, result['_pageName']
                     args.image, result['_pageName']
                 ) .. m_util.misc.add_category({i18n.categories.broken_item_links})
                 ) .. m_util.misc.add_category({i18n.categories.broken_item_links})
             }
             }
Line 141: Line 127:
     -- Maps have their main page on the item name now, link there instead.
     -- Maps have their main page on the item name now, link there instead.
     -- Hopefully there are no maps with identical names besides the series.
     -- Hopefully there are no maps with identical names besides the series.
     local linked_page = tpl_args.link
     local linked_page = args.link
     if result['class_id'] == 'Map' and m_util.table.has_any_key(tpl_args, {'item_name', 'item_name_exact'}) then
     if result['class_id'] == 'Map' and m_util.table.has_any_key(args, {'item_name', 'item_name_exact'}) then
         linked_page = linked_page or tpl_args.item_name_exact or tpl_args.item_name
         linked_page = linked_page or args.item_name_exact or args.item_name
     else
     else
         linked_page = linked_page or result['_pageName']
         linked_page = linked_page or result['_pageName']
Line 151: Line 137:
     container:addClass('c-item-hoverbox')
     container:addClass('c-item-hoverbox')


     if tpl_args.large then
     if args.large then
         container:addClass('c-item-hoverbox--large')
         container:addClass('c-item-hoverbox--large')
     end
     end
Line 158: Line 144:
     activator:addClass('c-item-hoverbox__activator')
     activator:addClass('c-item-hoverbox__activator')


     if img and not tpl_args.large then
     if img and not args.large then
         activator:wikitext(string.format('[[%s|16x16px|link=|alt=]]', img))
         activator:wikitext(string.format('[[%s|16x16px|link=|alt=]]', img))
     end
     end
Line 182: Line 168:
     end
     end


     if img and tpl_args.large then
     if img and args.large then
         local width = tonumber(result['size_x']) or tonumber(tpl_args.width)
         local width = tonumber(result['size_x']) or tonumber(args.width)
         local height = tonumber(result['size_y']) or tonumber(tpl_args.height)
         local height = tonumber(result['size_y']) or tonumber(args.height)
         if width and height then
         if width and height then
             img = string.format(
             img = string.format(
Line 224: Line 210:
     return tostring(container)
     return tostring(container)
end
end
-- ----------------------------------------------------------------------------
-- Exported functions
-- ----------------------------------------------------------------------------
local p = {}
--
-- Template:Item link
--
p.main = m_util.misc.invoker_factory(_main, {
    parentFirst = true,
    removeBlanks = false,
})
p.item_link = p.main


return p
return p

Revision as of 18:57, 18 January 2022

Module documentation[view] [edit] [history] [purge]


This module is used on 45000+ pages.

To avoid major disruption and server load, do not make unnecessary edits to this module. Test changes to this module first using its /sandbox and /testcases subpages . All of the changes can then be applied to this module in a single edit.

Consider discussing changes on the talk page or on Discord before implementing them.

Lua logo

This module depends on the following other modules:

This module implements {{item link}} and facilitates the creation of item links. ru:Модуль:Item link de:Modul:Item link

-------------------------------------------------------------------------------
-- 
--                             Module:Item link
-- 
-- This module implements Template:Item link.
-- 
-- This is separate from the main item module for small speed ups. Those speed 
-- ups are only sigificant if the module is called a lot of times (100+), in 
-- tests this amounted to only a ~10% difference in page load times at best. It 
-- should be noted those tests are difficult because of the large variance in 
-- page load times.
-------------------------------------------------------------------------------

require('Module:No globals')
local m_util = require('Module:Util')
local m_cargo = require('Module:Cargo')
local m_item_util = require('Module:Item util')

-- Should we use the sandbox version of our submodules?
local use_sandbox = m_util.misc.maybe_sandbox('Item link')

-- The cfg table contains all localisable strings and configuration, to make it
-- easier to port this module to another wiki.
local cfg = use_sandbox and mw.loadData('Module:Item link/config/sandbox') or mw.loadData('Module:Item link/config')

local i18n = cfg.i18n

-- ----------------------------------------------------------------------------
-- Main functions
-- ----------------------------------------------------------------------------

local function _main(args)
    --[[
    Creates a link to the item and displays the item info box on hover 
    on the link.
    
    Examples
    --------
    = p.item_link{'Multistrike'}
    = p.item_link{'Multistrike Support'}
    --]]
    
    args.item_name = args.item_name or args[1]
    args.name = args.name or args[2]
    args.large = m_util.cast.boolean(args.large)
    
    local img
    local result
    if args.skip_query == nil then
        args.fields = {
            'items.name=name',
            'items.inventory_icon=inventory_icon',
            'items.html=html',
            'items.alternate_art_inventory_icons=alternate_art_inventory_icons',
            'items.size_x=size_x',
            'items.size_y=size_y',
        }
        args.error_category = i18n.categories.broken_item_links
        result = m_item_util.query_item(args)
        if result.error then
            return result.error
        end
    else
        result = {
            ['_pageName'] = args.page or args.name
        }
    end
    
    for k, prop in pairs(cfg.parameters) do
        if args[k] ~= nil then
            result[prop] = args[k]
        end
    end
    
    if args.image ~= nil then
        if result['alternate_art_inventory_icons'] == nil then
            return m_util.misc.raise_error_or_return{
                raise_required = true, 
                args = args, 
                msg = string.format(
                    i18n.errors.alt_art_undefined,
                    result['_pageName']
                ) .. m_util.misc.add_category({i18n.categories.broken_item_links})
            }
        end
        
        result['alternate_art_inventory_icons'] = m_util.string.split(
            result['alternate_art_inventory_icons'], 
            ',%s*'
        )
        
        local index = tonumber(args.image)
        if index ~= nil then
            img = result['alternate_art_inventory_icons'][index]
        else
            -- offset 1 is needed
            local suffix = string.len(' inventory icon.png') + 1 
            -- add an extra offset by 1 to account for the space 
            local prefix = string.len(string.sub(result['inventory_icon'], 1, -suffix)) + 2
            
            for _, filename in ipairs(result['alternate_art_inventory_icons']) do
                if string.sub(filename, prefix, -suffix) == args.image then
                    img = filename
                    break
                end
            end
        end
        
        if img == nil then
            return m_util.misc.raise_error_or_return{
                raise_required = true, 
                args = args, 
                msg = string.format(
                    i18n.errors.alt_art_invalid_index,
                    args.image, result['_pageName']
                ) .. m_util.misc.add_category({i18n.categories.broken_item_links})
            }
        end
    elseif result['inventory_icon'] ~= nil then
        img = result['inventory_icon']
    end
    
    --
    -- output
    --
    
    -- Maps have their main page on the item name now, link there instead.
    -- Hopefully there are no maps with identical names besides the series.
    local linked_page = args.link
    if result['class_id'] == 'Map' and m_util.table.has_any_key(args, {'item_name', 'item_name_exact'}) then
        linked_page = linked_page or args.item_name_exact or args.item_name
    else
        linked_page = linked_page or result['_pageName']
    end
    
    local container = mw.html.create('span')
    container:addClass('c-item-hoverbox')

    if args.large then
        container:addClass('c-item-hoverbox--large')
    end
    
    local activator = mw.html.create('span')
    activator:addClass('c-item-hoverbox__activator')

    if img and not args.large then
        activator:wikitext(string.format('[[%s|16x16px|link=|alt=]]', img))
    end
    
    if #result['name'] > 0 then
        activator:wikitext(string.format(
            '[[%s|%s]]', 
            linked_page, 
            result['name'] or result['_pageName']
            )
        )
    end
    
    local display = mw.html.create('span')
    display:attr('class', 'c-item-hoverbox__display')

    if result['html'] ~= nil then
        display:wikitext(result['html'])
            
        if img then
            display:wikitext(string.format('[[%s|link=|alt=]]', img))
        end
    end

    if img and args.large then
        local width = tonumber(result['size_x']) or tonumber(args.width)
        local height = tonumber(result['size_y']) or tonumber(args.height)
        if width and height then
            img = string.format(
                '[[%s|%sx%spx|link=%s|alt=]]', 
                img, 
                width*cfg.image_size, 
                height*cfg.image_size, 
                linked_page
            )
        elseif width then
            img = string.format(
                '[[%s|%spx|link=%s|alt=]]', 
                img, 
                width*cfg.image_size, 
                linked_page
            )
        elseif height then
            img = string.format(
                '[[%s|x%spx|link=%s|alt=]]', 
                img, 
                height*cfg.image_size, 
                linked_page
            )
        else
            img = string.format(
                '[[%s|link=%s|alt=]]', 
                img, 
                linked_page
            )
        end
        activator:wikitext(img)
    end

    container
        :node(activator)
        :node(display)
        :done()
        
    return tostring(container)
end

-- ----------------------------------------------------------------------------
-- Exported functions
-- ----------------------------------------------------------------------------

local p = {}

-- 
-- Template:Item link
-- 
p.main = m_util.misc.invoker_factory(_main, {
    parentFirst = true,
    removeBlanks = false,
})

p.item_link = p.main

return p