Module:ComponentFields: Difference between revisions

From Resonite Wiki
Created page with "-- test in console: -- =p.main(mw.getCurrentFrame():newChild{title="Template:Table ComponentFields",args={"FixTransformsEnabled", "Bool", "Clamps IK transforms to reasonable values and Resets IK every update."}}:newChild{title="Module:Test",args={}}) local p = {} function p.main(frame) local body = "" local templateFrame = frame:getParent() local i = 0 while true do local argI = i * 3 + 1 local name = templateFrame.args[argI] local type = templateFrame.arg..."
 
Trim newline from description
Line 20: Line 20:
break
break
end
end
description = mw.text.trim(description)


body = body.."|-\n"
body = body.."|-\n"

Revision as of 21:30, 27 February 2024

This module is used to implement the logic of Template:Table ComponentFields and Template:Table TypeFields. Don't use it anywhere else please thank.


-- test in console:
-- =p.main(mw.getCurrentFrame():newChild{title="Template:Table ComponentFields",args={"FixTransformsEnabled", "Bool", "Clamps IK transforms to reasonable values and Resets IK every update."}}:newChild{title="Module:Test",args={}})

local p = {}

function p.main(frame)
	local body = ""
	
	local templateFrame = frame:getParent()
	local i = 0

	while true do
		local argI = i * 3 + 1
		local name = templateFrame.args[argI]
		local type = templateFrame.args[argI + 1]
		local description = templateFrame.args[argI + 2]
		local typeString = templateFrame.args["TypeString"..i] or type

		if name == nil then
			break
		end

		description = mw.text.trim(description)

		body = body.."|-\n"
		body = body.."|<code>"..name.."</code>\n"
		body = body.."|'''[[Type:"..type.."|"..typeString.."]]'''\n"
		body = body.."|"..description.."\n"
		i = i + 1
	end
	
	return body
end

return p