mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
752a126cc4
Whoops
53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
title: $:/core/ui/EditorToolbar/link-dropdown
|
|
|
|
\define lingo-base() $:/language/Buttons/Link/
|
|
|
|
\define link-actions()
|
|
<$action-sendmessage
|
|
$message="tm-edit-text-operation"
|
|
$param="make-link"
|
|
text={{$(linkTiddler)$}}
|
|
/>
|
|
|
|
<$action-deletetiddler
|
|
$tiddler=<<dropdown-state>>
|
|
/>
|
|
|
|
<$action-deletetiddler
|
|
$tiddler=<<searchTiddler>>
|
|
/>
|
|
|
|
<$action-deletetiddler
|
|
$tiddler=<<linkTiddler>>
|
|
/>
|
|
\end
|
|
|
|
\define body(config-title)
|
|
''<<lingo Hint>>''
|
|
|
|
<$vars searchTiddler="""$config-title$/search""" linkTiddler="""$config-title$/link""">
|
|
|
|
<$edit-text tiddler=<<searchTiddler>> type="search" tag="input" focus="true" placeholder={{$:/language/Search/Search}} default=""/>
|
|
<$reveal tag="span" state=<<searchTiddler>> type="nomatch" text="">
|
|
<$button class="tc-btn-invisible" style="width: auto; display: inline-block; background-colour: inherit;">
|
|
<$action-setfield $tiddler=<<searchTiddler>> text="" />
|
|
{{$:/core/images/close-button}}
|
|
</$button>
|
|
</$reveal>
|
|
|
|
<$reveal tag="div" state=<<searchTiddler>> type="nomatch" text="">
|
|
|
|
<$linkcatcher actions=<<link-actions>> to=<<linkTiddler>>>
|
|
|
|
{{$:/core/ui/SearchResults}}
|
|
|
|
</$linkcatcher>
|
|
|
|
</$reveal>
|
|
|
|
</$vars>
|
|
|
|
\end
|
|
|
|
<$macrocall $name="body" config-title=<<qualify "$:/state/Link/">>/>
|