snappymail/dev/ViewModels/Popups/PopupsFolderCreateViewModel.js

132 lines
3.3 KiB
JavaScript
Raw Normal View History

2014-08-25 23:49:01 +08:00
(function (module, require) {
2014-08-25 23:49:01 +08:00
'use strict';
2014-08-21 23:08:34 +08:00
var
_ = require('_'),
2014-08-25 23:49:01 +08:00
ko = require('ko'),
2014-08-25 15:10:51 +08:00
2014-08-25 23:49:01 +08:00
Enums = require('Enums'),
Consts = require('Consts'),
Utils = require('Utils'),
2014-08-27 23:59:44 +08:00
Data = require('Storage:RainLoop:Data'),
Remote = require('Storage:RainLoop:Remote'),
2014-08-27 23:59:44 +08:00
kn = require('App:Knoin'),
KnoinAbstractViewModel = require('Knoin:AbstractViewModel')
2014-08-21 23:08:34 +08:00
;
2014-04-27 05:53:37 +08:00
2014-08-21 23:08:34 +08:00
/**
* @constructor
* @extends KnoinAbstractViewModel
*/
function PopupsFolderCreateViewModel()
{
KnoinAbstractViewModel.call(this, 'Popups', 'PopupsFolderCreate');
2014-08-21 23:08:34 +08:00
Utils.initOnStartOrLangChange(function () {
this.sNoParentText = Utils.i18n('POPUPS_CREATE_FOLDER/SELECT_NO_PARENT');
}, this);
this.folderName = ko.observable('');
this.folderName.focused = ko.observable(false);
this.selectedParentValue = ko.observable(Consts.Values.UnuseOptionValue);
this.parentFolderSelectList = ko.computed(function () {
var
aTop = [],
fDisableCallback = null,
fVisibleCallback = null,
aList = Data.folderList(),
fRenameCallback = function (oItem) {
return oItem ? (oItem.isSystemFolder() ? oItem.name() + ' ' + oItem.manageFolderSystemName() : oItem.name()) : '';
}
;
aTop.push(['', this.sNoParentText]);
if ('' !== Data.namespace)
{
2014-08-21 23:08:34 +08:00
fDisableCallback = function (oItem)
{
return Data.namespace !== oItem.fullNameRaw.substr(0, Data.namespace.length);
};
}
2014-08-21 23:08:34 +08:00
2014-08-22 23:08:56 +08:00
return Utils.folderListOptionsBuilder([], aList, [], aTop, null, fDisableCallback, fVisibleCallback, fRenameCallback);
2014-08-21 23:08:34 +08:00
}, this);
// commands
this.createFolder = Utils.createCommand(this, function () {
2014-08-25 15:10:51 +08:00
var
sParentFolderName = this.selectedParentValue()
;
2014-08-21 23:08:34 +08:00
if ('' === sParentFolderName && 1 < Data.namespace.length)
{
2014-08-21 23:08:34 +08:00
sParentFolderName = Data.namespace.substr(0, Data.namespace.length - 1);
}
2014-08-21 23:08:34 +08:00
Data.foldersCreating(true);
Remote.folderCreate(function (sResult, oData) {
Data.foldersCreating(false);
if (Enums.StorageResultType.Success === sResult && oData && oData.Result)
{
2014-08-27 23:59:44 +08:00
require('App:RainLoop').folders();
2014-08-21 23:08:34 +08:00
}
else
{
Data.foldersListError(
oData && oData.ErrorCode ? Utils.getNotification(oData.ErrorCode) : Utils.i18n('NOTIFICATIONS/CANT_CREATE_FOLDER'));
}
}, this.folderName(), sParentFolderName);
this.cancelCommand();
}, function () {
return this.simpleFolderNameValidation(this.folderName());
});
this.defautOptionsAfterRender = Utils.defautOptionsAfterRender;
kn.constructorEnd(this);
}
kn.extendAsViewModel(['View:Popup:FolderCreate', 'PopupsFolderCreateViewModel'], PopupsFolderCreateViewModel);
_.extend(PopupsFolderCreateViewModel.prototype, KnoinAbstractViewModel.prototype);
2014-08-21 23:08:34 +08:00
PopupsFolderCreateViewModel.prototype.sNoParentText = '';
2014-08-21 23:08:34 +08:00
PopupsFolderCreateViewModel.prototype.simpleFolderNameValidation = function (sName)
{
return (/^[^\\\/]+$/g).test(Utils.trim(sName));
};
2014-08-21 23:08:34 +08:00
PopupsFolderCreateViewModel.prototype.clearPopup = function ()
{
this.folderName('');
this.selectedParentValue('');
this.folderName.focused(false);
};
2014-08-21 23:08:34 +08:00
PopupsFolderCreateViewModel.prototype.onShow = function ()
{
this.clearPopup();
};
2014-08-21 23:08:34 +08:00
PopupsFolderCreateViewModel.prototype.onFocus = function ()
{
this.folderName.focused(true);
};
2014-08-22 23:08:56 +08:00
module.exports = PopupsFolderCreateViewModel;
2013-12-29 04:42:07 +08:00
2014-08-25 23:49:01 +08:00
}(module, require));