2018-06-04 00:06:17 +08:00
|
|
|
(function (global, document) {
|
|
|
|
|
|
|
|
// 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-06-16 21:25:27 +08:00
|
|
|
global.post(global.commentoOrigin + "/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-06-04 00:06:17 +08:00
|
|
|
globalOKShow("Imported " + resp.numImported + " comments!");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
} (window, document));
|