fuel-ui/static/js/views/cluster_page_tabs/nodes_tab_screens/edit_node_screen.js

48 lines
1.6 KiB
JavaScript

/*
* Copyright 2013 Mirantis, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
**/
define(
[
'utils',
'models',
'views/cluster_page_tabs/nodes_tab_screens/screen'
],
function(utils, models, Screen) {
'use strict';
var EditNodeScreen;
EditNodeScreen = Screen.extend({
constructorName: 'EditNodeScreen',
keepScrollPosition: true,
disableControls: function(disable) {
this.updateButtonsState(disable || this.isLocked());
},
returnToNodeList: function() {
if (this.hasChanges()) {
this.tab.page.discardSettingsChanges({cb: _.bind(this.goToNodeList, this)});
} else {
this.goToNodeList();
}
},
initialize: function(options) {
_.defaults(this, options);
var nodeIds = utils.deserializeTabOptions(this.screenOptions[0]).nodes.split(',').map(function(id) {return parseInt(id, 10);});
this.nodes = new models.Nodes(this.model.get('nodes').getByIds(nodeIds));
}
});
return EditNodeScreen;
});