mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 10:06:19 +00:00
84479bc403
* Update search.tid * Update DefaultSearchResultList.tid * Update tabs.tid * Update SearchResults.tid * Update tabs.tid * Update SearchResults.tid * Update search.tid * Update keyboard-driven-input.tid * Update shortcuts.multids * Update ShortcutInfo.multids * Update Misc.multids * Update keyboard-driven-input.tid * Update search.tid * Update Misc.multids
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
title: $:/core/ui/DefaultSearchResultList
|
|
tags: $:/tags/SearchResults
|
|
caption: {{$:/language/Search/DefaultResults/Caption}}
|
|
first-search-filter: [!is[system]search:title<userInput>sort[title]limit[250]]
|
|
second-search-filter: [!is[system]search<userInput>sort[title]limit[250]]
|
|
|
|
\define searchResultList()
|
|
//<small>{{$:/language/Search/Matches/Title}}</small>//
|
|
|
|
<$list filter="[<userInput>minlength[1]]" variable="ignore">
|
|
<$list filter={{{ [<configTiddler>get[first-search-filter]] }}}>
|
|
<span class={{{[<currentTiddler>addsuffix[-primaryList]] -[<searchListState>get[text]] +[then[]else[tc-list-item-selected]] }}}>
|
|
<$transclude tiddler="$:/core/ui/ListItemTemplate"/>
|
|
</span>
|
|
</$list>
|
|
</$list>
|
|
|
|
//<small>{{$:/language/Search/Matches/All}}</small>//
|
|
|
|
<$list filter="[<userInput>minlength[1]]" variable="ignore">
|
|
<$list filter={{{ [<configTiddler>get[second-search-filter]] }}}>
|
|
<span class={{{[<currentTiddler>addsuffix[-secondaryList]] -[<searchListState>get[text]] +[then[]else[tc-list-item-selected]] }}}>
|
|
<$transclude tiddler="$:/core/ui/ListItemTemplate"/>
|
|
</span>
|
|
</$list>
|
|
</$list>
|
|
|
|
\end
|
|
<<searchResultList>>
|