mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-16 06:44:50 +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
63 lines
3.4 KiB
Plaintext
63 lines
3.4 KiB
Plaintext
title: $:/core/macros/keyboard-driven-input
|
|
tags: $:/tags/Macro
|
|
|
|
\define change-input-tab(stateTitle,tag,beforeafter,defaultState,actions)
|
|
<$set name="tabsList" filter="[all[shadows+tiddlers]tag<__tag__>!has[draft.of]]">
|
|
<$vars currentState={{{ [<__stateTitle__>!is[missing]get[text]] ~[<__defaultState__>] }}} firstTab={{{ [enlist<tabsList>nth[1]] }}} lastTab={{{ [enlist<tabsList>last[]] }}}>
|
|
<$set name="nextTab" value={{{ [all[shadows+tiddlers]tag<__tag__>!has[draft.of]$beforeafter$<currentState>] ~[[$beforeafter$]removeprefix[after]suffix[]addprefix<firstTab>] ~[[$beforeafter$]removeprefix[before]suffix[]addprefix<lastTab>] }}}>
|
|
<$action-setfield $tiddler=<<__stateTitle__>> text=<<nextTab>>/>
|
|
$actions$
|
|
</$set>
|
|
</$vars>
|
|
</$set>
|
|
\end
|
|
|
|
\define keyboard-input-actions()
|
|
<$list filter="[<__index__>match[]]">
|
|
<$action-setfield $tiddler=<<__storeTitle__>> text={{{ [<__tiddler__>get<__field__>] }}}/>
|
|
</$list>
|
|
<$list filter="[<__index__>!match[]]">
|
|
<$action-setfield $tiddler=<<__storeTitle__>> text={{{ [<__tiddler__>getindex<__index__>] }}}/>
|
|
</$list>
|
|
\end
|
|
|
|
\define input-next-actions(afterOrBefore:"after",reverse:"")
|
|
<$list filter="[<__storeTitle__>get[text]minlength<__filterMinLength__>] [<__filterMinLength__>match[0]] +[limit[1]]" variable="ignore">
|
|
<$vars userInput={{{ [<__storeTitle__>get[text]] }}} selectedItem={{{ [<__selectionStateTitle__>get[text]] }}}>
|
|
<$set name="filteredList" filter="[subfilter<__primaryListFilter__>addsuffix[-primaryList]] =[subfilter<__secondaryListFilter__>addsuffix[-secondaryList]]">
|
|
<$set name="nextItem" value={{{ [enlist<filteredList>$afterOrBefore$<selectedItem>] ~[enlist<filteredList>$reverse$nth[1]] }}}>
|
|
<$list filter="[<nextItem>minlength[1]]">
|
|
<$action-setfield $tiddler=<<__selectionStateTitle__>> text=<<nextItem>>/>
|
|
<$list filter="[<__index__>match[]]">
|
|
<$action-setfield $tiddler=<<__tiddler__>> $field=<<__field__>> $value={{{ [<nextItem>] +[splitregexp[(?:.(?!-))+$]] }}}/>
|
|
</$list>
|
|
<$list filter="[<__index__>!match[]]">
|
|
<$action-setfield $tiddler=<<__tiddler__>> $index=<<__index__>> $value={{{ [<nextItem>] +[splitregexp[(?:.(?!-))+$]] }}}/>
|
|
</$list>
|
|
<$action-setfield $tiddler=<<__refreshTitle__>> text="yes"/>
|
|
</$list>
|
|
</$set>
|
|
</$set>
|
|
</$vars>
|
|
</$list>
|
|
\end
|
|
|
|
\define keyboard-driven-input(tiddler,storeTitle,field:"text",index:"",tag:"input",type,focus:"",inputAcceptActions,inputAcceptVariantActions,inputCancelActions,placeholder:"",default:"",class,primaryListFilter,secondaryListFilter,focusPopup,rows,minHeight,tabindex,size,autoHeight,filterMinLength:"0",refreshTitle,selectionStateTitle,cancelPopups:"")
|
|
<$keyboard key="((input-accept))" actions=<<__inputAcceptActions__>>>
|
|
<$keyboard key="((input-accept-variant))" actions=<<__inputAcceptVariantActions__>>>
|
|
<$keyboard key="((input-up))" actions=<<input-next-actions "before" "reverse[]">>>
|
|
<$keyboard key="((input-down))" actions=<<input-next-actions>>>
|
|
<$keyboard key="((input-cancel))" actions=<<__inputCancelActions__>>>
|
|
<$edit-text tiddler=<<__tiddler__>> field=<<__field__>> index=<<__index__>>
|
|
inputActions=<<keyboard-input-actions>> tag=<<__tag__>> class=<<__class__>>
|
|
placeholder=<<__placeholder__>> default=<<__default__>> focusPopup=<<__focusPopup__>>
|
|
focus=<<__focus__>> type=<<__type__>> rows=<<__rows__>> minHeight=<<__minHeight__>>
|
|
tabindex=<<__tabindex__>> size=<<__size__>> autoHeight=<<__autoHeight__>>
|
|
refreshTitle=<<__refreshTitle__>> cancelPopups=<<__cancelPopups__>>/>
|
|
</$keyboard>
|
|
</$keyboard>
|
|
</$keyboard>
|
|
</$keyboard>
|
|
</$keyboard>
|
|
\end
|