2013-05-27 19:45:33 +00:00
|
|
|
define([
|
|
|
|
"jquery",
|
|
|
|
"underscore"
|
|
|
|
], function($, _) {
|
2013-05-29 19:55:23 +00:00
|
|
|
|
|
|
|
var manageSynchronization = {
|
|
|
|
extensionId: "manageSynchronization",
|
|
|
|
extensionName: "Manage synchronization",
|
|
|
|
settingsBloc: '<p>Populates the "Manage synchronization" dialog box.</p>'
|
|
|
|
};
|
|
|
|
|
|
|
|
var fileMgr = undefined;
|
|
|
|
manageSynchronization.onFileMgrCreated = function(fileMgrParameter) {
|
|
|
|
fileMgr = fileMgrParameter;
|
|
|
|
};
|
|
|
|
|
|
|
|
var fileDesc = undefined;
|
|
|
|
var lineTemplate = [
|
2013-05-26 22:59:17 +00:00
|
|
|
'<div class="input-prepend input-append">',
|
2013-05-29 19:55:23 +00:00
|
|
|
' <span class="add-on" title="<%= provider.providerName %>">',
|
|
|
|
' <i class="icon-<%= provider.providerId %>"></i>',
|
|
|
|
' </span>',
|
|
|
|
' <input class="span5" type="text" value="<%= syncDesc %>" disabled />',
|
|
|
|
'</div>'
|
|
|
|
].join("");
|
|
|
|
var removeButtonTemplate = '<a class="btn" title="Remove this location"><i class="icon-trash"></i></a>';
|
|
|
|
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;
|
|
|
|
var lineElement = $(_.template(lineTemplate, {
|
|
|
|
provider: syncAttributes.provider,
|
|
|
|
syncDesc: syncDesc
|
|
|
|
}));
|
|
|
|
lineElement.append($(removeButtonTemplate).click(function() {
|
|
|
|
fileMgr.removeSync(syncAttributes);
|
|
|
|
}));
|
|
|
|
syncList.append(lineElement);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
manageSynchronization.onFileSelected = function(fileDescParameter) {
|
|
|
|
fileDesc = fileDescParameter;
|
|
|
|
refreshDialog(fileDescParameter);
|
|
|
|
};
|
|
|
|
|
|
|
|
manageSynchronization.onSyncExportSuccess = refreshDialog;
|
|
|
|
manageSynchronization.onSyncRemoved = refreshDialog;
|
|
|
|
|
2013-06-02 00:38:23 +00:00
|
|
|
manageSynchronization.onReady = function() {
|
|
|
|
// 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-05-29 19:55:23 +00:00
|
|
|
return manageSynchronization;
|
|
|
|
|
2013-05-26 22:59:17 +00:00
|
|
|
});
|