1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-24 06:13:17 +00:00
TiddlyWiki5/core/modules/startup/startup.js

75 lines
1.9 KiB
JavaScript
Raw Normal View History

/*\
title: $:/core/modules/startup.js
type: application/javascript
module-type: startup
Miscellaneous startup logic for both the client and server.
\*/
(function(){
/*jslint node: true, browser: true */
2012-05-04 17:49:04 +00:00
/*global $tw: false */
"use strict";
// Export name and synchronous status
exports.name = "startup";
exports.after = ["load-modules"];
exports.synchronous = true;
// Set to `true` to enable performance instrumentation
var PERFORMANCE_INSTRUMENTATION = false;
exports.startup = function() {
var modules,n,m,f;
2012-10-25 21:20:27 +00:00
if($tw.browser) {
$tw.browser.isIE = (/msie|trident/i.test(navigator.userAgent));
2012-10-25 21:20:27 +00:00
}
$tw.version = $tw.utils.extractVersionInfo();
// Set up the performance framework
$tw.perf = new $tw.Performance(PERFORMANCE_INSTRUMENTATION);
// Kick off the language manager and switcher
$tw.language = new $tw.Language();
$tw.languageSwitcher = new $tw.PluginSwitcher({
wiki: $tw.wiki,
pluginType: "language",
controllerTitle: "$:/language",
defaultPlugins: [
"$:/languages/en-US"
]
});
// Kick off the theme manager
$tw.themeManager = new $tw.PluginSwitcher({
wiki: $tw.wiki,
pluginType: "theme",
controllerTitle: "$:/theme",
defaultPlugins: [
"$:/themes/tiddlywiki/snowwhite",
"$:/themes/tiddlywiki/vanilla"
]
});
// Clear outstanding tiddler store change events to avoid an unnecessary refresh cycle at startup
$tw.wiki.clearTiddlerEventQueue();
// Create a root widget for attaching event handlers. By using it as the parentWidget for another widget tree, one can reuse the event handlers
$tw.rootWidget = new widget.widget({
type: "widget",
children: []
},{
wiki: $tw.wiki,
document: document
});
// Set up the syncer object
$tw.syncer = new $tw.Syncer({wiki: $tw.wiki});
2012-05-05 10:21:59 +00:00
// Host-specific startup
if($tw.browser) {
// Install the popup manager
$tw.popup = new $tw.utils.Popup({
2012-06-19 15:47:35 +00:00
rootElement: document.body
});
// Install the animator
$tw.anim = new $tw.utils.Animator();
2012-05-05 10:21:59 +00:00
}
2012-05-04 17:49:04 +00:00
};
})();