Difference between revisions of "Module:Icon"

From Foundation - Wiki
Jump to navigation Jump to search
Line 17: Line 17:


local function _requirements(resource, value, link, text)
local function _requirements(resource, value, link, text)
resource = trim(resource)
resource = string.lower(trim(resource))
mw.log(resource)
if iconList[resource] ~= nil then
mw.log(iconList[resource])
if iconList[string.lower(resource)] ~= nil then
result = '[[file:' .. iconList[resource]['file'] .. '|16px|link='
result = '[[file:' .. iconList[resource]['file'] .. '|16px|link='
if link ~= nil and link ~= '' then
if link ~= nil and link ~= '' then
Line 50: Line 48:


function p.requirements(frame)
function p.requirements(frame)
r = string.lower(frame.args['resource'])
r = frame.args['resource']
v = frame.args['value']
v = frame.args['value']
l = frame.args['link']
l = frame.args['link']

Revision as of 16:24, 23 October 2021

Documentation for this module may be created at Module:Icon/doc

--<nowiki>
local p = {}

require('Module:Icon/data')

local function trim(object)
	if string.sub(object, 1, 1) == ' ' then 
		object = string.sub(object, 2)
	end
	
	if string.sub(object, string.len(object)) == ' ' then
		object = string.sub(object, 1, string.len(object) - 1)
	end
	
	return object
end

local function _requirements(resource, value, link, text)
	resource = string.lower(trim(resource))
	if iconList[resource] ~= nil then
		result = '[[file:' .. iconList[resource]['file'] .. '|16px|link='
		if link ~= nil and link ~= '' then
			result = result .. link
		else
			result = result .. iconList[resource]['link']
		end
		result = result .. ']]'
		if text ~= '' and text ~= nil then
			if string.lower(text) ~= 'no' then
				result = result ..	'[['
				if link ~= nil and link ~= '' then
					result = result .. link
				else
					result = result .. iconList[resource]['link']
				end
				result = result .. ']]'
			end
		end
		if value ~= nil and value ~= '' then
			result = result .. ' (' .. value .. ')'
		end
	else
		result = 'Icon does not exist[[Category:Missing Icon]]'
	end
	
	return result
end

function p.requirements(frame)
	r = frame.args['resource']
	v = frame.args['value']
	l = frame.args['link']
	t = frame.args[1]
	return _requirements(r, v, l, t)
end

function p.iconList(frame)
	mw.log('Begin List')
	list = mw.text.split(frame.args[1], ';')
	result = ''
	for k, v in ipairs(list) do
		vs = mw.text.split(v, '-')
		result = result .. _requirements(vs[1], vs[2], nil, frame.args['text'])
		if k ~= table.getn(list) then
			result = result .. '<br />'
		end
	end
	mw.log('End List')
	return result
end

function p.documentation()
	keys = {}
    for z in pairs(iconList) do
        table.insert(keys, z)
    end
 
    table.sort(keys)
	dataTable = {[1] = '', [2] = '', [3] = ''}
	header = '\n{| class="wikitable"\n'
		.. '! Code !! Icon !! Link\n'
		.. '\n|-\n'
	footer = '|}'
	i = 1 
	while i < 4 do
		dataTable[i] = header
		i = i + 1
	end
	i = 1
	for k, v in ipairs(keys) do 
		dataTable[i] = dataTable[i] 
		.. '| ' .. v
		.. ' || ' .. _requirements(v, '', '', '') 
		.. ' || ' ..  iconList[v]['link']
		.. '\n|-\n'
		if i == 3 then 
			i = 1
		else
			i = i + 1
		end
		mw.log(k)
	end
	
	i = 1
	while i < 4 do
		dataTable[i] = dataTable[i] .. footer
		i = i + 1
	end
	
	result = mw.html.create('div')
	result:css('display', 'grid')
		:css('grid-template-columns', '1fr 1fr 1fr')
		:wikitext(dataTable[1] .. dataTable[2] .. dataTable[3] .. '\n')
	return result
end

return p