1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | 1 1 1 1 3 7 7 7 3 1 3 3 3 3 3 3 3 3 3 3 2 2 9 1 4 1 3 4 1 3 1 1 1 1 1 1 1 1 | 'use strict'; ;require.register("views/main/alert_definitions_view", function (exports, require, module) { /** * 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 sort = require('views/common/sort_view'); App.MainAlertDefinitionsView = App.TableView.extend({ templateName: require('templates/main/alerts'), content: [], contentObs: function () { Em.run.once(this, this.contentObsOnce); }.observes('controller.content.[]', 'App.router.clusterController.isAlertsLoaded'), contentObsOnce: function contentObsOnce() { var content = this.get('controller.content') && App.get('router.clusterController.isAlertsLoaded') ? this.get('controller.content').toArray() : []; Iif (this.get('childViews').someProperty('name', 'SortWrapperView')) { content = this.get('childViews').findProperty('name', 'SortWrapperView').getSortedContent(content); } this.set('content', content); }, willInsertElement: function willInsertElement() { if (!this.get('controller.showFilterConditionsFirstLoad')) { this.clearFilterConditionsFromLocalStorage(); } // on load alters should be sorted by status var controllerName = this.get('controller.name'), savedSortConditions = App.db.getSortingStatuses(controllerName) || []; Eif (savedSortConditions.everyProperty('status', 'sorting')) { savedSortConditions.push({ name: "summary", status: "sorting_desc" }); App.db.setSortingStatuses(controllerName, savedSortConditions); } this._super(); }, didInsertElement: function didInsertElement() { var self = this; Em.run.next(function () { self.set('isInitialRendering', false); self.contentObsOnce(); self.tooltipsUpdater(); }); }, willDestroyElement: function willDestroyElement() { $(".timeago").tooltip('destroy'); this.removeObserver('pageContent.length', this, 'tooltipsUpdater'); }, /** * Save <code>startIndex</code> to the localStorage * @method saveStartIndex */ saveStartIndex: function () { App.db.setStartIndex(this.get('controller.name'), this.get('startIndex')); }.observes('startIndex'), /** * Clear <code>startIndex</code> from the localStorage * @method clearStartIndex */ clearStartIndex: function clearStartIndex() { App.db.setStartIndex(this.get('controller.name'), null); }, /** * @type {number} */ totalCount: Em.computed.alias('content.length'), colPropAssoc: ['', 'label', 'summary', 'serviceDisplayName', 'type', 'lastTriggered', 'enabled', 'groups'], sortView: sort.wrapperView, /** * Define whether initial view rendering has finished * @type {Boolean} */ isInitialRendering: true, /** * Sorting header for <label>alertDefinition.label</label> * @type {Em.View} */ nameSort: sort.fieldView.extend({ column: 1, name: 'label', displayName: Em.I18n.t('alerts.table.header.definitionName') }), /** * Sorting header for <label>alertDefinition.status</label> * @type {Em.View} */ statusSort: sort.fieldView.extend({ column: 2, name: 'summary', displayName: Em.I18n.t('common.status'), type: 'alert_status', status: 'sorting_desc' }), /** * Sorting header for <label>alertDefinition.service.serviceName</label> * @type {Em.View} */ serviceSort: sort.fieldView.extend({ column: 3, name: 'serviceDisplayName', displayName: Em.I18n.t('common.service'), type: 'string' }), /** * Sorting header for <label>alertDefinition.type</label> * @type {Em.View} */ typeSort: sort.fieldView.extend({ column: 4, name: 'type', displayName: Em.I18n.t('common.type'), type: 'string' }), /** * Sorting header for <label>alertDefinition.lastTriggeredSort</label> * @type {Em.View} */ lastTriggeredSort: sort.fieldView.extend({ column: 5, name: 'lastTriggered', displayName: Em.I18n.t('alerts.table.header.lastTriggered'), type: 'number' }), /** * Sorting header for <label>alertDefinition.enabled</label> * @type {Em.View} */ enabledSort: sort.fieldView.extend({ template: Em.Handlebars.compile('<span {{bindAttr class="view.status :column-name"}}>{{t alerts.table.state}}</span>'), column: 6, name: 'enabled' }), /** * Filtered number of all content number information displayed on the page footer bar * @returns {String} */ filteredContentInfo: Em.computed.i18nFormat('alerts.filters.filteredAlertsInfo', 'filteredCount', 'totalCount'), /** * Determines how display "back"-link - as link or text * @type {string} */ paginationLeftClass: function () { if (this.get("startIndex") > 1) { return "paginate_previous"; } return "paginate_disabled_previous"; }.property("startIndex", 'filteredCount'), /** * Determines how display "next"-link - as link or text * @type {string} */ paginationRightClass: function () { if (this.get("endIndex") < this.get("filteredCount")) { return "paginate_next"; } return "paginate_disabled_next"; }.property("endIndex", 'filteredCount'), /** * Show previous-page if user not in the first page * @method previousPage */ previousPage: function previousPage() { Iif (this.get('paginationLeftClass') === 'paginate_previous') { this._super(); } this.tooltipsUpdater(); }, /** * Show next-page if user not in the last page * @method nextPage */ nextPage: function nextPage() { Iif (this.get('paginationRightClass') === 'paginate_next') { this._super(); } this.tooltipsUpdater(); }, /** * Update tooltips when <code>pageContent</code> is changed * @method tooltipsUpdater */ tooltipsUpdater: function tooltipsUpdater() { Em.run.next(this, function () { App.tooltip($(".timeago")); }); }, updateFilter: function updateFilter(iColumn, value, type) { Iif (!this.get('isInitialRendering')) { this._super(iColumn, value, type); } this.tooltipsUpdater(); } }); }); |