2018-06-04 00:06:17 +08:00
|
|
|
(function (global, document) {
|
2018-06-24 10:01:21 +08:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
(document);
|
2018-06-04 00:06:17 +08:00
|
|
|
|
|
|
|
// Opens the import window.
|
|
|
|
global.importOpen = function() {
|
|
|
|
$(".view").hide();
|
|
|
|
$("#import-view").show();
|
|
|
|
}
|
|
|
|
|
|
|
|
global.importDisqus = function() {
|
|
|
|
var url = $("#disqus-url").val();
|
|
|
|
var data = global.dashboard.$data;
|
|
|
|
|
|
|
|
var json = {
|
2018-06-20 11:36:49 +08:00
|
|
|
"ownerToken": global.cookieGet("commentoOwnerToken"),
|
2018-06-20 11:29:55 +08:00
|
|
|
"domain": data.domains[data.cd].domain,
|
|
|
|
"url": url,
|
2018-06-04 00:06:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
global.buttonDisable("#disqus-import-button");
|
2018-12-20 13:48:43 +08:00
|
|
|
global.post(global.origin + "/api/domain/import/disqus", json, function(resp) {
|
2018-06-04 00:06:17 +08:00
|
|
|
global.buttonEnable("#disqus-import-button");
|
|
|
|
|
|
|
|
if (!resp.success) {
|
|
|
|
global.globalErrorShow(resp.message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-14 16:58:11 +08:00
|
|
|
$("#disqus-import-button").hide();
|
|
|
|
|
2018-12-20 13:48:43 +08:00
|
|
|
global.globalOKShow("Imported " + resp.numImported + " comments!");
|
2018-06-04 00:06:17 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-02-01 15:12:21 +08:00
|
|
|
global.importCommento = function() {
|
|
|
|
var url = $("#commento-url").val();
|
|
|
|
var data = global.dashboard.$data;
|
|
|
|
|
|
|
|
var json = {
|
|
|
|
"ownerToken": global.cookieGet("commentoOwnerToken"),
|
|
|
|
"domain": data.domains[data.cd].domain,
|
|
|
|
"url": url,
|
|
|
|
}
|
|
|
|
|
|
|
|
global.buttonDisable("#commento-import-button");
|
|
|
|
global.post(global.origin + "/api/domain/import/commento", json, function(resp) {
|
|
|
|
global.buttonEnable("#commento-import-button");
|
|
|
|
|
|
|
|
if (!resp.success) {
|
|
|
|
global.globalErrorShow(resp.message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$("#commento-import-button").hide();
|
|
|
|
|
|
|
|
global.globalOKShow("Imported " + resp.numImported + " comments!");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-12-20 13:48:43 +08:00
|
|
|
} (window.commento, document));
|