123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /**
- * 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');
- var dateUtil = require('utils/date');
- App.ServiceConfigVersion = DS.Model.extend({
- serviceName: DS.attr('string'),
- displayName: function() {
- return App.format.role(this.get('serviceName'));
- }.property('serviceName'),
- groupName: DS.attr('string'),
- groupId: DS.attr('number'),
- version: DS.attr('number'),
- createTime: DS.attr('number'),
- author: DS.attr('string'),
- notes: DS.attr('string'),
- service: DS.belongsTo('App.Service'),
- hosts: DS.attr('array'),
- index: DS.attr('number'),
- isCurrent: DS.attr('boolean'),
- isDisplayed: DS.attr('boolean'),
- isDefault: function() {
- return this.get('groupName') === 'default';
- }.property('groupName'),
- currentTooltip: function () {
- return Em.I18n.t('dashboard.configHistory.table.current.tooltip').format(this.get('displayName'), this.get('configGroupName'));
- }.property('displayName', 'configGroupName'),
- configGroupName: function () {
- return this.get('isDefault') ? (this.get('displayName') + ' ' + Em.I18n.t('common.default')) : this.get('groupName');
- }.property('groupName','isDefault'),
- fullNotes: function () {
- return (typeof this.get('notes') === 'string') ? this.get('notes') || Em.I18n.t('dashboard.configHistory.table.notes.no') : Em.I18n.t('dashboard.configHistory.table.notes.no');
- }.property('notes'),
- briefNotes: function () {
- return this.get('fullNotes').slice(0, 81);
- }.property('fullNotes'),
- moreNotesExists: function () {
- return (typeof this.get('notes') === 'string') ? this.get('notes').length > 80 : false;
- }.property('notes'),
- versionText: function () {
- return Em.I18n.t('dashboard.configHistory.table.version.versionText').format(this.get('version'));
- }.property('version'),
- makeCurrentButtonText: function() {
- return Em.I18n.t('dashboard.configHistory.info-bar.revert.versionButton').format(this.get('versionText'));
- }.property('versionText'),
- createdDate: function () {
- return dateUtil.dateFormat(this.get('createTime'));
- }.property('createTime'),
- timeSinceCreated: function () {
- return $.timeago(this.get('createTime'));
- }.property('createTime'),
- /**
- * determine whether ServiceConfigVersion is requested from server
- */
- isRequested: DS.attr('boolean'),
- isRestartRequired: function () {
- if (this.get('service.isRestartRequired') && this.get('isCurrent')) {
- var hostNames = this.get('hosts');
- if (!hostNames.length) return false;
- for (var i = 0; i < hostNames.length; i++) {
- if (Object.keys(this.get('service.restartRequiredHostsAndComponents')).contains(hostNames[i])) {
- return true;
- }
- }
- }
- return false;
- }.property('service.isRestartRequired','isDefault', 'isCurrent', 'hosts', 'service.restartRequiredHostsAndComponents', 'router.mainServiceInfoConfigsController.configGroups'),
- disabledActionMessages: function () {
- return {
- view: (this.get('isDisplayed')) ? Em.I18n.t('dashboard.configHistory.info-bar.view.button.disabled') : '',
- compare: (this.get('isDisplayed')) ? Em.I18n.t('dashboard.configHistory.info-bar.compare.button.disabled') : '',
- revert: (this.get('isCurrent')) ? Em.I18n.t('dashboard.configHistory.info-bar.revert.button.disabled') : ''
- }
- }.property('isDisplayed', 'isCurrent'),
- disabledActionAttr: function () {
- return {
- view: (this.get('isDisplayed')) ? 'disabled' : false,
- compare: (this.get('isDisabled') || this.get('isDisplayed')) ? 'disabled' : false,
- revert: (this.get('isDisabled') || this.get('isCurrent')) ? 'disabled' : false
- }
- }.property('isDisplayed', 'isCurrent', 'isDisabled')
- });
- App.ServiceConfigVersion.FIXTURES = [];
|