2013-05-27 19:45:33 +00:00
|
|
|
define([
|
|
|
|
"jquery",
|
2013-06-10 21:22:32 +00:00
|
|
|
"underscore",
|
2013-06-22 23:48:57 +00:00
|
|
|
"classes/Extension",
|
2013-06-10 21:22:32 +00:00
|
|
|
"text!html/dialogManageSynchronizationLocation.html",
|
2013-06-22 23:48:57 +00:00
|
|
|
], function($, _, Extension, dialogManageSynchronizationLocationHTML) {
|
2013-05-29 19:55:23 +00:00
|
|
|
|
2013-06-22 23:48:57 +00:00
|
|
|
var dialogManageSynchronization = new Extension("dialogManageSynchronization", 'Dialog "Manage synchronization"');
|
2013-05-29 19:55:23 +00:00
|
|
|
|
2013-07-30 08:46:36 +00:00
|
|
|
var eventMgr = undefined;
|
|
|
|
dialogManageSynchronization.onEventMgrCreated = function(eventMgrParameter) {
|
|
|
|
eventMgr = eventMgrParameter;
|
2013-05-29 19:55:23 +00:00
|
|
|
};
|
2013-07-20 01:08:17 +00:00
|
|
|
|
|
|
|
var synchronizer = undefined;
|
|
|
|
dialogManageSynchronization.onSynchronizerCreated = function(synchronizerParameter) {
|
|
|
|
synchronizer = synchronizerParameter;
|
|
|
|
};
|
2013-05-29 19:55:23 +00:00
|
|
|
|
|
|
|
var fileDesc = undefined;
|
2013-08-11 00:52:05 +00:00
|
|
|
var removeButtonTemplate = '<a class="btn btn-default" title="Remove this location"><i class="icon-trash"></i></a>';
|
2013-05-29 19:55:23 +00:00
|
|
|
var refreshDialog = function(fileDescParameter) {
|
|
|
|
if(fileDescParameter !== undefined && fileDescParameter !== fileDesc) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var syncAttributesList = _.values(fileDesc.syncLocations);
|
|
|
|
$(".msg-no-sync, .msg-sync-list").addClass("hide");
|
|
|
|
var syncList = $("#manage-sync-list").empty();
|
|
|
|
if(syncAttributesList.length > 0) {
|
|
|
|
$(".msg-sync-list").removeClass("hide");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$(".msg-no-sync").removeClass("hide");
|
|
|
|
}
|
|
|
|
_.each(syncAttributesList, function(syncAttributes) {
|
|
|
|
var syncDesc = syncAttributes.id || syncAttributes.path;
|
2013-06-10 21:22:32 +00:00
|
|
|
var lineElement = $(_.template(dialogManageSynchronizationLocationHTML, {
|
2013-05-29 19:55:23 +00:00
|
|
|
provider: syncAttributes.provider,
|
2013-07-21 14:38:53 +00:00
|
|
|
syncDesc: syncDesc,
|
|
|
|
isRealtime: syncAttributes.isRealtime
|
2013-05-29 19:55:23 +00:00
|
|
|
}));
|
2013-08-04 23:49:07 +00:00
|
|
|
lineElement.append($('<div class="input-group-btn">').append($(removeButtonTemplate).click(function() {
|
2013-07-20 01:08:17 +00:00
|
|
|
synchronizer.tryStopRealtimeSync();
|
2013-06-16 10:47:35 +00:00
|
|
|
fileDesc.removeSyncLocation(syncAttributes);
|
2013-07-30 08:46:36 +00:00
|
|
|
eventMgr.onSyncRemoved(fileDesc, syncAttributes);
|
2013-08-04 23:49:07 +00:00
|
|
|
})));
|
2013-05-29 19:55:23 +00:00
|
|
|
syncList.append(lineElement);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-06-10 21:22:32 +00:00
|
|
|
dialogManageSynchronization.onFileSelected = function(fileDescParameter) {
|
2013-05-29 19:55:23 +00:00
|
|
|
fileDesc = fileDescParameter;
|
|
|
|
refreshDialog(fileDescParameter);
|
|
|
|
};
|
|
|
|
|
2013-06-10 21:22:32 +00:00
|
|
|
dialogManageSynchronization.onSyncExportSuccess = refreshDialog;
|
|
|
|
dialogManageSynchronization.onSyncRemoved = refreshDialog;
|
2013-05-29 19:55:23 +00:00
|
|
|
|
2013-06-10 21:22:32 +00:00
|
|
|
dialogManageSynchronization.onReady = function() {
|
2013-06-02 00:38:23 +00:00
|
|
|
// Handle enter key in the sync manual inputs
|
|
|
|
$(".sync-manual").each(function() {
|
|
|
|
var elt = $(this);
|
|
|
|
elt.find("input").keyup(function(e) {
|
|
|
|
if(e.which == 13) {
|
|
|
|
elt.find("a").click();
|
|
|
|
e.stopPropagation();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-06-10 21:22:32 +00:00
|
|
|
return dialogManageSynchronization;
|
2013-05-29 19:55:23 +00:00
|
|
|
|
2013-05-26 22:59:17 +00:00
|
|
|
});
|