mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-09 03:19:56 +00:00
7498989ebb
Can be specified directly, or taken from a field of the tiddler being sliced, falling back to a default.
49 lines
952 B
JavaScript
49 lines
952 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: false
|
|
};
|
|
|
|
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,
|
|
sourceTitle = this.params[0],
|
|
destTitle = this.params[1],
|
|
slicer = new $tw.Slicer(wiki,sourceTitle,{
|
|
destTitle: destTitle
|
|
});
|
|
slicer.sliceTiddler()
|
|
slicer.outputTiddlers();
|
|
slicer.destroy();
|
|
$tw.utils.nextTick(this.callback);
|
|
return null;
|
|
};
|
|
|
|
exports.Command = Command;
|
|
|
|
})();
|