Модуль:Предмет: различия между версиями

Материал из Space Station 14 Вики
мНет описания правки
мНет описания правки
Строка 16: Строка 16:


     local prefix = args[2] or ""
     local prefix = args[2] or ""
    local label = args["label"] or itemName
     local size = args["size"] or "32px"
     local size = args["size"] or "32px"


Строка 35: Строка 34:
     local image
     local image
     if input_image == nil then
     if input_image == nil then
         image = ""
         image = string.format("[[Файл:%s.png|%s]]", id, size)
     else
     else
if input_image == "" then
if input_image == "" then
             image = string.format("[[Файл:%s.png|%s]]", id, size)
             image = ""
         else
         else
             image = string.format("[[Файл:%s|%s]]", input_image, size)
             image = string.format("[[Файл:%s|%s]]", input_image, size)
Строка 59: Строка 58:


     -- Сбор информации в зависимости от наличия репозитория
     -- Сбор информации в зависимости от наличия репозитория
     local additionalInfo = args["repository"]
     local input_repository = argsWithWhitespace.repository
     if additionalInfo == nil then
    local repository
         additionalInfo = itemStack .. " " .. labelOutput .. " " .. itemContained .. " " .. itemSlot .. " " .. itemChem
     if input_repository == nil then
         repository = prefix .. " " .. labelOutput
     else
     else
        additionalInfo = prefix .. " " .. labelOutput
repository = itemStack .. " " .. labelOutput .. " " .. itemContained .. " " .. itemSlot .. " " .. itemChem
     end
     end


     local result = image .. " " .. additionalInfo
     local result = image .. " " .. repository


     -- Формирование вывода через LinkCard, если указан непустой обёртка
     -- Формирование вывода через LinkCard, если указан непустой обёртка
Строка 72: Строка 72:
         local pixel = string.match(size, "(%d+)")
         local pixel = string.match(size, "(%d+)")
         local wrapperInfo
         local wrapperInfo
         if args["repository"] then
         if input_repository == nil then
            wrapperInfo = label .. prefix
        else
             wrapperInfo = label .. itemStack .. " " .. itemContained .. " " .. itemSlot .. " " .. itemChem
             wrapperInfo = label .. itemStack .. " " .. itemContained .. " " .. itemSlot .. " " .. itemChem
        else
            wrapperInfo = label .. prefix
         end
         end



Версия от 07:36, 4 апреля 2025

Для документации этого модуля может быть создана страница Модуль:Предмет/doc

local p = {}
local getArgs = require('Module:Arguments').getArgs

function p.main(frame)
    local args = getArgs(frame)
    local argsWithWhitespace = getArgs(frame, { trim = false, removeBlanks = false })
    
    local id = args[1] or ""

    -- Инициализация данных предмета
    local itemStack = frame:preprocess(string.format('{{#invoke:Prototypes/Хранилище/Предмет|main|framing|stack|%s}}', id))
    local itemContained = frame:preprocess(string.format('{{#invoke:Prototypes/Хранилище/Предмет|main|framing|contained|%s}}', id))
    local itemSlot = frame:preprocess(string.format('{{#invoke:Prototypes/Хранилище/Предмет|main|framing|slot|%s}}', id))
    local itemChem = frame:preprocess(string.format('{{СollapsibleMenu|color=#3e7c82|{{#invoke:Prototypes/Хранилище/Предмет|main|chem|%s}}}}', id))
    local itemName = frame:preprocess("{{#invoke:Entity Lookup|getname|" .. id .. "}}")

    local prefix = args[2] or ""
    local size = args["size"] or "32px"

    local input_label = argsWithWhitespace.label or argsWithWhitespace.l
    local label
    if input_label == nil then
        label = itemName
    else
		if input_label == "" then
            label = ""
        else
            label = input_label
        end
    end

    -- Формирование строки изображения с проверкой на пустое значение
    local input_image = argsWithWhitespace.image or argsWithWhitespace.img
    local image
    if input_image == nil then
        image = string.format("[[Файл:%s.png|%s]]", id, size)
    else
		if input_image == "" then
            image = ""
        else
            image = string.format("[[Файл:%s|%s]]", input_image, size)
        end
    end

    -- Формирование ярлыка с ссылкой, если задана
    local labelOutput = label
    if args["link"] then
        local linkTarget = args["link"]
        if linkTarget == "" then
            linkTarget = itemName
        end
        if label ~= "" then
            labelOutput = string.format("[[%s|%s]]", linkTarget, label)
        else
            labelOutput = ""
        end
    end

    -- Сбор информации в зависимости от наличия репозитория
    local input_repository = argsWithWhitespace.repository
    local repository
    if input_repository == nil then
        repository = prefix .. " " .. labelOutput
    else
		repository = itemStack .. " " .. labelOutput .. " " .. itemContained .. " " .. itemSlot .. " " .. itemChem
    end

    local result = image .. " " .. repository

    -- Формирование вывода через LinkCard, если указан непустой обёртка
    if args["wrapper"] and args["wrapper"] ~= "" then
        local pixel = string.match(size, "(%d+)")
        local wrapperInfo
        if input_repository == nil then
            wrapperInfo = label .. prefix
        else
            wrapperInfo = label .. itemStack .. " " .. itemContained .. " " .. itemSlot .. " " .. itemChem
        end

        local imageParam
        if args["image"] then
            if args["image"] == "" then
                imageParam = ""
            else
                imageParam = args["image"]
            end
        else
            imageParam = id .. ".png"
        end

        local linkParam = args["link"]
        if not linkParam or linkParam == "" then
            linkParam = itemName
        end

        return frame:preprocess(string.format("{{LinkCard|name=%s|image=%s|pixel=%s|link=%s|SideStyle=1}}", wrapperInfo, imageParam, pixel, linkParam))
    end

    return frame:preprocess("<span>" .. result .. "</span>")
end

return p