Template:Sandbox/Aurelain/LinkIcon: Difference between revisions
No edit summary |
No edit summary |
||
| (111 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
<includeonly><!-- | <includeonly><!-- | ||
-->{{ | -->{{#cargo_query: | ||
#cargo_query: | |||
tables = | tables = | ||
Translation = E, | Translation = E, | ||
| Line 8: | Line 7: | ||
E.target_id = T.target_id | E.target_id = T.target_id | ||
|where = | |where = | ||
E.target_id = '{{{id}}}' | |||
{{#if:{{{type|}}} | AND E.type = '{{{type}}}' }} | {{#if:{{{type|}}} | AND E.type = '{{{type}}}' }} | ||
{{#if:{{{variant|}}} | AND E.variant = '{{{variant}}}' }} | |||
AND E.language = 'en' | AND E.language = 'en' | ||
<!-- foreign language --> | |||
{{#if:{{{type|}}} | AND T.type = '{{{type}}}' }} | {{#if:{{{type|}}} | AND T.type = '{{{type}}}' }} | ||
AND T.language = '{{{lang|en}} | {{#if:{{{variant|}}} | AND T.variant = '{{{variant}}}' }} | ||
{{#if:{{{lang|}}} | AND T.language = '{{{lang}}}' | AND T.language = 'en' }} | |||
|fields = | |fields = | ||
E. | <!-- filename --> | ||
{{#switch: {{{filename|}}} | |||
|=CONCAT(E.target_id, "{{#if:{{{suffix|}}}|{{{suffix}}}|.png}}")=filename, <!-- automatic behavior --> | |||
CONCAT( | |0=<!-- omitted filename --> | ||
{{#if:{{{size|}}} | CONCAT("{{{size}}}") = size }} | |1=CONCAT(E.name, "{{#if:{{{suffix|}}}|{{{suffix}}}|.png}}")=filename,<!-- forced English filename --> | ||
|#default=CONCAT("{{{filename}}}")=filename, <!-- overridden filename --> | |||
}} | |||
<!-- link --> | |||
{{#switch: {{{link|}}} | |||
|=<!-- automatic behavior --><!-- | |||
-->{{#switch: {{{id|}}}+{{{type|}}} | |||
<!-- overrides --> | |||
|wasp_upg_alt+unit=CONCAT("Stinger_(unit)") | |||
|bonus_magic_astral_summon_1+spell=CONCAT("Summon_Avatar_(Spell)") | |||
|skill_summoner+<!--fall--> | |||
|skill_summoner+skill_level<!--fall--> | |||
|skill_summoner+skill=CONCAT("Summon_Avatar_(Skill)") | |||
<!-- normal, no link specified: --> | |||
|#default={{#if:{{{link_id|}}} | |||
|CONCAT("{{#invoke:Translation|get|{{{link_id}}}|en}}") | |||
|E.name <!-- normal, use the English name --> | |||
}} | |||
}}=link, | |||
|0=<!-- intentionally empty parameter, omit the link --> | |||
|#default=CONCAT("{{{link}}}")=link, <!-- overridden link --> | |||
}} | |||
<!-- text --> | |||
{{#switch: {{{text|}}} | |||
|=T.name=text, <!-- automatic behavior --> | |||
|0=<!-- intentionally empty parameter, omit the name --> | |||
|#default=CONCAT("{{{text}}}")=text, <!-- overridden name --> | |||
}} | |||
{{#if:{{{size|}}} | CONCAT("{{{size}}}") = size,}} | |||
{{#if:{{{color|}}} | CONCAT("{{{color}}}") = color,}} | |||
{{#if:{{{wrap|}}} | CONCAT("{{{wrap}}}") = wrap,}} | |||
{{#if:{{{width|}}} | CONCAT("{{{width}}}") = width,}} | |||
T.language = lang | |||
|format = | |format = | ||
template | template | ||
|template = | |template = | ||
Sandbox/Aurelain/Link/render | {{#switch: {{{stack|}}} | ||
|1=Sandbox/Aurelain/Link/stack | |||
|#default=Sandbox/Aurelain/Link/render | |||
}} | |||
|named args = | |named args = | ||
yes | yes | ||
| Line 34: | Line 71: | ||
This template is meant to handle the linking of articles in a way that is language-agnostic, meaning that it can be used in language-aware infoboxes and other contexts which need to be able to handle multiple languages. This template only works with concepts which have their translation managed by Cargo. | This template is meant to handle the linking of articles in a way that is language-agnostic, meaning that it can be used in language-aware infoboxes and other contexts which need to be able to handle multiple languages. This template only works with concepts which have their translation managed by Cargo. | ||
The default assumption for the icon's | The default assumption for the icon's file name is that it is identical to the {{b|id}}, plus the <code>.png</code> extension. This can be further configured with the {{b|suffix}} parameter, or be completely overridden by the {{b|filename}} parameter. | ||
{{ | ==1. Basic:== | ||
(rarely used, as you usually need to specify {{b|type}} and {{b|suffix}}) | |||
{{Color| | {{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=magic_demon}}</nowiki></code> | ||
{{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=magic_demon}} | |||
{{ | ==2. With {{b|type}}:== | ||
{{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=skill_assault | type=skill}}</nowiki></code> | |||
{{Color| | {{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=skill_assault | type=skill}} | ||
==3. With {{b|suffix}}:== | |||
(to override the default <code>.png</code>) | |||
{{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | {{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=angel | suffix=_icon.png}}</nowiki></code> | ||
{{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | {{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=angel | suffix=_icon.png}} | ||
{{ | ==4. With {{b|lang}}:== | ||
(to override the default <code>en</code>) | |||
{{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=magic_demon || lang=ja}}</nowiki></code> | |||
{{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=magic_demon || lang=ja}} | |||
==5. With {{b|size}}:== | |||
(to override the default <code>32px</code>) | |||
{{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=magic_demon | size=64px}}</nowiki></code> | |||
{{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=magic_demon | size=64px}} | |||
==6. With {{b|filename}}:== | |||
(to override the automated file path) | |||
{{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=human_hero_1 | type=hero | filename=Ister.png}}</nowiki></code> | |||
{{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=human_hero_1 | type=hero | filename=Ister.png}} | |||
==7. With {{b|zero filename}}:== | |||
(to disable the icon) | |||
{{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=magic_demon | filename=0}}</nowiki></code> | |||
{{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=magic_demon | filename=0}} | |||
==8. With {{b|text}}:== | |||
(to override the automated text) | |||
{{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=magic_demon | text=Hello}}</nowiki></code> | |||
{{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=magic_demon | text=Hello}} | |||
==9. With {{b|zero text}}:== | |||
(to disable the text) | |||
{{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=magic_demon | text=0}}</nowiki></code> | |||
{{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=magic_demon | text=0}} | |||
==10. With {{b|link}}:== | |||
(to override the automated link) | |||
{{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=magic_demon | link=Foobar}}</nowiki></code> | |||
{{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=magic_demon | link=Foobar}} | |||
==11. With {{b|zero link}}:== | |||
(to disable the link) | |||
{{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=magic_demon | link=0}}</nowiki></code> | |||
{{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=magic_demon | link=0}} | |||
==12. With {{b|color}}:== | |||
{{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=magic_demon | color=magenta}}</nowiki></code> | |||
{{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=magic_demon | color=magenta}} | |||
==13. With {{b|stack{{=}}1}}:== | |||
(to switch to a vertical layout) | |||
{{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=magic_demon | stack=1}}</nowiki></code> | |||
{{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=magic_demon | stack=1}} | |||
==14. With {{b|wrap{{=}}1}}:== | |||
(to allow the resulting link to wrap; useful if used without icons) | |||
{{Color|yellow|Input:}} | |||
<pre><nowiki> | |||
{|class=wikitable | |||
|style="width:100px;"|{{Sandbox/Aurelain/LinkIcon|id=might_undead|suffix=_icon.png|wrap=1}} | |||
|} | |||
</nowiki></pre> | |||
{{Color|lime|Output:}} | |||
{|class=wikitable | |||
|style="width:100px;"|{{Sandbox/Aurelain/LinkIcon|id=might_undead|suffix=_icon.png|wrap=1}} | |||
|} | |||
==15. With {{b|filename{{=}}1}}:== | |||
(to use the English name as filename) | |||
{{Color|yellow|Input:}} <code><nowiki>{{Sandbox/Aurelain/LinkIcon | id=human_hero_1 | type=hero | filename=1}}</nowiki></code> | |||
{{Color|lime|Output:}} {{Sandbox/Aurelain/LinkIcon | id=human_hero_1 | type=hero | filename=1}} | |||
==16. {{b|Stinger}} conflict:== | |||
{{Color|yellow|Input:}} | |||
<pre><nowiki> | |||
{{Sandbox/Aurelain/LinkIcon | |||
| id = wasp_upg_alt | |||
| type = unit | |||
| filename = 1 | |||
| suffix = _icon.png | |||
}} | |||
{{Sandbox/Aurelain/LinkIcon | |||
| id = dungeon_hero_3 | |||
| type = hero | |||
| filename = 1 | |||
}} | |||
</nowiki></pre> | |||
{{Color|lime|Output:}} | |||
{{Sandbox/Aurelain/LinkIcon | |||
| id = wasp_upg_alt | |||
| type = unit | |||
| filename = 1 | |||
| suffix = _icon.png | |||
}} | |||
{{Sandbox/Aurelain/LinkIcon | |||
| id = dungeon_hero_3 | |||
| type = hero | |||
| filename = 1 | |||
}} | |||
==17. {{b|Summon Avatar}} conflict:== | |||
{{Color|yellow|Input:}} | |||
<pre><nowiki> | |||
{{Sandbox/Aurelain/LinkIcon | |||
| id = bonus_magic_astral_summon_1 | |||
| type = spell | |||
}} | |||
{{Sandbox/Aurelain/LinkIcon | |||
| id = skill_summoner | |||
| type = skill | |||
}} | |||
</nowiki></pre> | |||
{{Color|lime|Output:}} | |||
{{Sandbox/Aurelain/LinkIcon | |||
| id = bonus_magic_astral_summon_1 | |||
| type = spell | |||
}} | |||
{{Sandbox/Aurelain/LinkIcon | |||
| id = skill_summoner | |||
| type = skill | |||
}} | |||
==18. Proper linking of Skill levels:== | |||
{{Color|yellow|Input:}} | |||
<pre><nowiki> | |||
{{Sandbox/Aurelain/LinkIcon | |||
| id = skill_assault | |||
| type = skill_level | |||
| variant = 3 | |||
}} | |||
</nowiki></pre> | |||
{{Color|lime|Output:}} | |||
{{Sandbox/Aurelain/LinkIcon | |||
| id = skill_assault | |||
| type = skill_level | |||
| variant = 3 | |||
}} | |||
==19. With {{b|link_id}} to hijack the url:== | |||
{{Color|yellow|Input:}} | |||
<pre><nowiki> | |||
{{Sandbox/Aurelain/LinkIcon | |||
| id = sub_class_demons_magic_2 | |||
| suffix=_icon.png | |||
| link_id = magic_demon | |||
}} | |||
</nowiki></pre> | |||
{{Color|lime|Output:}} | |||
{{Sandbox/Aurelain/LinkIcon | |||
| id = sub_class_demons_magic_2 | |||
| suffix=_icon.png | |||
| link_id = magic_demon | |||
}} | |||
__NOTOC__ | |||
</noinclude> | </noinclude> | ||
Latest revision as of 11:40, 26 August 2026
This template is meant to handle the linking of articles in a way that is language-agnostic, meaning that it can be used in language-aware infoboxes and other contexts which need to be able to handle multiple languages. This template only works with concepts which have their translation managed by Cargo.
The default assumption for the icon's file name is that it is identical to the id, plus the .png extension. This can be further configured with the suffix parameter, or be completely overridden by the filename parameter.
1. Basic:
(rarely used, as you usually need to specify type and suffix)
Input: {{Sandbox/Aurelain/LinkIcon | id=magic_demon}}
Output:
Herald
2. With type:
Input: {{Sandbox/Aurelain/LinkIcon | id=skill_assault | type=skill}}
Output:
Offense
3. With suffix:
(to override the default .png)
Input: {{Sandbox/Aurelain/LinkIcon | id=angel | suffix=_icon.png}}
Output:
Angel
4. With lang:
(to override the default en)
Input: {{Sandbox/Aurelain/LinkIcon | id=magic_demon || lang=ja}}
Output:
ヘラルド
5. With size:
(to override the default 32px)
Input: {{Sandbox/Aurelain/LinkIcon | id=magic_demon | size=64px}}
Output:
Herald
6. With filename:
(to override the automated file path)
Input: {{Sandbox/Aurelain/LinkIcon | id=human_hero_1 | type=hero | filename=Ister.png}}
Output:
Ister
7. With zero filename:
(to disable the icon)
Input: {{Sandbox/Aurelain/LinkIcon | id=magic_demon | filename=0}}
Output: Herald
8. With text:
(to override the automated text)
Input: {{Sandbox/Aurelain/LinkIcon | id=magic_demon | text=Hello}}
Output:
Hello
9. With zero text:
(to disable the text)
Input: {{Sandbox/Aurelain/LinkIcon | id=magic_demon | text=0}}
10. With link:
(to override the automated link)
Input: {{Sandbox/Aurelain/LinkIcon | id=magic_demon | link=Foobar}}
Output:
Herald
11. With zero link:
(to disable the link)
Input: {{Sandbox/Aurelain/LinkIcon | id=magic_demon | link=0}}
Output:
Herald
12. With color:
Input: {{Sandbox/Aurelain/LinkIcon | id=magic_demon | color=magenta}}
Output:
Herald
13. With stack=1:
(to switch to a vertical layout)
Input: {{Sandbox/Aurelain/LinkIcon | id=magic_demon | stack=1}}
Output:
Herald
14. With wrap=1:
(to allow the resulting link to wrap; useful if used without icons)
Input:
{|class=wikitable
|style="width:100px;"|{{Sandbox/Aurelain/LinkIcon|id=might_undead|suffix=_icon.png|wrap=1}}
|}
Output:
15. With filename=1:
(to use the English name as filename)
Input: {{Sandbox/Aurelain/LinkIcon | id=human_hero_1 | type=hero | filename=1}}
Output:
Ister
16. Stinger conflict:
Input:
{{Sandbox/Aurelain/LinkIcon
| id = wasp_upg_alt
| type = unit
| filename = 1
| suffix = _icon.png
}}
{{Sandbox/Aurelain/LinkIcon
| id = dungeon_hero_3
| type = hero
| filename = 1
}}
17. Summon Avatar conflict:
Input:
{{Sandbox/Aurelain/LinkIcon
| id = bonus_magic_astral_summon_1
| type = spell
}}
{{Sandbox/Aurelain/LinkIcon
| id = skill_summoner
| type = skill
}}
Output:
Basic Summon Avatar
Summon Avatar
18. Proper linking of Skill levels:
Input:
{{Sandbox/Aurelain/LinkIcon
| id = skill_assault
| type = skill_level
| variant = 3
}}
Output:
Expert Offense
19. With link_id to hijack the url:
Input:
{{Sandbox/Aurelain/LinkIcon
| id = sub_class_demons_magic_2
| suffix=_icon.png
| link_id = magic_demon
}}
Output:
Lord of Chaos


