Module:Param Parse: Difference between revisions

From Brighter Shores Wiki
Jump to navigation Jump to search
Content added Content deleted
No edit summary
mNo edit summary
Line 4: Line 4:
-- <nowiki>
-- <nowiki>


local param = {}
local parse = {}




-- Standardized "has content" function
-- Standardized "has content" function
function param.has_content(arg)
function parse.has_content(arg)
-- Return arg if any non-whitespace character is found
-- Return arg if any non-whitespace character is found
return string.match(arg or '', '%S') and arg or nil
return string.match(arg or '', '%S') and arg or nil
Line 15: Line 15:


-- Standardized image function
-- Standardized image function
function param.image(img)
function parse.image(img)
if img and img:find('%S') then
if img and img:find('%S') then
return img
return img
Line 21: Line 21:
return nil
return nil
end
end
function param.image_smw(img)
function parse.image_smw(img)
return string.match(img, "File:.-%.png")
return string.match(img, "File:.-%.png")
end
end
Line 27: Line 27:


-- Standardized numbers
-- Standardized numbers
function param.number(num)
function parse.number(num)
num = string.gsub(num or '',',','')
num = string.gsub(num or '',',','')
return tonumber(num)
return tonumber(num)
Line 35: Line 35:
-- Episode
-- Episode
local valid_episodes = {['Hopeport'] = 1, ['Hopeforest'] = 1, ['Mine of Mantuban'] = 1, ['Crenopolis'] = 1}
local valid_episodes = {['Hopeport'] = 1, ['Hopeforest'] = 1, ['Mine of Mantuban'] = 1, ['Crenopolis'] = 1}
function param.episode(episode)
function parse.episode(episode)
if valid_episodes[episode] then
if valid_episodes[episode] then
return '[[File:'..episode..' episode icon.png|18px]] [['..episode..']]'
return '[[File:'..episode..' episode icon.png|18px]] [['..episode..']]'
Line 41: Line 41:
return nil
return nil
end
end
function param.episode_smw(episode)
function parse.episode_smw(episode)
if valid_episodes[episode] then
if valid_episodes[episode] then
return episode
return episode
Line 48: Line 48:
end
end


return param
return parse


-- </nowiki>
-- </nowiki>

Revision as of 18:26, 26 March 2024

Module documentation
This documentation is transcluded from Module:Param Parse/doc. [edit] [history] [purge]

These params and functions are used to validate and format information passed into an Infobox. See Module:Infobox for details and instructions on creating an Infobox. If the information is missing or not valid, the functions here should return nil.

Here is a summary of all the params:

param explanation
parse.name Title
parse.examine Examine info
parse.image [[File:IMAGE.png]]. Use the class infobox-image in the table
parse.image_size300 [[File:IMAGE.png|300x300px]] by default unless overridden. Use the class infobox-image in the table
parse.episode Episode name
parse.premium Premium (Yes, No, N/A)
parse.release TODO
parse.profession TODO
parse.variant TODO - Which category the subject is a variant of

Here are some general use functions that can be used for custom or new params:

function name explanation
has_content(arg) Returns arg if any non-whitespace character is found in the string.
number(num) Removes any commas and parses the string as a number
yes_no(text) Only accepts "Yes", "No" and "N/A"
yes_no_smw(text) Maps "Yes", "No" to true and false respectively

Creating New Params

Ideally, params should be defined here so that they can be reused between different Infoboxes. Here is how to create a new param:

parse.paramname = {
	name = <param>,
    func = <func>,
    empty = 'empty', -- optional
    category_never = 'category', -- optional
    category_partial = 'category', -- optional
    category_incomplete = 'category', -- optional
    category_complete = 'category', -- optional
    smw_property = 'Property', -- optional
    smw_func = <func>, -- optional
}


key value
name parameter name as used in the Template
func A function in Module:Param Parse to validate and process the Template argument. You can also use a local function, but this is not recommended.

If func is a function, will call func(Infobox.raw_param(name)):

	{name = <param>, func = <func>, ... },

If func is a table, it takes the following parameters:

	{name = <param>, func = { name = <func>, params = <func_params>}, ... },
name function in Module:Param Parse
params a list of parameters to pass the the function, in the form of constants, or Infobox.raw_param(name), Infobox.param(name), Infobox.smw_param(name)
empty (optional) text to display in the infobox if func returns nil; defaults to "? (edit)"
category_never (optional) category to add if func returns nil for all versions
category_partial (optional) category to add if func returns nil for some versions, but a value for other versions
category_incomplete (optional) category to add if func returns nil for at least 1 version (i.e. category_never and category_partial combined)
category_complete (optional) category to add if func returns a value for all versions
smw_property (optional) if this string is defined, the parameter will be saved into SMW
smw_func (optional) function to validate and process the Template argument to save into SMW. func is used by default if smw_func is not defined

--[=[
-- Standardized functions to parse Infobox params
--]=]
-- <nowiki>

local parse = {}


-- Standardized "has content" function
function parse.has_content(arg)
	-- Return arg if any non-whitespace character is found
	return string.match(arg or '', '%S') and arg or nil
end


-- Standardized image function
function parse.image(img)
	if img and img:find('%S') then
		return img
	end
	return nil
end
function parse.image_smw(img)
	return string.match(img, "File:.-%.png")
end


-- Standardized numbers
function parse.number(num)
	num = string.gsub(num or '',',','')
	return tonumber(num)
end


-- Episode
local valid_episodes = {['Hopeport'] = 1, ['Hopeforest'] = 1, ['Mine of Mantuban'] = 1, ['Crenopolis'] = 1}
function parse.episode(episode)
	if valid_episodes[episode] then
		return '[[File:'..episode..' episode icon.png|18px]] [['..episode..']]'
	end
	return nil
end
function parse.episode_smw(episode)
	if valid_episodes[episode] then
		return episode
	end
	return nil
end

return parse

-- </nowiki>