1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-06 02:37:14 +00:00
This commit is contained in:
Jeremy Ruston 2025-03-19 11:00:03 +00:00
parent 7640135a7e
commit 938e72dc34
3 changed files with 29 additions and 3 deletions

View File

@ -18,6 +18,10 @@ Export our filter prefix function
exports.let = function(operationSubFunction,options) {
// Return the filter run prefix function
return function(results,source,widget) {
// Save the result list
var resultList = results.toArray();
// Clear the results
results.clear();
// Evaluate the subfunction to get the variable name
var subFunctionResults = operationSubFunction(source,widget);
if(subFunctionResults.length === 0) {
@ -29,9 +33,7 @@ exports.let = function(operationSubFunction,options) {
}
// Assign the result of the subfunction to the variable
var variables = {};
variables[name] = results.toArray()
// Clear the results
results.clear();
variables[name] = resultList;
// Return the variables
return {
variables: variables

View File

@ -0,0 +1,12 @@
title: LetFilterRunPrefix/ResultListUnnamedVariable
description: Using the "let" filter run prefix to store result lists, not just single values
type: text/vnd.tiddlywiki-multiple
tags: [[$:/tags/wiki-test-spec]]
title: Output
<$text text={{{ [all[tiddlers]] :let[all[]tag[nothing]] [varlist[varname]sort[]join[,]] }}}/>
+
title: ExpectedResult
<p></p>

View File

@ -0,0 +1,12 @@
title: MultiValuedVariables/MissingVariable
description: Using varlist with a missing variable
type: text/vnd.tiddlywiki-multiple
tags: [[$:/tags/wiki-test-spec]]
title: Output
<$text text={{{ [varlist[varname]] }}}/>
+
title: ExpectedResult
<p></p>