menu.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. var App = require('app');
  19. App.StackVersionMenuView = Em.CollectionView.extend({
  20. tagName: 'ul',
  21. classNames: ["nav", "nav-tabs"],
  22. content:function(){
  23. var menuItems = [
  24. { label: Em.I18n.t('common.installed'), routing:'versions', url:"versions", active:"active"},
  25. { label: Em.I18n.t('admin.stackVersions.updateTab.title.not.available'), routing:'updates', url:"versions/updates"}
  26. ];
  27. return menuItems;
  28. }.property(),
  29. init: function(){ this._super(); this.activateView(); },
  30. activateView:function () {
  31. $.each(this._childViews, function () {
  32. this.set('active', (document.URL.endsWith(this.get('content.routing')) ? "active" : ""));
  33. });
  34. }.observes('App.router.location.lastSetURL'),
  35. deactivateChildViews: function() {
  36. $.each(this._childViews, function(){
  37. this.set('active', "");
  38. });
  39. },
  40. itemViewClass: Em.View.extend({
  41. classNameBindings: ["active"],
  42. active: "",
  43. newRepoCount: function() {
  44. return App.RepositoryVersion.find().filterProperty('stackVersion', null).get('length');
  45. }.property('controller.dataIsLoaded'),
  46. label: function() {
  47. if (this.get('content.routing') == 'updates') {
  48. if (this.get('newRepoCount') > 0) {
  49. this.set("active", "");
  50. return Em.I18n.t('admin.stackVersions.updateTab.title.available').format(this.get('newRepoCount'))
  51. } else {
  52. this.set("active", 'not-active-link');
  53. }
  54. }
  55. return this.get('content.label')
  56. }.property('view.content.label', 'newRepoCount'),
  57. template: Ember.Handlebars.compile('<a href="#/main/admin/{{unbound view.content.url}}"> {{view.label}}</a>')
  58. })
  59. });