mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-11 18:00:26 +00:00
Add pluggable previews to the import listing
This commit is contained in:
parent
53f2cc9814
commit
9e03264ebe
@ -7,6 +7,12 @@ Listing/Import/Caption: Import
|
|||||||
Listing/Select/Caption: Select
|
Listing/Select/Caption: Select
|
||||||
Listing/Status/Caption: Status
|
Listing/Status/Caption: Status
|
||||||
Listing/Title/Caption: Title
|
Listing/Title/Caption: Title
|
||||||
|
Listing/Preview: Preview:
|
||||||
|
Listing/Preview/Text: Text
|
||||||
|
Listing/Preview/TextRaw: Text (Raw)
|
||||||
|
Listing/Preview/Fields: Fields
|
||||||
|
Listing/Preview/Diff: Diff
|
||||||
|
Listing/Preview/DiffFields: Diff (Fields)
|
||||||
Upgrader/Plugins/Suppressed/Incompatible: Blocked incompatible or obsolete plugin
|
Upgrader/Plugins/Suppressed/Incompatible: Blocked incompatible or obsolete plugin
|
||||||
Upgrader/Plugins/Suppressed/Version: Blocked plugin (due to incoming <<incoming>> being older than existing <<existing>>)
|
Upgrader/Plugins/Suppressed/Version: Blocked plugin (due to incoming <<incoming>> being older than existing <<existing>>)
|
||||||
Upgrader/Plugins/Upgraded: Upgraded plugin from <<incoming>> to <<upgraded>>
|
Upgrader/Plugins/Upgraded: Upgraded plugin from <<incoming>> to <<upgraded>>
|
||||||
|
@ -41,12 +41,12 @@ $(currentTiddler)$!!popup-$(payloadTiddler)$
|
|||||||
<$checkbox field=<<selectionField>> checked="checked" unchecked="unchecked" default="checked"/>
|
<$checkbox field=<<selectionField>> checked="checked" unchecked="unchecked" default="checked"/>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<$reveal type="nomatch" state=<<previewPopupState>> text="yes">
|
<$reveal type="nomatch" state=<<previewPopupState>> text="yes" tag="div">
|
||||||
<$button class="tc-btn-invisible tc-btn-dropdown" set=<<previewPopupState>> setTo="yes">
|
<$button class="tc-btn-invisible tc-btn-dropdown" set=<<previewPopupState>> setTo="yes">
|
||||||
{{$:/core/images/right-arrow}} <$text text=<<payloadTiddler>>/>
|
{{$:/core/images/right-arrow}} <$text text=<<payloadTiddler>>/>
|
||||||
</$button>
|
</$button>
|
||||||
</$reveal>
|
</$reveal>
|
||||||
<$reveal type="match" state=<<previewPopupState>> text="yes">
|
<$reveal type="match" state=<<previewPopupState>> text="yes" tag="div">
|
||||||
<$button class="tc-btn-invisible tc-btn-dropdown" set=<<previewPopupState>> setTo="no">
|
<$button class="tc-btn-invisible tc-btn-dropdown" set=<<previewPopupState>> setTo="no">
|
||||||
{{$:/core/images/down-arrow}} <$text text=<<payloadTiddler>>/>
|
{{$:/core/images/down-arrow}} <$text text=<<payloadTiddler>>/>
|
||||||
</$button>
|
</$button>
|
||||||
@ -58,8 +58,10 @@ $(currentTiddler)$!!popup-$(payloadTiddler)$
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3">
|
<td colspan="3">
|
||||||
<$reveal type="match" text="yes" state=<<previewPopupState>>>
|
<$reveal type="match" text="yes" state=<<previewPopupState>> tag="div">
|
||||||
<$macrocall $name="compareTiddlerText" sourceTiddlerTitle=<<payloadTiddler>> destTiddlerTitle=<<currentTiddler>> destSubTiddlerTitle=<<payloadTiddler>>/>
|
<$list filter="[{$:/state/importpreviewtype}has[text]]" variable="listItem" emptyMessage={{$:/core/ui/ImportPreviews/Text}}>
|
||||||
|
<$transclude tiddler={{$:/state/importpreviewtype}}/>
|
||||||
|
</$list>
|
||||||
</$reveal>
|
</$reveal>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
5
core/ui/ImportPreviews/Diff.tid
Normal file
5
core/ui/ImportPreviews/Diff.tid
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
title: $:/core/ui/ImportPreviews/Diff
|
||||||
|
tags: $:/tags/ImportPreview
|
||||||
|
caption: {{$:/language/Import/Listing/Preview/Diff}}
|
||||||
|
|
||||||
|
<$macrocall $name="compareTiddlerText" sourceTiddlerTitle=<<payloadTiddler>> destTiddlerTitle=<<currentTiddler>> destSubTiddlerTitle=<<payloadTiddler>>/>
|
5
core/ui/ImportPreviews/DiffFields.tid
Normal file
5
core/ui/ImportPreviews/DiffFields.tid
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
title: $:/core/ui/ImportPreviews/DiffFields
|
||||||
|
tags: $:/tags/ImportPreview
|
||||||
|
caption: {{$:/language/Import/Listing/Preview/DiffFields}}
|
||||||
|
|
||||||
|
<$macrocall $name="compareTiddlers" sourceTiddlerTitle=<<payloadTiddler>> destTiddlerTitle=<<currentTiddler>> destSubTiddlerTitle=<<payloadTiddler>> exclude="text"/>
|
7
core/ui/ImportPreviews/Fields.tid
Normal file
7
core/ui/ImportPreviews/Fields.tid
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
title: $:/core/ui/ImportPreviews/Fields
|
||||||
|
tags: $:/tags/ImportPreview
|
||||||
|
caption: {{$:/language/Import/Listing/Preview/Fields}}
|
||||||
|
|
||||||
|
<$tiddler tiddler=<<payloadTiddler>>>
|
||||||
|
<$transclude tiddler="$:/core/ui/TiddlerFields"/>
|
||||||
|
</$tiddler>
|
5
core/ui/ImportPreviews/Text.tid
Normal file
5
core/ui/ImportPreviews/Text.tid
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
title: $:/core/ui/ImportPreviews/Text
|
||||||
|
tags: $:/tags/ImportPreview
|
||||||
|
caption: {{$:/language/Import/Listing/Preview/Text}}
|
||||||
|
|
||||||
|
<$transclude tiddler=<<payloadTiddler>> mode="block"/>
|
5
core/ui/ImportPreviews/TextRaw.tid
Normal file
5
core/ui/ImportPreviews/TextRaw.tid
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
title: $:/core/ui/ImportPreviews/TextRaw
|
||||||
|
tags: $:/tags/ImportPreview
|
||||||
|
caption: {{$:/language/Import/Listing/Preview/TextRaw}}
|
||||||
|
|
||||||
|
<pre><code><$view tiddler=<<payloadTiddler>>/></code></pre>
|
@ -3,19 +3,27 @@ tags: $:/tags/ViewTemplate
|
|||||||
|
|
||||||
\define lingo-base() $:/language/Import/
|
\define lingo-base() $:/language/Import/
|
||||||
|
|
||||||
|
\define buttons()
|
||||||
|
<$button message="tm-delete-tiddler" param=<<currentTiddler>>><<lingo Listing/Cancel/Caption>></$button>
|
||||||
|
<$button message="tm-perform-import" param=<<currentTiddler>>><<lingo Listing/Import/Caption>></$button>
|
||||||
|
<<lingo Listing/Preview>> <$select tiddler="$:/state/importpreviewtype" default="$:/core/ui/ImportPreviews/Text">
|
||||||
|
<$list filter="[all[shadows+tiddlers]tag[$:/tags/ImportPreview]!has[draft.of]]">
|
||||||
|
<option value=<<currentTiddler>>>{{!!caption}}</option>
|
||||||
|
</$list>
|
||||||
|
</$select>
|
||||||
|
\end
|
||||||
|
|
||||||
<$list filter="[all[current]field:plugin-type[import]]">
|
<$list filter="[all[current]field:plugin-type[import]]">
|
||||||
|
|
||||||
<div class="tc-import">
|
<div class="tc-import">
|
||||||
|
|
||||||
<<lingo Listing/Hint>>
|
<<lingo Listing/Hint>>
|
||||||
|
|
||||||
<$button message="tm-delete-tiddler" param=<<currentTiddler>>><<lingo Listing/Cancel/Caption>></$button>
|
<<buttons>>
|
||||||
<$button message="tm-perform-import" param=<<currentTiddler>>><<lingo Listing/Import/Caption>></$button>
|
|
||||||
|
|
||||||
{{||$:/core/ui/ImportListing}}
|
{{||$:/core/ui/ImportListing}}
|
||||||
|
|
||||||
<$button message="tm-delete-tiddler" param=<<currentTiddler>>><<lingo Listing/Cancel/Caption>></$button>
|
<<buttons>>
|
||||||
<$button message="tm-perform-import" param=<<currentTiddler>>><<lingo Listing/Import/Caption>></$button>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -29,6 +29,7 @@ These are the available system tags
|
|||||||
|<<tag "$:/tags/Exporter">> |for the exporters |
|
|<<tag "$:/tags/Exporter">> |for the exporters |
|
||||||
|<<tag "$:/tags/Filter">> |for filters in advanced seach sample filter dropdown |
|
|<<tag "$:/tags/Filter">> |for filters in advanced seach sample filter dropdown |
|
||||||
|<<tag "$:/tags/Image">> |for (core) images |
|
|<<tag "$:/tags/Image">> |for (core) images |
|
||||||
|
|<<tag "$:/tags/ImportPreview">> |for preview types for the import listing |
|
||||||
|<<tag "$:/tags/Manager/ItemMain">> |for the tiddler manager. $:/Manager |
|
|<<tag "$:/tags/Manager/ItemMain">> |for the tiddler manager. $:/Manager |
|
||||||
|<<tag "$:/tags/Manager/ItemSidebar">> |for the tiddler manager |
|
|<<tag "$:/tags/Manager/ItemSidebar">> |for the tiddler manager |
|
||||||
|<<tag "$:/tags/Macro">> |for global macros |
|
|<<tag "$:/tags/Macro">> |for global macros |
|
||||||
|
@ -2410,6 +2410,20 @@ body.tc-dirty span.tc-dirty-indicator, body.tc-dirty span.tc-dirty-indicator svg
|
|||||||
color: <<colour diff-invisible-foreground>>;
|
color: <<colour diff-invisible-foreground>>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tc-diff-tiddlers th {
|
||||||
|
text-align: right;
|
||||||
|
background: <<colour background>>;
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tc-diff-tiddlers pre {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** Errors
|
** Errors
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user