Module:CDP Hierarchy Mermaid: Difference between revisions

From atwg
No edit summary
No edit summary
Line 43: Line 43:
s = s .. outcome_name .. '[' ..
s = s .. outcome_name .. '[' ..
p.label( { table.concat( v.printouts.Description ) } ) .. ']\n'
p.label( { table.concat( v.printouts.Description ) } ) .. ']\n'
-- s = s .. 'class ' .. outcome_name .. 'mermaid-outcome\n'
-- s = s .. 'class ' .. outcome_name .. ' mermaid-outcome\n'
s = s .. 'click ' .. outcome_name .. ' "' .. v.fullurl .. '"\n'
s = s .. 'click ' .. outcome_name .. ' "' .. v.fullurl .. '"\n'
s = s .. 'goal -->' .. outcome_name .. '\n'
s = s .. 'goal -->' .. outcome_name .. '\n'

Revision as of 20:59, 15 February 2018

Documentation for this module may be created at Module:CDP Hierarchy Mermaid/doc

local p = {}

function p.wrap( s, length )
	s = mw.text.trim( s )
	local oldindex = 1
	local index = string.find( s, ' ' )
	while ( index ) do
		if ( index - oldindex >= length ) then
			local temp = string.sub( s, 1, index - 1 ) .. '<BR/>' .. string.sub( s, index + 1 )
			s = temp
			oldindex = index + 4
		end
		index = string.find( s, ' ', index + 1)
	end
	return s
end

function p.wrapArray( a, length )
	s = ''
	for k,v in pairs( a ) do
		if #s > 0 then
			s = s .. '<BR/>'
		end
		s = s .. p.wrap( v, length )
	end
	return s
end

function p.label( a )
	return '"' .. p.wrapArray( a, 50 ) .. '"'
end

function p.buildGoalGraph( goal )
	local outcomes = mw.smw.getQueryResult( '[[Category:Outcomes]][[Archived::!true]]|?Description' )
    if outcomes == nil then
    	return ''
    end
	local s = 'graph TB\n'
	s = s .. 'goal[' .. p.label( {goal } ) .. ']\n'
	s = s .. 'class goal mermaid-goal\n'
	for k,v in pairs( outcomes.results ) do
		local outcome_name = string.gsub( v.fulltext, ':', '' )
		s = s .. outcome_name .. '[' ..
			 p.label( { table.concat( v.printouts.Description ) } ) .. ']\n'
--		s = s .. 'class ' .. outcome_name .. ' mermaid-outcome\n'
		s = s .. 'click ' .. outcome_name .. ' "' .. v.fullurl .. '"\n'
		s = s .. 'goal -->' .. outcome_name .. '\n'
	end
	return s
end


function p.buildOutcomeGraph( outcome )
	local outcomes = mw.smw.getQueryResult( '[[' .. outcome .. ']][[Archived::!true]]|?Description' )
    if outcomes == nil then
    	return ''
    end
	local outcome_name = string.gsub( outcome, ':', '' )
	local s = 'digraph ' .. outcome_name
	s = s .. ' {\n'
	s = s .. 'rankdir=LR;\n'
	s = s .. 'node [shape=box, fontsize=10, fontname="Arial bold"];\n'
	s = s .. 'edge [color=gray75];\n'
	s = s .. outcome_name .. ' [URL="[[' .. outcome .. ']]", label='
	local node = table.remove( outcomes.results )
	s = s .. p.label( { table.concat( node.printouts.Description ) } )
	s = s .. ', style=filled, color=black, fillcolor=aquamarine4, fontcolor=white'
	s = s .. '];\n'
	local outputs = mw.smw.getQueryResult(
		'[[Category:Outputs]][[Parent Outcome::' .. outcome .. ']]|?Description|?Primary Team|?Collaborating Team' )
	for k,v in pairs( outputs.results ) do
		local output_name = string.gsub( v.fulltext, ':', '' )
		local primary = table.concat( v.printouts['Primary Team'] )
		if #primary > 0 then
			primary = '<BR/>Primary Team: ' .. primary
		end
		local collaborating = table.concat( v.printouts['Collaborating Team'], ', ' )
		if #collaborating > 0 then
			collaborating = 'Collaborating Teams: ' .. collaborating
		end
		s = s .. output_name .. ' [URL="[[' .. v.fulltext .. ']]", label='
		s = s .. p.label( { table.concat( v.printouts.Description ),
			primary, collaborating } )
		s = s .. ', style=filled, color=black, fillcolor=grey50, fontcolor=white'
		s = s .. '];\n'
		s = s .. outcome_name .. '->' .. output_name .. '\n'
	end
	s = s .. '}\n'
	return s
end

function p.showGoal(frame)
	local s = p.buildGoalGraph( frame.args[1] )
	return frame:callParserFunction{ name = '#mermaid', args = { s } }
end

function p.showOutcome(frame)
	local s = p.buildOutcomeGraph( frame.args[1] )
	return frame:callParserFunction{ name = '#mermaid', args = { s } }
end

return p