更改

添加445字节 、 2021年3月24日 (三) 11:58
无编辑摘要
第1行: 第1行: −
p = {}
+
local SMWUtils = require("Module:SMWUtils")
 +
local ListUtils = require("Module:ListUtils")
 +
local p = {}
   −
function _table_to_keys(tb)
+
function _merge_keys(a, b)
 
     local res = {}
 
     local res = {}
     for i, k in ipairs(tb) do
+
     for k, _ in pairs(a) do
 
         res[k] = true
 
         res[k] = true
 
     end
 
     end
    return res
+
     for k, _ in pairs(b) do
end
+
        res[k] = true
 
  −
function _merge_keys(...)
  −
    local res = {}
  −
     for m in ipairs{...} do
  −
        for k, _ in ipairs(m) do
  −
            res[k] = true
  −
        end
   
     end
 
     end
 
     return res
 
     return res
 
end
 
end
   −
function _keys_to_table(set)
  −
    local res = {}
  −
    for k, v in ipairs(set) do
  −
        table.insert(set, k)
  −
    end
  −
    return res
  −
end
     −
function p.query_inherited_property(anchor_property, query_property, parent_list)
+
function p.query_inherited_property(query_property, parent_list)
 
     local results = {}
 
     local results = {}
 
     for idx, parent in ipairs(parent_list) do
 
     for idx, parent in ipairs(parent_list) do
         local anchor_query = "[["..anchor_property.."::"..parent.."]]"
+
         local anchor_query = "[["..parent.."]]"
 
         local property_query = "[[" .. query_property .. "::+]]"
 
         local property_query = "[[" .. query_property .. "::+]]"
        local content_query = "?"..query_property
+
         local query = anchor_query .. property_query
         local query = anchor_query .. property_query .. "|" ..content_query .. "|format=plainlist"
+
         local res = SMWUtils.query_page_properties(query, {query_property})
         local res = mw.smw.getQueryResult(query)
+
         for j, r in ipairs(res) do
         for j, r in ipairs(res.results) do
+
             results[r.properties[query_property]] = true
             for k, t in ipairs(r.printouts[query_property]) do
  −
                results[t] = true
  −
            end
   
         end
 
         end
 
     end
 
     end
 
     return results
 
     return results
 
end
 
end
 +
 +
function p.query_by_reference(name, query_property)
 +
    local query = "[["..query_property.."::"..name.."]]"
 +
    return ListUtils.list_to_set(SMWUtils.query_pages(query))
 +
end
 +
    
function _create_list(root, title, list)
 
function _create_list(root, title, list)
第50行: 第41行:  
     for k, v in ipairs(list) do
 
     for k, v in ipairs(list) do
 
         ul:tag("li"):wikitext("[["..v.."]]")
 
         ul:tag("li"):wikitext("[["..v.."]]")
 +
    end
 +
end
 +
 +
 +
function _split_or_empty(value)
 +
    if value and #value > 0 then
 +
        return mw.text.split(value, ",")
 +
    else
 +
        return {}
 
     end
 
     end
 
end
 
end
第55行: 第55行:  
function p.inherited_lists(frame)
 
function p.inherited_lists(frame)
 
     local name = frame.args.name
 
     local name = frame.args.name
     local parents = mw.text.split(frame.args.parents, ",")
+
     local parents = _split_or_empty(frame.args.parents)
 +
    local parent_property = frame.args.parent_property
 
     local parent_title = frame.args.parent_title
 
     local parent_title = frame.args.parent_title
    local anchor_property = frame.args.anchor_property
   
     local properties = mw.text.split(frame.args.properties, ",")
 
     local properties = mw.text.split(frame.args.properties, ",")
 +
    local children_title = frame.args.children_title
    
     local root = mw.html.create("div")
 
     local root = mw.html.create("div")
    
     _create_list(root, parent_title, parents)
 
     _create_list(root, parent_title, parents)
     mw.smw.set({[anchor_property]=name})
+
     for i, parent in ipairs(parents) do
 +
        mw.smw.set({[parent_property]=parent})
 +
    end
    
     for i, prop in ipairs(properties) do
 
     for i, prop in ipairs(properties) do
 
         local title = frame.args[prop.."_title"]
 
         local title = frame.args[prop.."_title"]
         local values_str = frame.args[prop.."_values"]
+
         local values = _split_or_empty(frame.args[prop.."_values"])
         local values = (values_str and #values_str > 0) and mw.text.split(values_str) or {}
+
         local reversed = frame.args[prop.."_reversed"]
         local values_set = _table_to_keys(values)
+
         local values_set = ListUtils.list_to_set(values)
         local inherited_values = p.query_inherited_property(anchor_property, prop, parents)
+
         local inherited_values = p.query_inherited_property(prop, parents)
 
         local final_values = _merge_keys(values_set, inherited_values)
 
         local final_values = _merge_keys(values_set, inherited_values)
         local final_list = _keys_to_table(final_values)
+
         if reversed then
         mw.logObject(final_list)
+
            local reversed_values = p.query_by_reference(name, reversed)
 +
            final_values = _merge_keys(final_values, reversed_values)
 +
         end
 +
 
 +
        local final_list = ListUtils.set_to_list(final_values)
 
         _create_list(root, title, final_list)
 
         _create_list(root, title, final_list)
 
         for i, k in ipairs(final_list) do
 
         for i, k in ipairs(final_list) do
 
             mw.smw.set({[prop]=k})
 
             mw.smw.set({[prop]=k})
 
         end
 
         end
 +
    end
 +
 +
    if children_title then
 +
        local children = p.query_by_reference(name, parent_property)
 +
        local children_list = ListUtils.set_to_list(children)
 +
        _create_list(root, children_title, children_list)
 
     end
 
     end