mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-23 13:01:23 -08:00
Shout out to the TiddlySpot tiddler macro for being completely broken, but also being completely unused, so no one noticed.
30 lines
1.1 KiB
Text
30 lines
1.1 KiB
Text
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()
|
|
\whitespace trim
|
|
//<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>>
|