Module:Necropolis packs: Difference between revisions

From Path of Exile Wiki
Jump to navigation Jump to search
(Created page with "require('Module:No globals') local m_util = require('Module:Util') local use_sandbox = m_util.misc.maybe_sandbox('Necropolis_packs') local m_data = use_sandbox and mw.loadData('Module:Necropolis_packs/data/sandbox') or mw.loadData('Module:Necropolis_packs/data') local m_lookup = use_sandbox and mw.loadData('Module:Necropolis_pack_lookup/data/sandbox') or mw.loadData('Module:Necropolis_pack_lookup/data') local function _expand_template(data) return mw.getCurrentFrame()...")
 
No edit summary
Line 20: Line 20:
if tpl_args.name then
if tpl_args.name then
local data = m_data[m_lookup[tpl_args.name].pack_id]
local data = m_data[m_lookup[tpl_args.name].pack_id]
return _expand_template(data)
return mw.getCurrentFrame():preprocess(_expand_template(data))
else
else
local all = ""
local all = ""
Line 26: Line 26:
all = all .. _expand_template(data)
all = all .. _expand_template(data)
end
end
return all
return mw.getCurrentFrame():preprocess(all)
end
end
end
end

Revision as of 07:20, 7 April 2024

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


Renders pack data for Template:Necropolis pack.

Usage

{{#invoke:Necropolis packs|function_name}}

require('Module:No globals')
local m_util = require('Module:Util')

local use_sandbox = m_util.misc.maybe_sandbox('Necropolis_packs')
local m_data = use_sandbox and mw.loadData('Module:Necropolis_packs/data/sandbox') or mw.loadData('Module:Necropolis_packs/data')
local m_lookup = use_sandbox and mw.loadData('Module:Necropolis_pack_lookup/data/sandbox') or mw.loadData('Module:Necropolis_pack_lookup/data')

local function _expand_template(data)
	return mw.getCurrentFrame():expandTemplate{
		title = use_sandbox and 'Template:Necropolis packs/display/sandbox' or 'Template:Necropolis packs/display',
		args = {
			name = data.name,
			description = data.description,
			leader = data.leader
		}
	}
end

local function _render_pack(tpl_args)
	if tpl_args.name then
		local data = m_data[m_lookup[tpl_args.name].pack_id]
		return mw.getCurrentFrame():preprocess(_expand_template(data))
	else
		local all = ""
		for _, data in pairs(m_data) do
			all = all .. _expand_template(data)
		end
		return mw.getCurrentFrame():preprocess(all)
	end
end

local p = {}

p.render_pack = _render_pack

return p