mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-29 04:49:55 +00:00
a350a76a00
* Initial Commit * Set currentTiddler and ..currentTiddler for filter evaulation * Precompile the filters for performance * Add explicit test for empty result when no filter passes * Use the cascade filter run prefix to choose the view template body template * Use the cascade mechanism to choose between the edit and view templates * Simplify cascade filter Thanks @saqimtiaz * Add control panel UI for inspecting the template cascades * Refactor import listing and plugin listing as alternate body templates As suggested by @pmario * Refer to $:/core/ui/{View|Edit}Template via their associated config tiddlers * Fix typo in previous commit * Add demo of custom story tiddler template * Tweak control panel wording * Standardise "Story Tiddler Template" nomenclature * Add a cascade for the editor template body * Add a cascade for the view template title * Avoid unwanted whitespace * Add a cascade for dynamically choosing tiddler icons
23 lines
886 B
Plaintext
23 lines
886 B
Plaintext
title: $:/_tw5.com/CustomStoryTiddlerTemplateDemo/Template
|
|
|
|
\define list-item-styles()
|
|
transform: translate($(left)$%,$(top)$%) scale(0.3) rotate($(angle)$deg);
|
|
\end
|
|
|
|
<div class="tc-custom-tiddler-template">
|
|
<div class="tc-custom-tiddler-template-inner">
|
|
<$transclude mode="block"/>
|
|
</div>
|
|
<div class="tc-custom-tiddler-template-list">
|
|
<$let numItems={{{ [subfilter{!!filter}count[]] }}} angleIncrement={{{ [[45]divide<numItems>] }}} posIncrement={{{ [[90]divide<numItems>] }}}>
|
|
<$list filter={{!!filter}} counter="counter">
|
|
<$let angle={{{ [<counter>subtract[1]multiply<angleIncrement>subtract[22.5]] }}} left={{{ [<counter>subtract[1]multiply<posIncrement>subtract[45]] }}} top={{{ 0 }}}>
|
|
<div class="tc-custom-tiddler-template-list-item" style=<<list-item-styles>>>
|
|
{{||$:/core/ui/ViewTemplate}}
|
|
</div>
|
|
</$let>
|
|
</$list>
|
|
</$let>
|
|
</div>
|
|
</div>
|