-
Notifications
You must be signed in to change notification settings - Fork 2
/
BookmarksAddTag.tid
126 lines (123 loc) · 3.77 KB
/
BookmarksAddTag.tid
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
title: $:/plugins/OokTech/Bookmarks/BookmarksAddTag
\define lingo-base() $:/language/EditTemplate/
\define tag-styles()
background-color:$(backgroundColor)$;
fill:$(foregroundColor)$;
color:$(foregroundColor)$;
\end
\define tag-body-inner(colour,fallbackTarget,colourA,colourB)
<$vars
foregroundColor=<<contrastcolour target:"""$colour$""" fallbackTarget:"""$fallbackTarget$""" colourA:"""$colourA$""" colourB:"""$colourB$""">>
backgroundColor="""$colour$"""
>
<span
style=<<tag-styles>>
class="tc-tag-label"
>
<$view
field="title"
format="text"
/>
<$button
message="tm-remove-tag"
param={{!!title}}
class="tc-btn-invisible tc-remove-tag-button"
>
×
</$button>
</span>
</$vars>
\end
\define tag-body(colour,palette)
<$macrocall
$name="tag-body-inner"
colour="""$colour$"""
fallbackTarget={{$palette$##tag-background}}
colourA={{$palette$##foreground}}
colourB={{$palette$##background}}
/>
\end
<div
class="tc-edit-tags"
>
<$fieldmangler>
<$list
filter="[all[current]tags[]sort[title]]"
storyview="pop"
>
<$macrocall
$name="tag-body"
colour={{!!color}}
palette={{$:/palette}}
/>
</$list>
<div
class="tc-edit-add-tag"
>
<span
class="tc-add-tag-name"
>
<$edit-text
tiddler="$:/temp/NewTagName"
tag="input"
default=""
placeholder={{$:/language/EditTemplate/Tags/Add/Placeholder}}
focusPopup=<<qualify "$:/state/popup/tags-auto-complete">>
class="tc-edit-texteditor tc-popup-handle"
/>
</span>
<$button
popup=<<qualify "$:/state/popup/tags-auto-complete">>
class="tc-btn-invisible tc-btn-dropdown"
tooltip={{$:/language/EditTemplate/Tags/Dropdown/Hint}}
aria-label={{$:/language/EditTemplate/Tags/Dropdown/Caption}}
>
{{$:/core/images/down-arrow}}
</$button>
<span
class="tc-add-tag-button"
>
<$button
message="tm-add-tag"
param={{$:/temp/NewTagName}}
set="$:/temp/NewTagName"
setTo=""
class=""
>
<$action-setfield
$tiddler='$:/data/Bookmarks/BookmarkTags'
$index={{$:/temp/NewTagName}}
$value=1
/>
<<lingo Tags/Add/Button>>
</$button>
</span>
</div>
<div
class="tc-block-dropdown-wrapper"
>
<$reveal
state=<<qualify "$:/state/popup/tags-auto-complete">>
type="nomatch"
text=""
default=""
>
<div
class="tc-block-dropdown"
>
<$linkcatcher
set="$:/temp/NewTagName"
setTo=""
message="tm-add-tag"
>
<$list
filter="[[$:/data/Bookmarks/BookmarkTags]indexes[]search:title{$:/temp/NewTagName}sort[]]"
>
{{||$:/core/ui/Components/tag-link}}
</$list>
</$linkcatcher>
</div>
</$reveal>
</div>
</$fieldmangler>
</div>