Viewing File: /usr/local/cpanel/base/frontend/jupiter/user_manager/directives/emailServiceConfig.js
/*
# user_manager/directives/emailServiceConfig.js Copyright(c) 2020 cPanel, L.L.C.
# All rights reserved.
# copyright@cpanel.net http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited
*/
/* global define: false */
define(
[
"angular",
"lodash",
"cjt/core",
"cjt/util/locale",
"cjt/directives/toggleSwitchDirective",
"cjt/filters/wrapFilter",
"app/directives/limit",
"app/directives/serviceConfigController"
],
function(angular, _, CJT, LOCALE) {
var module = angular.module("App");
module.directive("emailConfig", [
"defaultInfo",
function(defaultInfo) {
var TEMPLATE_PATH = "directives/emailServiceConfig.ptt";
var RELATIVE_PATH = "user_manager/" + TEMPLATE_PATH;
return {
restrict: "AE",
templateUrl: CJT.config.debug ? CJT.buildFullPath(RELATIVE_PATH) : TEMPLATE_PATH,
replace: true,
require: "ngModel",
scope: {
toggleService: "&toggleService",
isDisabled: "=ngDisabled",
showToggle: "=showToggle",
showUnlink: "=showUnlink",
unlinkService: "&unlinkService",
isInProgress: "&isInProgress",
showInfo: "=showInfo",
infoMessage: "@infoMessage",
showWarning: "=showWarning",
warningMessage: "@warningMessage",
showConflictDismiss: "=?",
conflictResolutionRequired: "=?",
linkAction: "&?"
},
controller: "serviceConfigController",
link: function(scope, element, attrs, ngModel) {
scope.ngModel = ngModel;
if (angular.isUndefined(scope.showWarning) ||
angular.isUndefined(scope.warningMessage) ||
scope.warningMessage === "") {
scope.showWarning = false;
}
if (angular.isUndefined(scope.showInfo) ||
angular.isUndefined(scope.infoMessage) ||
scope.infoMessage === "") {
scope.showInfo = false;
}
if (angular.isUndefined(scope.showToggle)) {
scope.showToggle = true;
}
if (angular.isUndefined(scope.showUnlink)) {
scope.showUnlink = false;
}
// Define how to draw the output when the model changes
ngModel.$render = function() {
scope.service = ngModel.$modelValue;
scope.validateConflictResolution();
};
scope.defaults = defaultInfo;
scope.maxMessage = LOCALE.maketext("Quotas cannot exceed [format_bytes,_1].", defaultInfo.email.max_quota * 1048576);
}
};
}
]);
}
);
Back to Directory
File Manager