mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-02 06:19:57 +00:00
45 lines
869 B
JavaScript
45 lines
869 B
JavaScript
|
/*\
|
||
|
title: $:/plugins/tiddlywiki/text-slicer/modules/commands/slice.js
|
||
|
type: application/javascript
|
||
|
module-type: command
|
||
|
|
||
|
Command to slice a specified tiddler
|
||
|
|
||
|
\*/
|
||
|
(function(){
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
var widget = require("$:/core/modules/widgets/widget.js");
|
||
|
|
||
|
exports.info = {
|
||
|
name: "slice",
|
||
|
synchronous: true
|
||
|
};
|
||
|
|
||
|
var Command = function(params,commander,callback) {
|
||
|
this.params = params;
|
||
|
this.commander = commander;
|
||
|
this.callback = callback;
|
||
|
};
|
||
|
|
||
|
Command.prototype.execute = function() {
|
||
|
if(this.params.length < 1) {
|
||
|
return "Missing parameters";
|
||
|
}
|
||
|
var self = this,
|
||
|
wiki = this.commander.wiki,
|
||
|
tiddlerTitle = this.params[0],
|
||
|
slicer = new $tw.Slicer(wiki,tiddlerTitle);
|
||
|
slicer.sliceTiddler(tiddlerTitle)
|
||
|
slicer.outputTiddlers();
|
||
|
slicer.destroy();
|
||
|
return null;
|
||
|
};
|
||
|
|
||
|
exports.Command = Command;
|
||
|
|
||
|
})();
|