Add commands command to run commands returned from a filter (#7073)

This commit is contained in:
Carlo Colombo 2022-12-04 11:59:59 +01:00 committed by GitHub
parent 2c33502a4a
commit a93a499684
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,14 @@
title: $:/language/Help/commands
description: Run commands returned from a filter
It runs sequentially the commands returned from the filter.
```
--commands <filter>
```
Examples
`--commands "[enlist{$:/build-commands-as-text}]"`
`--commands "[{$:/build-commands-as-json}jsonindexes[]] :map[{$:/build-commands-as-json}jsonget<currentTiddler>]"`

View File

@ -0,0 +1,43 @@
/*\
title: $:/core/modules/commands/commands.js
type: application/javascript
module-type: command
Runs sequentially the commands returned from the filter.
\*/
(function() {
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.info = {
name: "commands",
synchronous: true
};
var Command = function(params, commander) {
this.params = params;
this.commander = commander;
};
Command.prototype.execute = function() {
// Parse the filter
var filter = this.params[0];
if(!filter) {
return "No filter specified";
}
var commands = this.commander.wiki.filterTiddlers(filter)
if(commands.length === 0) {
return "No tiddlers found for filter '" + filter + "'";
}
this.commander.addCommandTokens(commands);
return null;
};
exports.Command = Command;
})();