2014-05-05 14:41:46 +01:00
|
|
|
/*\
|
|
|
|
title: $:/core/modules/startup/rootwidget.js
|
|
|
|
type: application/javascript
|
|
|
|
module-type: startup
|
|
|
|
|
2014-05-05 15:25:51 +01:00
|
|
|
Setup the root widget and the core root widget handlers
|
2014-05-05 14:41:46 +01:00
|
|
|
|
|
|
|
\*/
|
|
|
|
(function(){
|
|
|
|
|
|
|
|
/*jslint node: true, browser: true */
|
|
|
|
/*global $tw: false */
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
// Export name and synchronous status
|
|
|
|
exports.name = "rootwidget";
|
|
|
|
exports.platforms = ["browser"];
|
2014-08-13 20:20:58 +01:00
|
|
|
exports.after = ["startup"];
|
2014-05-05 15:25:51 +01:00
|
|
|
exports.before = ["story"];
|
2014-05-05 14:41:46 +01:00
|
|
|
exports.synchronous = true;
|
|
|
|
|
|
|
|
exports.startup = function() {
|
|
|
|
// Install the modal message mechanism
|
|
|
|
$tw.modal = new $tw.utils.Modal($tw.wiki);
|
2014-08-28 21:43:44 +01:00
|
|
|
$tw.rootWidget.addEventListener("tm-modal",function(event) {
|
2018-11-18 21:57:04 +01:00
|
|
|
$tw.modal.display(event.param,{variables: event.paramObject, event: event});
|
2014-05-05 14:41:46 +01:00
|
|
|
});
|
2020-11-23 18:06:24 +01:00
|
|
|
$tw.rootWidget.addEventListener("tm-show-switcher",function(event) {
|
|
|
|
$tw.modal.display("$:/core/ui/SwitcherModal",{variables: event.paramObject, event: event});
|
2021-05-30 20:20:17 +02:00
|
|
|
});
|
2014-05-05 14:41:46 +01:00
|
|
|
// Install the notification mechanism
|
|
|
|
$tw.notifier = new $tw.utils.Notifier($tw.wiki);
|
2014-08-28 21:43:44 +01:00
|
|
|
$tw.rootWidget.addEventListener("tm-notify",function(event) {
|
2016-07-03 14:55:41 +01:00
|
|
|
$tw.notifier.display(event.param,{variables: event.paramObject});
|
2014-05-05 14:41:46 +01:00
|
|
|
});
|
2017-12-15 15:08:18 +00:00
|
|
|
// Install the copy-to-clipboard mechanism
|
|
|
|
$tw.rootWidget.addEventListener("tm-copy-to-clipboard",function(event) {
|
|
|
|
$tw.utils.copyToClipboard(event.param);
|
|
|
|
});
|
2019-06-28 17:27:36 +01:00
|
|
|
// Install the tm-focus-selector message
|
|
|
|
$tw.rootWidget.addEventListener("tm-focus-selector",function(event) {
|
|
|
|
var selector = event.param || "",
|
2021-06-06 13:42:28 +02:00
|
|
|
element,
|
2023-05-06 12:54:54 +02:00
|
|
|
baseElement = event.event && event.event.target ? event.event.target.ownerDocument : document;
|
|
|
|
element = $tw.utils.querySelectorSafe(selector,baseElement);
|
2019-06-28 17:27:36 +01:00
|
|
|
if(element && element.focus) {
|
2019-08-06 14:12:21 +02:00
|
|
|
element.focus(event.paramObject);
|
2019-06-28 17:27:36 +01:00
|
|
|
}
|
|
|
|
});
|
2022-02-19 09:38:48 +00:00
|
|
|
// Install the tm-rename-tiddler and tm-relink-tiddler messages
|
|
|
|
var makeRenameHandler = function(method) {
|
|
|
|
return function(event) {
|
|
|
|
var options = {},
|
|
|
|
paramObject = event.paramObject || {},
|
|
|
|
from = paramObject.from || event.tiddlerTitle,
|
|
|
|
to = paramObject.to;
|
|
|
|
options.dontRenameInTags = (paramObject.renameInTags === "false" || paramObject.renameInTags === "no") ? true : false;
|
|
|
|
options.dontRenameInLists = (paramObject.renameInLists === "false" || paramObject.renameInLists === "no") ? true : false;
|
|
|
|
$tw.wiki[method](from,to,options);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
$tw.rootWidget.addEventListener("tm-rename-tiddler",makeRenameHandler("renameTiddler"));
|
|
|
|
$tw.rootWidget.addEventListener("tm-relink-tiddler",makeRenameHandler("relinkTiddler"));
|
2014-05-05 14:41:46 +01:00
|
|
|
// Install the scroller
|
|
|
|
$tw.pageScroller = new $tw.utils.PageScroller();
|
2014-08-28 21:43:44 +01:00
|
|
|
$tw.rootWidget.addEventListener("tm-scroll",function(event) {
|
2014-05-05 14:41:46 +01:00
|
|
|
$tw.pageScroller.handleEvent(event);
|
|
|
|
});
|
2014-08-01 16:52:12 +01:00
|
|
|
var fullscreen = $tw.utils.getFullScreenApis();
|
2014-08-03 12:35:53 +01:00
|
|
|
if(fullscreen) {
|
2014-08-28 21:43:44 +01:00
|
|
|
$tw.rootWidget.addEventListener("tm-full-screen",function(event) {
|
2019-03-09 18:09:34 +01:00
|
|
|
var fullScreenDocument = event.event ? event.event.target.ownerDocument : document;
|
2018-08-14 22:53:53 +01:00
|
|
|
if(event.param === "enter") {
|
2019-03-09 18:09:34 +01:00
|
|
|
fullScreenDocument.documentElement[fullscreen._requestFullscreen](Element.ALLOW_KEYBOARD_INPUT);
|
2018-08-14 22:53:53 +01:00
|
|
|
} else if(event.param === "exit") {
|
2019-03-09 18:09:34 +01:00
|
|
|
fullScreenDocument[fullscreen._exitFullscreen]();
|
2014-08-03 12:35:53 +01:00
|
|
|
} else {
|
2019-03-09 18:09:34 +01:00
|
|
|
if(fullScreenDocument[fullscreen._fullscreenElement]) {
|
|
|
|
fullScreenDocument[fullscreen._exitFullscreen]();
|
2018-08-14 22:53:53 +01:00
|
|
|
} else {
|
2019-03-09 18:09:34 +01:00
|
|
|
fullScreenDocument.documentElement[fullscreen._requestFullscreen](Element.ALLOW_KEYBOARD_INPUT);
|
2021-05-30 20:20:17 +02:00
|
|
|
}
|
2014-08-03 12:35:53 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2014-05-05 14:41:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
})();
|