Content deleted Content added
Alistair3149 (talk | contribs) Sync with upstream |
Alistair3149 (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
require( 'strict' ) |
require( 'strict' ) |
||
require( 'Module:Mw.html extension' ) |
require( 'Module:Mw.html extension' ); |
||
local ItemPorts = {} |
local ItemPorts = {} |
||
Line 12: | Line 12: | ||
local config = mw.loadJsonData( MODULE_NAME .. '/config.json' ) |
local config = mw.loadJsonData( MODULE_NAME .. '/config.json' ) |
||
local i18n = require( 'Module:i18n' ):new() |
|||
local TNT = require( 'Module:Translate' ):new() |
local TNT = require( 'Module:Translate' ):new() |
||
--- Wrapper function for Module:i18n.translate |
|||
--- |
|||
--- @param key string The translation key |
|||
--- @return string If the key was not found, the key is returned |
|||
local function t( key ) |
|||
return i18n:translate( key ) |
|||
end |
|||
Line 21: | Line 31: | ||
--- @return string If the key was not found in the .tab page, the key is returned |
--- @return string If the key was not found in the .tab page, the key is returned |
||
local function translate( key, addSuffix, ... ) |
local function translate( key, addSuffix, ... ) |
||
return TNT:translate( MODULE_NAME .. '/i18n.json', config, key, addSuffix, {...} ) or key |
|||
end |
end |
||
Line 32: | Line 42: | ||
local ignores = config.blocklist_itemport_name or {} |
local ignores = config.blocklist_itemport_name or {} |
||
local itemPortName = |
local itemPortName = t( 'SMW_ItemPortName' ) |
||
local query = { |
local query = { |
||
mw.ustring.format( '?%s#-=name', itemPortName ), |
mw.ustring.format( '?%s#-=name', itemPortName ), |
||
mw.ustring.format( '?%s#-=display_name', |
mw.ustring.format( '?%s#-=display_name', t( 'SMW_ItemPortDisplayName' ) ), |
||
mw.ustring.format( '?%s#-=min_size', |
mw.ustring.format( '?%s#-=min_size', t( 'SMW_ItemPortMinimumSize' ) ), |
||
mw.ustring.format( '?%s#-=max_size', |
mw.ustring.format( '?%s#-=max_size', t( 'SMW_ItemPortMaximumSize' ) ), |
||
mw.ustring.format( '?%s#-=equipped_name', |
mw.ustring.format( '?%s#-=equipped_name', t( 'SMW_EquippedItemName' ) ), |
||
mw.ustring.format( '?%s#-=equipped_uuid', |
mw.ustring.format( '?%s#-=equipped_uuid', t( 'SMW_EquippedItemUUID' ) ), |
||
mw.ustring.format( 'sort=%s', itemPortName ), |
mw.ustring.format( 'sort=%s', itemPortName ), |
||
'order=asc', |
'order=asc', |
||
Line 50: | Line 60: | ||
) ) |
) ) |
||
for _, portName in ipairs( |
for _, portName in ipairs(ignores) do |
||
table.insert( query, 2, mw.ustring.format( |
table.insert( query, 2, mw.ustring.format( |
||
'[[%s::!' .. portName .. ']]', |
'[[%s::!' .. portName .. ']]', |
||
itemPortName |
itemPortName |
||
) |
)) |
||
end |
end |
||
Line 65: | Line 75: | ||
function methodtable.getSmwData( self, page ) |
function methodtable.getSmwData( self, page ) |
||
--mw.logObject( self.smwData, 'cachedSmwData' ) |
--mw.logObject( self.smwData, 'cachedSmwData' ) |
||
-- Cache multiple calls |
|||
if self.smwData ~= nil then |
if self.smwData ~= nil then |
||
return self.smwData |
return self.smwData |
||
end |
end |
||
local smwData = mw.smw.ask( makeSmwQueryObject( page ) ) |
|||
if smwData == nil or smwData[ 1 ] == nil then |
if smwData == nil or smwData[ 1 ] == nil then |
||
Line 76: | Line 86: | ||
end |
end |
||
--mw.logObject( smwData, 'getSmwData' ) |
|||
self.smwData = smwData |
self.smwData = smwData |
||
return self.smwData |
return self.smwData |
||
end |
end |
||
--- Generates wikitext needed for the template |
--- Generates wikitext needed for the template |
||
--- @return string |
--- @return string |
||
function methodtable.out( self ) |
function methodtable.out( self ) |
||
local smwData = self:getSmwData( self.page ) |
|||
if smwData == nil then |
|||
local msg = mw.ustring.format( translate( 'error_no_itemports_found' ), self.page ) |
local msg = mw.ustring.format( translate( 'error_no_itemports_found' ), self.page ) |
||
return require( 'Module:Hatnote' )._hatnote( msg, { icon = 'WikimediaUI-Error.svg' } ) |
|||
end |
|||
local containerHtml = mw.html.create( 'div' ):addClass( 'template-itemPorts' ) |
local containerHtml = mw.html.create( 'div' ):addClass( 'template-itemPorts' ) |
||
for _, port in ipairs( smwData ) do |
|||
local size_text, title, subtitle |
|||
-- Use display_name if it is different, so that we use the same key as the game localization |
-- Use display_name if it is different, so that we use the same key as the game localization |
||
Line 104: | Line 115: | ||
end |
end |
||
if port.min_size == port.max_size then |
|||
size_text = mw.ustring.format( 'S%d', port.min_size ) |
|||
else |
|||
size_text = mw.ustring.format( 'S%d–%d', port.min_size, port.max_size ) |
|||
end |
|||
if port.equipped_name ~= nil then |
|||
if port.equipped_name == '<= PLACEHOLDER =>' then |
if port.equipped_name == '<= PLACEHOLDER =>' then |
||
-- TODO: Display more specific name by getting the type of the item |
-- TODO: Display more specific name by getting the type of the item |
||
title = translate( 'item_placeholder' ) |
title = translate( 'item_placeholder' ) |
||
else |
else |
||
title = mw.ustring.format( '[[%s]]', port.equipped_name ) |
|||
end |
end |
||
else |
|||
title = translate( 'msg_no_item_equipped' ) |
|||
end |
|||
local portHtml = mw.html.create( 'div' ):addClass( 'template-itemPort' ) |
|||
portHtml:tag( 'div' ) |
|||
:addClass( 'template-itemPort-port' ) |
:addClass( 'template-itemPort-port' ) |
||
:tag( 'div' ) |
|||
:addClass( 'template-itemPort-size' ) |
:addClass( 'template-itemPort-size' ) |
||
:wikitext( size_text ) |
:wikitext( size_text ) |
||
portHtml:tag( 'div' ) |
|||
:addClass( 'template-itemPort-item' ) |
:addClass( 'template-itemPort-item' ) |
||
:addClassIf( port.equipped_name, 'template-itemPort-item--hasItem' ) |
:addClassIf( port.equipped_name, 'template-itemPort-item--hasItem' ) |
||
:tag( 'div' ) |
|||
:addClass( 'template-itemPort-subtitle' ) |
:addClass( 'template-itemPort-subtitle' ) |
||
:wikitext( subtitle ) |
:wikitext( subtitle ) |
||
:done() |
:done() |
||
:tag( 'div' ) |
|||
:addClass( 'template-itemPort-title' ) |
:addClass( 'template-itemPort-title' ) |
||
:wikitext( title ) |
:wikitext( title ) |
||
containerHtml:node( portHtml ) |
containerHtml:node( portHtml ) |
||
end |
|||
return tostring( containerHtml ) .. mw.getCurrentFrame():extensionTag{ |
|||
name = 'templatestyles', args = { src = MODULE_NAME .. '/styles.css' } |
name = 'templatestyles', args = { src = MODULE_NAME .. '/styles.css' } |
||
} |
} |
||
end |
end |
||
--- New Instance |
--- New Instance |
||
Line 158: | Line 170: | ||
return instance |
return instance |
||
end |
end |
||
--- Parser call for generating the table |
--- Parser call for generating the table |
||
Line 169: | Line 182: | ||
return out |
return out |
||
end |
end |
||
--- For debugging use |
--- For debugging use |
Revision as of 22:07, 8 May 2024
This documentation is transcluded from Module:ItemPorts/doc. Changes can be proposed in the talk page.
Module:ItemPorts is shared across the Star Citizen Wikis.
This module is shared across the Star Citizen Wikis. Any changes should also be relayed to the GitHub repository.
Module:ItemPorts loads configuration from Module:ItemPorts/config.json.
This module can be configurated from the config.json subpage.
Module:ItemPorts loads messages from Module:ItemPorts/i18n.json.
This module is designed to be language-neutral. All of the messages are saved in the i18n.json subpage.
This module is unused.
This module is neither invoked by a template nor required/loaded by another module. If this is in error, make sure to add
{{Documentation}}
/{{No documentation}}
to the calling template's or parent's module documentation.Module:ItemPorts requires 6 modules.
Function list |
---|
require( 'strict' )
require( 'Module:Mw.html extension' );
local ItemPorts = {}
local metatable = {}
local methodtable = {}
metatable.__index = methodtable
local MODULE_NAME = 'Module:ItemPorts'
local config = mw.loadJsonData( MODULE_NAME .. '/config.json' )
local i18n = require( 'Module:i18n' ):new()
local TNT = require( 'Module:Translate' ):new()
--- Wrapper function for Module:i18n.translate
---
--- @param key string The translation key
--- @return string If the key was not found, the key is returned
local function t( key )
return i18n:translate( key )
end
--- Wrapper function for Module:Translate.translate
---
--- @param key string The translation key
--- @param addSuffix boolean|nil Adds a language suffix if config.smw_multilingual_text is true
--- @return string If the key was not found in the .tab page, the key is returned
local function translate( key, addSuffix, ... )
return TNT:translate( MODULE_NAME .. '/i18n.json', config, key, addSuffix, {...} ) or key
end
--- Creates the object that is used to query the SMW store
---
--- @param page string the item page containing data
--- @return table
local function makeSmwQueryObject( page )
local ignores = config.blocklist_itemport_name or {}
local itemPortName = t( 'SMW_ItemPortName' )
local query = {
mw.ustring.format( '?%s#-=name', itemPortName ),
mw.ustring.format( '?%s#-=display_name', t( 'SMW_ItemPortDisplayName' ) ),
mw.ustring.format( '?%s#-=min_size', t( 'SMW_ItemPortMinimumSize' ) ),
mw.ustring.format( '?%s#-=max_size', t( 'SMW_ItemPortMaximumSize' ) ),
mw.ustring.format( '?%s#-=equipped_name', t( 'SMW_EquippedItemName' ) ),
mw.ustring.format( '?%s#-=equipped_uuid', t( 'SMW_EquippedItemUUID' ) ),
mw.ustring.format( 'sort=%s', itemPortName ),
'order=asc',
'limit=1000'
}
table.insert( query, 1, mw.ustring.format(
'[[-Has subobject::' .. page .. ']][[%s::+]]',
itemPortName
) )
for _, portName in ipairs(ignores) do
table.insert( query, 2, mw.ustring.format(
'[[%s::!' .. portName .. ']]',
itemPortName
))
end
return query
end
--- Queries the SMW Store
--- @return table|nil
function methodtable.getSmwData( self, page )
--mw.logObject( self.smwData, 'cachedSmwData' )
-- Cache multiple calls
if self.smwData ~= nil then
return self.smwData
end
local smwData = mw.smw.ask( makeSmwQueryObject( page ) )
if smwData == nil or smwData[ 1 ] == nil then
return nil
end
--mw.logObject( smwData, 'getSmwData' )
self.smwData = smwData
return self.smwData
end
--- Generates wikitext needed for the template
--- @return string
function methodtable.out( self )
local smwData = self:getSmwData( self.page )
if smwData == nil then
local msg = mw.ustring.format( translate( 'error_no_itemports_found' ), self.page )
return require( 'Module:Hatnote' )._hatnote( msg, { icon = 'WikimediaUI-Error.svg' } )
end
local containerHtml = mw.html.create( 'div' ):addClass( 'template-itemPorts' )
for _, port in ipairs( smwData ) do
local size_text, title, subtitle
-- Use display_name if it is different, so that we use the same key as the game localization
if port.display_name and port.display_name ~= port.name and translate( 'itemPort_' .. port.display_name ) ~= 'itemPort_' .. port.display_name then
subtitle = translate( 'itemPort_' .. port.display_name )
else
subtitle = translate( 'itemPort_' .. port.name )
end
if port.min_size == port.max_size then
size_text = mw.ustring.format( 'S%d', port.min_size )
else
size_text = mw.ustring.format( 'S%d–%d', port.min_size, port.max_size )
end
if port.equipped_name ~= nil then
if port.equipped_name == '<= PLACEHOLDER =>' then
-- TODO: Display more specific name by getting the type of the item
title = translate( 'item_placeholder' )
else
title = mw.ustring.format( '[[%s]]', port.equipped_name )
end
else
title = translate( 'msg_no_item_equipped' )
end
local portHtml = mw.html.create( 'div' ):addClass( 'template-itemPort' )
portHtml:tag( 'div' )
:addClass( 'template-itemPort-port' )
:tag( 'div' )
:addClass( 'template-itemPort-size' )
:wikitext( size_text )
portHtml:tag( 'div' )
:addClass( 'template-itemPort-item' )
:addClassIf( port.equipped_name, 'template-itemPort-item--hasItem' )
:tag( 'div' )
:addClass( 'template-itemPort-subtitle' )
:wikitext( subtitle )
:done()
:tag( 'div' )
:addClass( 'template-itemPort-title' )
:wikitext( title )
containerHtml:node( portHtml )
end
return tostring( containerHtml ) .. mw.getCurrentFrame():extensionTag{
name = 'templatestyles', args = { src = MODULE_NAME .. '/styles.css' }
}
end
--- New Instance
---
--- @return table ItemPorts
function ItemPorts.new( self, page )
local instance = {
page = page or nil
}
setmetatable( instance, metatable )
return instance
end
--- Parser call for generating the table
function ItemPorts.outputTable( frame )
local args = require( 'Module:Arguments' ).getArgs( frame )
local page = args[ 1 ] or mw.title.getCurrentTitle().text
local instance = ItemPorts:new( page )
local out = instance:out()
return out
end
--- For debugging use
---
--- @param page string page name on the wiki
--- @return string
function ItemPorts.test( page )
local instance = ItemPorts:new( page )
local out = instance:out()
return out
end
return ItemPorts