Jump to content

Module:T-Process: Difference between revisions

// via Wikitext Extension for VSCode
// via Wikitext Extension for VSCode
Line 9: Line 9:
local ConfigRepository = require('Module:ConfigRepository')
local ConfigRepository = require('Module:ConfigRepository')
local LinkParser = require('Module:LinkParser')
local LinkParser = require('Module:LinkParser')
local TemplateHelpers = require('Module:TemplateHelpers')
 
local SemanticAnnotations = require('Module:SemanticAnnotations')
-- Blueprint default: Module-level cache for lazy-loaded modules
local SemanticCategoryHelpers = require('Module:SemanticCategoryHelpers')
local moduleCache = {}
 
-- Blueprint default: Lazy module loader
local function lazyRequire(moduleName)
    return function()
        if not moduleCache[moduleName] then
            moduleCache[moduleName] = require(moduleName)
        end
        return moduleCache[moduleName]
    end
end
 
-- Blueprint default: Modules to lazy load
    -- local getTemplateHelpers = lazyRequire('')


-- ========== Helper Functions ==========
-- ========== Helper Functions ==========
-- Create error context for the module
-- Blueprint default: Create error context for the module
local errorContext = ErrorHandling.createContext("T-Process")
local errorContext = ErrorHandling.createContext("T-Process")


Line 23: Line 36:
local template = Blueprint.registerTemplate('Process', {
local template = Blueprint.registerTemplate('Process', {
     features = {
     features = {
        -- Core rendering features
         title = true,
         title = true,
         logo = true,
         logo = true,
         fields = true,
         fields = true,
         socialMedia = true,
         socialMedia = true,
       
        -- Semantic features
         semanticProperties = true,
         semanticProperties = true,
         categories = true,
         categories = true,
       
        -- Error handling
         errorReporting = true
         errorReporting = true
     }
     }
Line 44: Line 52:


-- ========== Preprocessors ==========
-- ========== Preprocessors ==========
-- Basic preprocessors
-- Standard preprocessors
Blueprint.addPreprocessor(template, 'setPageIdField')
Blueprint.addPreprocessor(template, 'setPageIdField')
Blueprint.addPreprocessor(template, 'deriveRegionFromCountry')
Blueprint.addPreprocessor(template, 'deriveRegionFromCountry')


-- Add a preprocessor to sanitize args for semantic properties
-- Helper function to extract plain text from wiki links for semantic properties
-- This follows the same pattern as the Event template
local TemplateHelpers = require('Module:TemplateHelpers')
local function extractSemanticValue(fieldValue, fieldName)
    return TemplateHelpers.extractSemanticValue(fieldValue, fieldName, errorContext)
end
 
-- Preprocessor for semantic property extraction
Blueprint.addPreprocessor(template, function(template, args)
Blueprint.addPreprocessor(template, function(template, args)
     -- Create a sanitized version of args for semantic properties
     -- Extract plain text from wiki links for has_previous and has_next
    args._sanitizedArgs = {}
     args._semanticPrecededBy = extractSemanticValue(args.has_previous, "Preceded By")
   
     args._semanticSucceededBy = extractSemanticValue(args.has_next, "Succeeded By")
    -- Copy and sanitize all values
    for k, v in pairs(args) do
        if type(v) == "string" and v ~= "" then
            args._sanitizedArgs[k] = TemplateHelpers.sanitizeUserInput(v)
        else
            args._sanitizedArgs[k] = v
        end
    end
   
    -- Add special handling for has_previous and has_next
     if args.has_previous and args.has_previous ~= "" then
        -- Extract the page name from wiki links if present
        args._sanitizedArgs.has_previous_process = TemplateHelpers.extractSemanticValue(
            args.has_previous, "Preceded By", errorContext)
     end
   
    if args.has_next and args.has_next ~= "" then
        -- Extract the page name from wiki links if present
        args._sanitizedArgs.has_next_process = TemplateHelpers.extractSemanticValue(
            args.has_next, "Succeeded By", errorContext)
    end
      
      
     return args
     return args
end)
end)


-- Override the semanticProperties block to use our sanitized args
-- Configure semantic properties to use extracted values
-- This is similar to how the Event template handles semantic properties
template.config.semantics = template.config.semantics or {}
Blueprint.registerPropertyProvider(template, function(template, args)
template.config.semantics.properties = template.config.semantics.properties or {}
    -- Get the sanitized args
template.config.semantics.properties["Has process connection"] = "_semanticPrecededBy"
    local sanitizedArgs = args._sanitizedArgs or args
template.config.semantics.properties["Has process connection"] = "_semanticSucceededBy"
   
    -- Get the config
    local Config = template.config
   
    -- Set basic properties using the transformation functions from Config
    local properties = {}
    local semanticOutput = ""
   
    -- Use the standard SemanticAnnotations module
    local propertiesSuccess, propertiesResult = pcall(function()
        return SemanticAnnotations.setSemanticProperties(
            sanitizedArgs,
            Config.semantics.properties,
            {transform = Config.semantics.transforms}
        )
    end)
   
    if propertiesSuccess then
        semanticOutput = propertiesResult
    else
        -- Log error but continue
        semanticOutput = "<!-- Error setting semantic properties -->"
    end
   
    -- Handle special case for has_previous and has_next
    if sanitizedArgs.has_previous_process and sanitizedArgs.has_previous_process ~= "" then
        -- Add as a separate property
        local processConnectionProperty = require('Module:ConfigRepository').semanticProperties.process_connection
        semanticOutput = semanticOutput .. '\n<div style="display:none;">\n'
        semanticOutput = semanticOutput .. '  {{#set: ' .. processConnectionProperty .. '=' .. sanitizedArgs.has_previous_process .. ' }}\n'
        semanticOutput = semanticOutput .. '</div>'
    end
   
    if sanitizedArgs.has_next_process and sanitizedArgs.has_next_process ~= "" then
        -- Add as a separate property
        local processConnectionProperty = require('Module:ConfigRepository').semanticProperties.process_connection
        semanticOutput = semanticOutput .. '\n<div style="display:none;">\n'
        semanticOutput = semanticOutput .. '  {{#set: ' .. processConnectionProperty .. '=' .. sanitizedArgs.has_next_process .. ' }}\n'
        semanticOutput = semanticOutput .. '</div>'
    end
   
    -- Return empty properties but with semantic output
    return properties, semanticOutput
end)


-- ========== Main Render Function ==========
-- ========== Main Render Function ==========

Revision as of 18:08, 26 April 2025

Documentation for this module may be created at Module:T-Process/doc

--Module:T-Process
-- Renders the "Process" template for governance processes and initiatives, making use of ICANNWiki's "Template Blueprint Framework"

local p = {}

-- ========== Required modules ==========
local Blueprint = require('Module:LuaTemplateBlueprint')
local ErrorHandling = require('Module:ErrorHandling')
local ConfigRepository = require('Module:ConfigRepository')
local LinkParser = require('Module:LinkParser')

-- Blueprint default: Module-level cache for lazy-loaded modules
local moduleCache = {}

-- Blueprint default: Lazy module loader
local function lazyRequire(moduleName)
    return function()
        if not moduleCache[moduleName] then
            moduleCache[moduleName] = require(moduleName)
        end
        return moduleCache[moduleName]
    end
end

-- Blueprint default: Modules to lazy load
    -- local getTemplateHelpers = lazyRequire('')

-- ========== Helper Functions ==========
-- Blueprint default: Create error context for the module
local errorContext = ErrorHandling.createContext("T-Process")

-- ================================================================================

-- IMPORTANT! TEMPLATE BLUEPRINT FRAMEWORK INSTRUCTIONS
-- CONTROL OF TEMPLATE FEATURES: THIS LIST SPECIFIES IN AN EXPLICIT MANNER WHAT FEATURES ARE TO BE CALLED/RENDERED BY THE TEMPLATE.
local template = Blueprint.registerTemplate('Process', {
    features = {
        title = true,
        logo = true,
        fields = true,
        socialMedia = true,
        semanticProperties = true,
        categories = true,
        errorReporting = true
    }
})

-- Initialize the standard configuration
Blueprint.initializeConfig(template)

-- ================================================================================

-- ========== Preprocessors ==========
-- Standard preprocessors
Blueprint.addPreprocessor(template, 'setPageIdField')
Blueprint.addPreprocessor(template, 'deriveRegionFromCountry')

-- Helper function to extract plain text from wiki links for semantic properties
local TemplateHelpers = require('Module:TemplateHelpers')
local function extractSemanticValue(fieldValue, fieldName)
    return TemplateHelpers.extractSemanticValue(fieldValue, fieldName, errorContext)
end

-- Preprocessor for semantic property extraction
Blueprint.addPreprocessor(template, function(template, args)
    -- Extract plain text from wiki links for has_previous and has_next
    args._semanticPrecededBy = extractSemanticValue(args.has_previous, "Preceded By")
    args._semanticSucceededBy = extractSemanticValue(args.has_next, "Succeeded By")
    
    return args
end)

-- Configure semantic properties to use extracted values
template.config.semantics = template.config.semantics or {}
template.config.semantics.properties = template.config.semantics.properties or {}
template.config.semantics.properties["Has process connection"] = "_semanticPrecededBy"
template.config.semantics.properties["Has process connection"] = "_semanticSucceededBy"

-- ========== Main Render Function ==========
-- Main render function which delegates to the template's render method
function p.render(frame)
    return ErrorHandling.protect(
        errorContext,
        "render",
        function()
            return template.render(frame)
        end,
        ErrorHandling.getMessage("TEMPLATE_RENDER_ERROR"),
        frame
    )
end

return p