Path of Exile Wiki

Wiki поддерживается сообществом, поэтому подумайте над тем, чтобы внести свой вклад.

ПОДРОБНЕЕ

Path of Exile Wiki
Нет описания правки
Magiczocker (обсуждение | вклад)
мНет описания правки
 
(не показаны 2 промежуточные версии 2 участников)
Строка 4: Строка 4:
 
--
 
--
 
-- This module implements Template: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 getArgs = require('Module:Arguments').getArgs
 
local m_util = require('Module:Util')
 
local m_util = require('Module:Util')
local m_item_util = require('Module:Item util')
+
local m_cargo = require('Module:Cargo')
 
-- 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
 
-- The cfg table contains all localisable strings and configuration, to make it
 
-- easier to port this module to another wiki.
 
-- 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 cfg = mw.loadData('Module:Item link/config')
   
 
local i18n = cfg.i18n
 
local i18n = cfg.i18n
   
 
-- ----------------------------------------------------------------------------
 
-- ----------------------------------------------------------------------------
-- Main functions
+
-- Exported functions
 
-- ----------------------------------------------------------------------------
 
-- ----------------------------------------------------------------------------
   
local function _main(args)
+
local p = {}
  +
 
--
 
-- 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
Строка 32: Строка 40:
 
= 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]
  +
  +
if m_util.table.has_all_value(tpl_args, cfg.selectors) and tpl_args.skip_query == nil then
  +
error(i18n.errors.invalid_args)
  +
end
  +
 
tpl_args.large = m_util.cast.boolean(tpl_args.large)
 
 
 
local img
 
local img
 
local result
 
local result
  +
if args.skip_query == nil then
 
  +
if m_util.table.has_one_value(tpl_args, cfg.selectors, nil) and tpl_args.skip_query == nil then
args.fields = {
 
'items.name=name',
+
local tables = {'items'}
 
local query = {
'items.inventory_icon=inventory_icon',
 
'items.html=html',
+
groupBy='items._pageID',
'items.alternate_art_inventory_icons=alternate_art_inventory_icons',
 
'items.size_x=size_x',
 
'items.size_y=size_y',
 
 
}
 
}
  +
if tpl_args.metadata_id then
args.error_category = i18n.categories.broken_item_links
 
result = m_item_util.query_item(args)
+
query.where = string.format(
if result.error then
+
'items.metadata_id="%s"',
return result.error
+
tpl_args.metadata_id
  +
)
  +
elseif tpl_args.page then
  +
-- TODO returns the result even if the + format is specified.
  +
query.where = string.format(
  +
'items._pageName="%s"',
  +
tpl_args.page
  +
)
  +
elseif tpl_args.item_name_exact then
  +
query.where = string.format(
  +
'items.name = "%s" AND items._pageNamespace = %i',
  +
m_cargo.addslashes(tpl_args.item_name_exact),
  +
cfg.primary_namespace
  +
)
  +
else
  +
-- explicitly join a copy of the list child's table to the parent
  +
-- instead of using HOLDS; we have to add one table & a join condition here
  +
tables[#tables+1] = 'items__name_list'
  +
query.where = string.format(
  +
'items__name_list._value="%s" AND items._pageNamespace = %i',
  +
m_cargo.addslashes(tpl_args.item_name),
  +
cfg.primary_namespace
  +
)
  +
query.join = 'items._ID = items__name_list._rowID'
 
end
 
end
  +
if tpl_args.link_type == 'skill' then
  +
query.where = string.format(
  +
'%s AND (items.class = "Active Skill Gems" OR items.class = "Support Skill Gems")',
  +
query.where
  +
)
  +
end
  +
  +
result = m_cargo.query(
  +
tables,
  +
{
  +
'items._pageName',
  +
'items.name',
 
'items.inventory_icon',
  +
'items.html',
 
'items.alternate_art_inventory_icons',
 
'items.size_x',
 
'items.size_y',
  +
'items.drop_enabled',
  +
'items.class_id',
  +
},
  +
query
  +
)
  +
  +
local err
 
local j = 1
  +
if #result == 0 then
  +
err = m_util.misc.raise_error_or_return{
  +
raise_required=true,
  +
args=tpl_args,
  +
msg=string.format(
  +
i18n.errors.no_results,
  +
tpl_args.page or tpl_args.item_name or tpl_args.item_name_exact
  +
)
  +
}
  +
elseif #result > 1 then
  +
-- If only one of the results is drop enabled then use that one:
  +
local n = 0
  +
for i,v in ipairs(result) do
  +
if m_util.cast.boolean(v['items.drop_enabled']) then
  +
j = i
  +
n = n+1
  +
end
  +
end
  +
  +
if n ~= 1 then
  +
err = m_util.misc.raise_error_or_return{
  +
raise_required=true,
  +
args=tpl_args,
  +
msg=string.format(
  +
i18n.errors.too_many_results,
  +
tpl_args.page or tpl_args.item_name or tpl_args.item_name_exact
  +
)
  +
}
  +
end
  +
end
  +
 
if err ~= nil then
 
return err .. m_util.misc.add_category({i18n.categories.broken_item_links})
  +
end
  +
  +
result = result[j]
 
else
 
else
 
result = {
 
result = {
['_pageName'] = args.page or args.name
+
['items._pageName'] = tpl_args.page or tpl_args.name
 
}
 
}
 
end
 
end
 
 
 
for k, prop in pairs(cfg.parameters) do
 
for k, prop in pairs(cfg.parameters) do
if args[k] ~= nil then
+
if tpl_args[k] ~= nil then
result[prop] = args[k]
+
result[prop] = tpl_args[k]
 
end
 
end
 
end
 
end
 
 
if args.image ~= nil then
+
if tpl_args.image ~= nil then
if result['alternate_art_inventory_icons'] == nil then
+
if result['items.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 = args,
+
args=tpl_args,
msg = string.format(
+
msg=string.format(
 
i18n.errors.alt_art_undefined,
 
i18n.errors.alt_art_undefined,
result['_pageName']
+
result['items._pageName']
 
) .. m_util.misc.add_category({i18n.categories.broken_item_links})
 
) .. m_util.misc.add_category({i18n.categories.broken_item_links})
 
}
 
}
 
end
 
end
 
 
result['alternate_art_inventory_icons'] = m_util.string.split(
+
result['items.alternate_art_inventory_icons'] = m_util.string.split(
result['alternate_art_inventory_icons'],
+
result['items.alternate_art_inventory_icons'],
 
',%s*'
 
',%s*'
 
)
 
)
 
 
local index = tonumber(args.image)
+
local index = tonumber(tpl_args.image)
 
if index ~= nil then
 
if index ~= nil then
img = result['alternate_art_inventory_icons'][index]
+
img = result['items.alternate_art_inventory_icons'][index]
 
else
 
else
 
-- offset 1 is needed
 
-- offset 1 is needed
 
local suffix = string.len(' inventory icon.png') + 1
 
local suffix = string.len(' inventory icon.png') + 1
 
-- add an extra offset by 1 to account for the space
 
-- add an extra offset by 1 to account for the space
local prefix = string.len(string.sub(result['inventory_icon'], 1, -suffix)) + 2
+
local prefix = string.len(string.sub(result['items.inventory_icon'], 1, -suffix)) + 2
 
 
for _, filename in ipairs(result['alternate_art_inventory_icons']) do
+
for _, filename in ipairs(result['items.alternate_art_inventory_icons']) do
if string.sub(filename, prefix, -suffix) == args.image then
+
if string.sub(filename, prefix, -suffix) == tpl_args.image then
 
img = filename
 
img = filename
 
break
 
break
Строка 102: Строка 204:
 
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 = args,
+
args=tpl_args,
msg = string.format(
+
msg=string.format(
 
i18n.errors.alt_art_invalid_index,
 
i18n.errors.alt_art_invalid_index,
args.image, result['_pageName']
+
tpl_args.image, result['items._pageName']
 
) .. m_util.misc.add_category({i18n.categories.broken_item_links})
 
) .. m_util.misc.add_category({i18n.categories.broken_item_links})
 
}
 
}
 
end
 
end
elseif result['inventory_icon'] ~= nil then
+
elseif result['items.inventory_icon'] ~= nil then
img = result['inventory_icon']
+
img = result['items.inventory_icon']
 
end
 
end
 
 
Строка 120: Строка 222:
 
-- 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 = args.link
+
local linked_page
if result['class_id'] == 'Map' and m_util.table.has_any_key(args, {'item_name', 'item_name_exact'}) then
+
if result['items.class_id'] == 'Map' and tpl_args.page == nil then
linked_page = linked_page or args.item_name_exact or args.item_name
+
linked_page = tpl_args.link or tpl_args.item_name
 
else
 
else
linked_page = linked_page or result['_pageName']
+
linked_page = tpl_args.link or result['items._pageName']
 
end
 
end
 
 
Строка 130: Строка 232:
 
container:addClass('c-item-hoverbox')
 
container:addClass('c-item-hoverbox')
   
if args.large then
+
if tpl_args.large then
 
container:addClass('c-item-hoverbox--large')
 
container:addClass('c-item-hoverbox--large')
 
end
 
end
Строка 137: Строка 239:
 
activator:addClass('c-item-hoverbox__activator')
 
activator:addClass('c-item-hoverbox__activator')
   
if img and not args.large then
+
if img and not tpl_args.large then
 
activator:wikitext(string.format('[[%s|16x16px|link=|alt=]]', img))
 
activator:wikitext(string.format('[[%s|16x16px|link=|alt=]]', img))
 
end
 
end
 
 
if #result['name'] > 0 then
+
if #(result['items.name'] or "") > 0 then
 
activator:wikitext(string.format(
 
activator:wikitext(string.format(
 
'[[%s|%s]]',
 
'[[%s|%s]]',
 
linked_page,
 
linked_page,
result['name'] or result['_pageName']
+
result['items.name'] or result['items._pageName']
 
)
 
)
 
)
 
)
Строка 153: Строка 255:
 
display:attr('class', 'c-item-hoverbox__display')
 
display:attr('class', 'c-item-hoverbox__display')
   
if result['html'] ~= nil then
+
if result['items.html'] ~= nil then
display:wikitext(result['html'])
+
display:wikitext(result['items.html'])
 
 
 
if img then
 
if img then
Строка 161: Строка 263:
 
end
 
end
   
if img and args.large then
+
if img and tpl_args.large then
local width = tonumber(result['size_x']) or tonumber(args.width)
+
local width = tonumber(result['items.size_x']) or tonumber(tpl_args.width)
local height = tonumber(result['size_y']) or tonumber(args.height)
+
local height = tonumber(result['items.size_y']) or tonumber(tpl_args.height)
 
if width and height then
 
if width and height then
 
img = string.format(
 
img = string.format(
Строка 203: Строка 305:
 
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

Текущая версия от 16:34, 6 сентября 2023

Template info icon Документация модуля[просмотр] [править] [история] [очистить]

Модуль предоставляет функциональные возможности для ссылок на предметы.

Описание

Этот модуль отвечает за {{Item link}} (({{Il}}), которые создают ссылки на предметы с помощью cargo через Модуль:Item2.

Шаблоны Item

Модуль:Item2

Все шаблоны, определенные в Модуль:Item2:

Модуль:Item table

Все шаблоны, определенные в Модуль:Item table:

Модуль:Item link

Все шаблоны, определенные в Модуль:Item link:

Модуль:Item acquisition

-------------------------------------------------------------------------------
-- 
--                             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.
-------------------------------------------------------------------------------

local getArgs = require('Module:Arguments').getArgs
local m_util = require('Module:Util')
local m_cargo = require('Module:Cargo')

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

local i18n = cfg.i18n

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

local p = {}

--
-- Template:Item link
--
function p.item_link (frame)
    --[[
    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'}
    
    ]]
    
    -- Get arguments:
    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]
    
    if m_util.table.has_all_value(tpl_args, cfg.selectors) and tpl_args.skip_query == nil then
        error(i18n.errors.invalid_args)
    end
    
    tpl_args.large = m_util.cast.boolean(tpl_args.large)
    
    local img
    local result
    
    if m_util.table.has_one_value(tpl_args, cfg.selectors, nil) and tpl_args.skip_query == nil then
        local tables = {'items'}
        local query = {
            groupBy='items._pageID',
        }
        if tpl_args.metadata_id then
            query.where = string.format(
                'items.metadata_id="%s"', 
                tpl_args.metadata_id
            )
        elseif tpl_args.page then
            -- TODO returns the result even if the + format is specified.
            query.where = string.format(
                'items._pageName="%s"', 
                tpl_args.page
            )
        elseif tpl_args.item_name_exact then
            query.where = string.format(
                'items.name = "%s" AND items._pageNamespace = %i', 
                m_cargo.addslashes(tpl_args.item_name_exact),
                cfg.primary_namespace
            )
        else
            -- explicitly join a copy of the list child's table to the parent
            -- instead of using HOLDS; we have to add one table & a join condition here
            tables[#tables+1] = 'items__name_list'
            query.where = string.format(
                'items__name_list._value="%s" AND items._pageNamespace = %i', 
                m_cargo.addslashes(tpl_args.item_name),
                cfg.primary_namespace
            )
            query.join = 'items._ID = items__name_list._rowID'
        end
        if tpl_args.link_type == 'skill' then
            query.where = string.format(
                '%s AND (items.class = "Active Skill Gems" OR items.class = "Support Skill Gems")', 
                query.where
            )
        end
        
        result = m_cargo.query(
            tables,
            {
                'items._pageName',
                'items.name',
                'items.inventory_icon',
                'items.html',
                'items.alternate_art_inventory_icons',
                'items.size_x',
                'items.size_y',
                'items.drop_enabled',
                'items.class_id',
            },
            query
        )
        
        local err
        local j = 1
        if #result == 0 then
            err = m_util.misc.raise_error_or_return{
                raise_required=true, 
                args=tpl_args, 
                msg=string.format(
                    i18n.errors.no_results, 
                    tpl_args.page or tpl_args.item_name or tpl_args.item_name_exact 
                )
            }
        elseif #result > 1 then
            -- If only one of the results is drop enabled then use that one:
            local n = 0
            for i,v in ipairs(result) do 
                if m_util.cast.boolean(v['items.drop_enabled']) then
                    j = i
                    n = n+1
                end
            end
            
            if n ~= 1 then 
                err = m_util.misc.raise_error_or_return{
                    raise_required=true, 
                    args=tpl_args, 
                    msg=string.format(
                        i18n.errors.too_many_results,
                        tpl_args.page or tpl_args.item_name or tpl_args.item_name_exact
                    )
                }
            end 
        end
        
        if err ~= nil then
            return err .. m_util.misc.add_category({i18n.categories.broken_item_links})
        end
        
        result = result[j]
    else
        result = {
            ['items._pageName'] = tpl_args.page or tpl_args.name
        }
    end
    
    for k, prop in pairs(cfg.parameters) do
        if tpl_args[k] ~= nil then
            result[prop] = tpl_args[k]
        end
    end
    
    if tpl_args.image ~= nil then
        if result['items.alternate_art_inventory_icons'] == nil then
            return m_util.misc.raise_error_or_return{
                raise_required=true, 
                args=tpl_args, 
                msg=string.format(
                    i18n.errors.alt_art_undefined,
                    result['items._pageName']
                ) .. m_util.misc.add_category({i18n.categories.broken_item_links})
            }
        end
        
        result['items.alternate_art_inventory_icons'] = m_util.string.split(
            result['items.alternate_art_inventory_icons'], 
            ',%s*'
        )
        
        local index = tonumber(tpl_args.image)
        if index ~= nil then
            img = result['items.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['items.inventory_icon'], 1, -suffix)) + 2
            
            for _, filename in ipairs(result['items.alternate_art_inventory_icons']) do
                if string.sub(filename, prefix, -suffix) == tpl_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=tpl_args, 
                msg=string.format(
                    i18n.errors.alt_art_invalid_index,
                    tpl_args.image, result['items._pageName']
                ) .. m_util.misc.add_category({i18n.categories.broken_item_links})
            }
        end
    elseif result['items.inventory_icon'] ~= nil then
        img = result['items.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
    if result['items.class_id'] == 'Map' and tpl_args.page == nil then 
        linked_page = tpl_args.link or tpl_args.item_name
    else
        linked_page = tpl_args.link or result['items._pageName']
    end
    
    local container = mw.html.create('span')
    container:addClass('c-item-hoverbox')

    if tpl_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 tpl_args.large then
        activator:wikitext(string.format('[[%s|16x16px|link=|alt=]]', img))
    end
    
    if #(result['items.name'] or "") > 0 then
        activator:wikitext(string.format(
            '[[%s|%s]]', 
            linked_page, 
            result['items.name'] or result['items._pageName']
            )
        )
    end
    
    local display = mw.html.create('span')
    display:attr('class', 'c-item-hoverbox__display')

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

    if img and tpl_args.large then
        local width = tonumber(result['items.size_x']) or tonumber(tpl_args.width)
        local height = tonumber(result['items.size_y']) or tonumber(tpl_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

return p