mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
39 lines
846 B
JavaScript
39 lines
846 B
JavaScript
/*\
|
|
title: $:/plugins/tiddlywiki/twitter-archivist/startup.js
|
|
type: application/javascript
|
|
module-type: startup
|
|
|
|
Twitter initialisation
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
// Export name and synchronous status
|
|
exports.name = "twitter-archivist";
|
|
exports.after = ["startup"];
|
|
exports.synchronous = true;
|
|
|
|
exports.startup = function() {
|
|
$tw.rootWidget.addEventListener("tm-load-twitter-archive",function(event) {
|
|
// Load tweets
|
|
var archiveSource = new $tw.utils.TwitterArchivistSourceBrowser({
|
|
}),
|
|
archivist = new $tw.utils.TwitterArchivist({
|
|
source: archiveSource
|
|
});
|
|
archivist.loadArchive({
|
|
wiki: $tw.wiki
|
|
}).then(function() {
|
|
alert("Archived tweets imported");
|
|
}).catch(function(err) {
|
|
alert("Error importing archived tweets: " + err);
|
|
});
|
|
});
|
|
};
|
|
|
|
})();
|