mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-05 09:36:18 +00:00
Add a cascade for the editor template body
This commit is contained in:
parent
4bb12379eb
commit
a4e0cf31b0
@ -31,6 +31,8 @@ EditorTypes/Caption: Editor Types
|
|||||||
EditorTypes/Editor/Caption: Editor
|
EditorTypes/Editor/Caption: Editor
|
||||||
EditorTypes/Hint: These tiddlers determine which editor is used to edit specific tiddler types.
|
EditorTypes/Hint: These tiddlers determine which editor is used to edit specific tiddler types.
|
||||||
EditorTypes/Type/Caption: Type
|
EditorTypes/Type/Caption: Type
|
||||||
|
EditTemplateBody/Caption: Edit Template Body
|
||||||
|
EditTemplateBody/Hint: This rule cascade is used by the default edit template to dynamically choose the template for editing the body of a tiddler.
|
||||||
Info/Caption: Info
|
Info/Caption: Info
|
||||||
Info/Hint: Information about this TiddlyWiki
|
Info/Hint: Information about this TiddlyWiki
|
||||||
KeyboardShortcuts/Add/Prompt: Type shortcut here
|
KeyboardShortcuts/Add/Prompt: Type shortcut here
|
||||||
|
9
core/ui/ControlPanel/Templates/EditTemplateBody.tid
Normal file
9
core/ui/ControlPanel/Templates/EditTemplateBody.tid
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
title: $:/core/ui/ControlPanel/EditTemplateBody
|
||||||
|
tags: $:/tags/ControlPanel/Templates
|
||||||
|
caption: {{$:/language/ControlPanel/EditTemplateBody/Caption}}
|
||||||
|
|
||||||
|
\define lingo-base() $:/language/ControlPanel/EditTemplateBody/
|
||||||
|
|
||||||
|
<<lingo Hint>>
|
||||||
|
|
||||||
|
{{$:/tags/EditTemplateBodyFilter||$:/snippets/ListTaggedCascade}}
|
@ -1,56 +1,4 @@
|
|||||||
title: $:/core/ui/EditTemplate/body
|
title: $:/core/ui/EditTemplate/body
|
||||||
tags: $:/tags/EditTemplate
|
tags: $:/tags/EditTemplate
|
||||||
|
|
||||||
\define lingo-base() $:/language/EditTemplate/Body/
|
<$transclude tiddler={{{ [<currentTiddler>] :cascade[all[shadows+tiddlers]tag[$:/tags/EditTemplateBodyFilter]get[text]] :and[!is[blank]else[$:/core/ui/EditTemplate/body/default]] }}} />
|
||||||
\define config-visibility-title()
|
|
||||||
$:/config/EditorToolbarButtons/Visibility/$(currentTiddler)$
|
|
||||||
\end
|
|
||||||
|
|
||||||
\define importFileActions()
|
|
||||||
<$action-popup $state=<<importState>> $coords="(0,0,0,0)" $floating="yes"/>
|
|
||||||
\end
|
|
||||||
|
|
||||||
<$list filter="[all[current]has[_canonical_uri]]">
|
|
||||||
|
|
||||||
<div class="tc-message-box">
|
|
||||||
|
|
||||||
<<lingo External/Hint>>
|
|
||||||
|
|
||||||
<a href={{!!_canonical_uri}}><$text text={{!!_canonical_uri}}/></a>
|
|
||||||
|
|
||||||
<$edit-text field="_canonical_uri" class="tc-edit-fields" tabindex={{$:/config/EditTabIndex}} cancelPopups="yes"></$edit-text>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</$list>
|
|
||||||
|
|
||||||
<$set name="edit-preview-state" value={{{ [{$:/config/ShowEditPreview/PerTiddler}!match[yes]then[$:/state/showeditpreview]] :else[<qualify "$:/state/showeditpreview">] }}}>
|
|
||||||
<$list filter="[all[current]!has[_canonical_uri]]">
|
|
||||||
<$vars importTitle=<<qualify $:/ImportImage>> importState=<<qualify $:/state/ImportImage>> >
|
|
||||||
<$dropzone importTitle=<<importTitle>> autoOpenOnImport="no" contentTypesFilter={{$:/config/Editor/ImportContentTypesFilter}} class="tc-dropzone-editor" enable={{{ [{$:/config/DragAndDrop/Enable}match[no]] :else[subfilter{$:/config/Editor/EnableImportFilter}then[yes]else[no]] }}} filesOnly="yes" actions=<<importFileActions>> ><$reveal stateTitle=<<edit-preview-state>> type="match" text="yes">
|
|
||||||
<div class="tc-tiddler-preview">
|
|
||||||
|
|
||||||
<$transclude tiddler="$:/core/ui/EditTemplate/body/editor" mode="inline"/>
|
|
||||||
|
|
||||||
<div class="tc-tiddler-preview-preview">
|
|
||||||
|
|
||||||
<$transclude tiddler={{$:/state/editpreviewtype}} mode="inline">
|
|
||||||
|
|
||||||
<$transclude tiddler="$:/core/ui/EditTemplate/body/preview/output" mode="inline"/>
|
|
||||||
|
|
||||||
</$transclude>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</$reveal>
|
|
||||||
|
|
||||||
<$reveal stateTitle=<<edit-preview-state>> type="nomatch" text="yes">
|
|
||||||
|
|
||||||
<$transclude tiddler="$:/core/ui/EditTemplate/body/editor" mode="inline"/>
|
|
||||||
|
|
||||||
</$reveal>
|
|
||||||
</$dropzone>
|
|
||||||
</$vars>
|
|
||||||
</$list>
|
|
||||||
</$set>
|
|
||||||
|
13
core/ui/EditTemplate/body/canonical-uri.tid
Normal file
13
core/ui/EditTemplate/body/canonical-uri.tid
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
title: $:/core/ui/EditTemplate/body/canonical-uri
|
||||||
|
|
||||||
|
\define lingo-base() $:/language/EditTemplate/Body/
|
||||||
|
|
||||||
|
<div class="tc-message-box">
|
||||||
|
|
||||||
|
<<lingo External/Hint>>
|
||||||
|
|
||||||
|
<a href={{!!_canonical_uri}}><$text text={{!!_canonical_uri}}/></a>
|
||||||
|
|
||||||
|
<$edit-text field="_canonical_uri" class="tc-edit-fields" tabindex={{$:/config/EditTabIndex}} cancelPopups="yes"></$edit-text>
|
||||||
|
|
||||||
|
</div>
|
38
core/ui/EditTemplate/body/default.tid
Normal file
38
core/ui/EditTemplate/body/default.tid
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
title: $:/core/ui/EditTemplate/body/default
|
||||||
|
|
||||||
|
\define config-visibility-title()
|
||||||
|
$:/config/EditorToolbarButtons/Visibility/$(currentTiddler)$
|
||||||
|
\end
|
||||||
|
|
||||||
|
\define importFileActions()
|
||||||
|
<$action-popup $state=<<importState>> $coords="(0,0,0,0)" $floating="yes"/>
|
||||||
|
\end
|
||||||
|
|
||||||
|
<$set name="edit-preview-state" value={{{ [{$:/config/ShowEditPreview/PerTiddler}!match[yes]then[$:/state/showeditpreview]] :else[<qualify "$:/state/showeditpreview">] }}}>
|
||||||
|
<$vars importTitle=<<qualify $:/ImportImage>> importState=<<qualify $:/state/ImportImage>> >
|
||||||
|
<$dropzone importTitle=<<importTitle>> autoOpenOnImport="no" contentTypesFilter={{$:/config/Editor/ImportContentTypesFilter}} class="tc-dropzone-editor" enable={{{ [{$:/config/DragAndDrop/Enable}match[no]] :else[subfilter{$:/config/Editor/EnableImportFilter}then[yes]else[no]] }}} filesOnly="yes" actions=<<importFileActions>> ><$reveal stateTitle=<<edit-preview-state>> type="match" text="yes">
|
||||||
|
<div class="tc-tiddler-preview">
|
||||||
|
|
||||||
|
<$transclude tiddler="$:/core/ui/EditTemplate/body/editor" mode="inline"/>
|
||||||
|
|
||||||
|
<div class="tc-tiddler-preview-preview">
|
||||||
|
|
||||||
|
<$transclude tiddler={{$:/state/editpreviewtype}} mode="inline">
|
||||||
|
|
||||||
|
<$transclude tiddler="$:/core/ui/EditTemplate/body/preview/output" mode="inline"/>
|
||||||
|
|
||||||
|
</$transclude>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</$reveal>
|
||||||
|
|
||||||
|
<$reveal stateTitle=<<edit-preview-state>> type="nomatch" text="yes">
|
||||||
|
|
||||||
|
<$transclude tiddler="$:/core/ui/EditTemplate/body/editor" mode="inline"/>
|
||||||
|
|
||||||
|
</$reveal>
|
||||||
|
</$dropzone>
|
||||||
|
</$vars>
|
||||||
|
</$set>
|
5
core/wiki/config/EditTemplateBodyFilters.multids
Normal file
5
core/wiki/config/EditTemplateBodyFilters.multids
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
title: $:/config/EditTemplateBodyFilters/
|
||||||
|
tags: $:/tags/EditTemplateBodyFilter
|
||||||
|
|
||||||
|
canonical-uri: [has[_canonical_uri]then[$:/core/ui/EditTemplate/body/canonical-uri]]
|
||||||
|
default: [[$:/core/ui/EditTemplate/body/default]]
|
2
core/wiki/tags/EditTemplateBodyFilter.tid
Normal file
2
core/wiki/tags/EditTemplateBodyFilter.tid
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
title: $:/tags/EditTemplateBodyFilter
|
||||||
|
list: $:/config/EditTemplateBodyFilters/canonical-uri $:/config/EditTemplateBodyFilters/default
|
Loading…
Reference in New Issue
Block a user