This documentation is transcluded from Module:Item/Food/doc. Changes can be proposed in the talk page.
Module:Item/Food 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:Item/Food loads messages from Module:Item/Food/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.Function list |
---|
L 18 — t L 28 — translate L 36 — p.addSmwProperties L 74 — p.addSmwAskProperties L 89 — p.addInfoboxData L 122 — p.addCategories L 132 — p.getShortDescription |
require( 'strict' )
local p = {}
local MODULE_NAME = 'Food'
local i18n = require( 'Module:i18n' ):new()
local TNT = require( 'Module:Translate' ):new()
local smwCommon = require( 'Module:Common/SMW' )
local data = mw.loadJsonData( 'Module:Item/' .. MODULE_NAME .. '/data.json' )
local config = mw.loadJsonData( 'Module:Item/config.json' )
--- 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:Item/' .. MODULE_NAME .. '/i18n.json', config, key, addSuffix, {...} )
end
--- Adds the properties valid for this item to the SMW Set object
---
--- @param smwSetObject table
function p.addSmwProperties( apiData, frameArgs, smwSetObject )
smwCommon.addSmwProperties(
apiData,
frameArgs,
smwSetObject,
translate,
config,
data,
'Item/' .. MODULE_NAME
)
--- Not sure if size matters, not like there is a S12 Double Dog
--- FIXME: SMW_Size is from Module:Item, I made a duplicated entry in Module:Item/Food/i18n.json to make this work
smwSetObject[ t( 'SMW_Size' ) ] = nil
--- GEND and GENF are placeholders
--- FIXME: Same as above
if smwSetObject[ t( 'SMW_Manufacturer' ) ] == '[[GEND]]' or smwSetObject[ t( 'SMW_Manufacturer' ) ] == '[[GENF]]' then
smwSetObject[ t( 'SMW_Manufacturer' ) ] = nil
end
--- We only know whether the item is single use or not
if smwSetObject[ t( 'SMW_Uses' ) ] == true then
smwSetObject[ t( 'SMW_Uses' ) ] = 1
else
smwSetObject[ t( 'SMW_Uses' ) ] = nil
end
if smwSetObject[ t( 'SMW_Effect' ) ] == 'None' then
smwSetObject[ t( 'SMW_Effect' ) ] = nil
end
end
--- Adds all SMW parameters set by this Module to the ASK object
---
--- @param smwAskObject table
--- @return nil
function p.addSmwAskProperties( smwAskObject )
smwCommon.addSmwAskProperties(
smwAskObject,
translate,
config,
data
)
end
--- Adds entries to the infobox
---
--- @param infobox table The Module:InfoboxNeue instance
--- @param smwData table Data from Semantic MediaWiki
--- @return nil
function p.addInfoboxData( infobox, smwData )
infobox:renderSection( {
content = {
infobox:renderItem( {
label = translate( 'LBL_Effect' ),
data = infobox.tableToCommaList( smwData[ t( 'SMW_Effect' ) ] ),
colspan = 2
} ),
infobox:renderItem( {
label = translate( 'LBL_NutritionalDensityRating' ),
data = smwData[ t( 'SMW_NutritionalDensityRating' ) ],
} ),
infobox:renderItem( {
label = translate( 'LBL_HydrationEfficacyIndex' ),
data = smwData[ t( 'SMW_HydrationEfficacyIndex' ) ],
} ),
infobox:renderItem( {
label = translate( 'LBL_Uses' ),
data = smwData[ t( 'SMW_Uses' ) ],
} )
},
col = 4
} )
end
--- Add categories that are set on the page.
--- The categories table should only contain category names, no MW Links, i.e. 'Foo' instead of '[[Category:Foo]]'
---
--- @param categories table The categories table
--- @param frameArgs table Frame arguments from Module:Arguments
--- @param smwData table Data from Semantic MediaWiki
--- @return nil
function p.addCategories( categories, frameArgs, smwData )
end
--- Return the short description for this object
---
--- @param frameArgs table Frame arguments from Module:Arguments
--- @param smwData table Data from Semantic MediaWiki
--- @return string|nil
function p.getShortDescription( frameArgs, smwData )
end
return p