12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- */
- var App = require('app');
- App.MainStackVersionsController = Em.ArrayController.extend({
- name: 'mainStackVersionsController',
- content: App.StackVersion.find(),
- mockUrl: '/data/stack_versions/stack_version_all.json',
- realUrl: function () {
- return App.apiPrefix + '/clusters/' + App.get('clusterName') + '/stack_versions&minimal_response=true';
- }.property('App.clusterName'),
- /**
- * load all data components required by stack version table
- * @return {*}
- */
- load: function () {
- var dfd = $.Deferred();
- var self = this;
- this.loadStackVersionsToModel().done(function () {
- self.set('dataIsLoaded', true);
- dfd.resolve();
- });
- return dfd.promise();
- },
- /**
- * get stack versions from server and push it to model
- * @return {*}
- */
- loadStackVersionsToModel: function () {
- var dfd = $.Deferred();
- App.HttpClient.get(this.getUrl(), App.stackVersionMapper, {
- complete: function () {
- dfd.resolve();
- }
- });
- return dfd.promise();
- },
- getUrl: function () {
- return App.get('testMode') ? this.get('mockUrl') : this.get('realUrl');
- },
- filterHostsByStack: function (version, state) {
- if (!version || !state)
- return;
- App.router.get('mainHostController').filterByStack(version, state);
- App.router.get('mainHostController').set('showFilterConditionsFirstLoad', true);
- App.router.transitionTo('hosts.index');
- },
- showHosts: function(event) {
- var self = this;
- var status = event.currentTarget.title.toCapital();
- var version = event.contexts[0];
- var hosts = event.contexts[1];
- return App.ModalPopup.show({
- bodyClass: Ember.View.extend({
- title: Em.I18n.t('admin.stackVersions.hosts.popup.title').format(version, status, hosts.length),
- template: Em.Handlebars.compile('<h4>{{view.title}}</h4><span class="limited-height-2">'+ hosts.join('<br/>') + '</span>')
- }),
- header: Em.I18n.t('admin.stackVersions.hosts.popup.header').format(status),
- primary: Em.I18n.t('admin.stackVersions.hosts.popup.primary'),
- secondary: Em.I18n.t('common.close'),
- onPrimary: function() {
- this.hide();
- self.filterHostsByStack(version, status);
- }
- });
- }
- });
|