mno-enterprise-frontend 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +1 -0
- data/Rakefile +12 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/mno_enterprise/impac/close-widget-pink.png +0 -0
- data/app/assets/images/mno_enterprise/impac/close-widget.png +0 -0
- data/app/assets/images/mno_enterprise/loader-32x32-bg-inverse.gif +0 -0
- data/app/assets/images/mno_enterprise/loader-32x32-bg-main.gif +0 -0
- data/app/assets/images/mno_enterprise/maestrano/logo-whitebg.png +0 -0
- data/app/assets/javascripts/mno_enterprise/angular/app.js.coffee.erb +173 -0
- data/app/assets/javascripts/mno_enterprise/angular/controllers/maestrano-controllers.js.coffee +4 -0
- data/app/assets/javascripts/mno_enterprise/angular/controllers/modals/modals-ctrl.js.coffee +62 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-account.js.coffee +157 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-app-deletion-request.js.coffee +62 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-apps-list.js.coffee +127 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-components.js.coffee +25 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-marketplace-app.js.coffee +77 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-marketplace.js.coffee +51 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-menu.js.coffee +174 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/arrears.js.coffee +70 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/billing.js.coffee +48 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/credit-card.js.coffee +142 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/index.js.coffee +61 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/invoices.js.coffee +42 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/members.js.coffee +280 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/settings.js.coffee +91 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/team-list.js.coffee +179 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/organization/teams.js.coffee +268 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/file-model.js.coffee +33 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/maestrano-components.js.coffee +22 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-autostop-app.js.coffee +123 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-compile.js.coffee +18 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-currency-widget.js.coffee +43 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-current-currency.js.coffee +22 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-editable.js.coffee +68 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-flash-msg.js.coffee +40 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-helptext.js.coffee +38 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-loading-lounge.js.coffee +184 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-match.js.coffee +14 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-message-modal.js.coffee +56 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-notification-widget.js.coffee +192 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-partner-code-popup.js.coffee +74 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-partner-contact.js.coffee +59 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-password-strength.js.coffee +154 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-password.js.coffee +40 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-price-converter.js.coffee +49 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-scroll-to.js.coffee +14 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/maestrano-components/mno-typeahead.js.coffee +89 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/user-setup/components.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/directives/user-setup/index.js.coffee +256 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-app-by-category.js.coffee +5 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-currency.js.coffee +30 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-filters.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-replace-underscore-with-space.js.coffee +4 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-titleize.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/filters/maestrano-truncate.js.coffee +24 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-app-instance.js.coffee +15 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-apps-document.js.coffee +83 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/maestrano-user.js.coffee +27 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/organization-svc.js.coffee +318 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/team-svc.js.coffee +180 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/dashboard/tickets-svc.js.coffee +109 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/impac-config.svc.js.coffee +35 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-apps-list-helper.js.coffee +337 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-assets.js.coffee.erb +21 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-current-currency.js.coffee +7 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-current-user-svc.js.coffee +99 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-exchange-rates.js.coffee +102 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-message-svc.js.coffee +71 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-miscellaneous.js.coffee.erb +46 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-modal.js.coffee +67 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-msg-bus.js.coffee +50 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-services.js.coffee +21 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-shopping-cart.js.coffee +361 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-utilities.js.coffee +61 -0
- data/app/assets/javascripts/mno_enterprise/angular/services/marketplace-svc.js.coffee +59 -0
- data/app/assets/javascripts/mno_enterprise/application.js +17 -0
- data/app/assets/javascripts/mno_enterprise/application_lib.js +14 -0
- data/app/assets/javascripts/mno_enterprise/lib/angular-really-click.js +17 -0
- data/app/assets/javascripts/mno_enterprise/lib/sortable.js +315 -0
- data/app/assets/javascripts/mno_enterprise/lib/ui-bootstrap-tpls-0.13.4.js +5836 -0
- data/app/assets/javascripts/mno_enterprise/lib/xeditable.js +1588 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap.js +12 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/affix.js +162 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/alert.js +94 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/button.js +116 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/carousel.js +237 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/collapse.js +211 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/dropdown.js +161 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/modal.js +324 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/popover.js +113 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/scrollspy.js +175 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/tab.js +153 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/tooltip.js +472 -0
- data/app/assets/javascripts/mno_enterprise/twitter/bootstrap/transition.js +59 -0
- data/app/assets/javascripts/ng-performance/ngPerformance.html +109 -0
- data/app/assets/javascripts/ng-performance/ngPerformance.js +211 -0
- data/app/assets/stylesheets/mno_enterprise/application.css +13 -0
- data/app/assets/stylesheets/mno_enterprise/custom/accordion.less +90 -0
- data/app/assets/stylesheets/mno_enterprise/custom/alert.less +30 -0
- data/app/assets/stylesheets/mno_enterprise/custom/angular-animate.less +42 -0
- data/app/assets/stylesheets/mno_enterprise/custom/angular-material.less +56 -0
- data/app/assets/stylesheets/mno_enterprise/custom/bootstrap-on-juice.less +22 -0
- data/app/assets/stylesheets/mno_enterprise/custom/button.less +84 -0
- data/app/assets/stylesheets/mno_enterprise/custom/footer.less +44 -0
- data/app/assets/stylesheets/mno_enterprise/custom/form.less +191 -0
- data/app/assets/stylesheets/mno_enterprise/custom/header.less +281 -0
- data/app/assets/stylesheets/mno_enterprise/custom/impac-variables-override.less +65 -0
- data/app/assets/stylesheets/mno_enterprise/custom/modal.less +183 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utilities.less +729 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/app-presentation.less +77 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/banners.less +145 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/carousel.less +68 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/helptext.less +40 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/miscellaneous.less +134 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/progress-bar.less +55 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/step.less +101 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/tabset.less +87 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/testimonial.less +118 -0
- data/app/assets/stylesheets/mno_enterprise/custom/utility/text.less +23 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/apps.less +243 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/myspace.less +477 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/pages/confirmation_lounge.less +31 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/pages/home.less +57 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/pages/oauth-config-page.less +6 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/registration.less +84 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/star.less +18 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/bootstrap-wizard.less +63 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-marketplace.less +187 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-organization.less +149 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/dashboard-teams.less +119 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/support.less +42 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/dashboard/tickets.less +80 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/mno-editable.less +60 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/notification-widget.less +49 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/password-strength.less +28 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/shopping-cart.less +333 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/templates/star-wizard.less +49 -0
- data/app/assets/stylesheets/mno_enterprise/custom/views/user-setup.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/custom/xeditable.less +40 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome-regular.less +13 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome-sprockets.less +13 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/font-awesome.less +16 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/FontAwesome.otf +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.svg +640 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.woff +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/fonts/fontawesome-webfont.woff2 +0 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/animated.less +34 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/bordered-pulled.less +25 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/core.less +12 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/extras.less +2 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/fixed-width.less +6 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/icons.less +677 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/larger.less +13 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/list.less +19 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/mixins.less +26 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/rotated-flipped.less +20 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/stacked.less +20 -0
- data/app/assets/stylesheets/mno_enterprise/font-awesome/framework/variables.less +687 -0
- data/app/assets/stylesheets/mno_enterprise/main.less +132 -0
- data/app/assets/stylesheets/mno_enterprise/mixins.less +75 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/alerts.less +73 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/badges.less +65 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/bootstrap.less +50 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/breadcrumbs.less +26 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/button-groups.less +243 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/buttons.less +160 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/carousel.less +269 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/close.less +34 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/code.less +69 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/component-animations.less +34 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/dropdowns.less +214 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/forms.less +566 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/glyphicons.less +301 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/grid.less +84 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/input-groups.less +166 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/jumbotron.less +50 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/labels.less +64 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/list-group.less +124 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/media.less +61 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins.less +39 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/alerts.less +14 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/background-variant.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/border-radius.less +18 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/buttons.less +52 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/center-block.less +7 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/clearfix.less +22 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/forms.less +85 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/gradients.less +59 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/grid-framework.less +91 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/grid.less +122 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/hide-text.less +21 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/image.less +33 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/labels.less +12 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/list-group.less +29 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/nav-divider.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/nav-vertical-align.less +9 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/opacity.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/pagination.less +23 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/panels.less +24 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/progress-bar.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/reset-filter.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/resize.less +6 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/responsive-visibility.less +15 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/size.less +10 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/tab-focus.less +9 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/table-row.less +28 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/text-emphasis.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/text-overflow.less +8 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/mixins/vendor-prefixes.less +227 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/modals.less +148 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/navbar.less +661 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/navs.less +244 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/normalize.less +427 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/pager.less +54 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/pagination.less +88 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/panels.less +265 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/popovers.less +135 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/print.less +107 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/progress-bars.less +87 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/responsive-embed.less +35 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/responsive-utilities.less +194 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/scaffolding.less +150 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/tables.less +234 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/theme.less +273 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/thumbnails.less +36 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/tooltip.less +103 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/type.less +302 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/utilities.less +56 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/variables.less +857 -0
- data/app/assets/stylesheets/mno_enterprise/twitter-bootstrap/wells.less +29 -0
- data/app/assets/stylesheets/mno_enterprise/variables.less +226 -0
- data/app/assets/templates/mno_enterprise/dashboard/account.html +131 -0
- data/app/assets/templates/mno_enterprise/dashboard/app_deletion.html +36 -0
- data/app/assets/templates/mno_enterprise/dashboard/apps_list.html +103 -0
- data/app/assets/templates/mno_enterprise/dashboard/horizontal_menu.html +85 -0
- data/app/assets/templates/mno_enterprise/dashboard/marketplace/index.html +60 -0
- data/app/assets/templates/mno_enterprise/dashboard/marketplace/show.html +133 -0
- data/app/assets/templates/mno_enterprise/dashboard/menu.html +161 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/arrears.html +37 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/billing.html +37 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/credit-card.html +156 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/index.full.html +181 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/index.html +173 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/invoices.html +27 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/members.html +288 -0
- data/app/assets/templates/mno_enterprise/dashboard/organization/settings.html +55 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/index.html +175 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/member-add-modal.html +60 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/member-removal-modal.html +35 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/team-add-modal.html +35 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/team-delete-modal.html +35 -0
- data/app/assets/templates/mno_enterprise/dashboard/teams/team-list.html +107 -0
- data/app/assets/templates/mno_enterprise/default_template.html +20 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/autostop_app.html +42 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/currency_widget.html +1 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/editable.html +28 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/loading_lounge.html +63 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/modal-messages/congratulations.html +8 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/modal-messages/default.html +1 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/modal-messages/information.html +8 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/notification-widget.html +31 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/password.html +55 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/star_wizard.html +254 -0
- data/app/assets/templates/mno_enterprise/maestrano-components/upload_spreadsheet.html +191 -0
- data/app/assets/templates/mno_enterprise/modals/new-organization-reseller-req.html +35 -0
- data/app/assets/templates/mno_enterprise/modals/new-organization.html +35 -0
- data/app/assets/templates/mno_enterprise/user-setup/index.html +312 -0
- data/app/controllers/mno_enterprise/invoices_controller.rb +22 -0
- data/app/controllers/mno_enterprise/pages_controller.rb +9 -0
- data/app/controllers/mno_enterprise/user_setup_controller.rb +11 -0
- data/app/views/layouts/mno_enterprise/_application_js.html.haml +17 -0
- data/app/views/layouts/mno_enterprise/_common_cdn_lib_js.html.haml +19 -0
- data/app/views/layouts/mno_enterprise/_footer_files.html.haml +5 -0
- data/app/views/layouts/mno_enterprise/_header_files.html.haml +31 -0
- data/app/views/layouts/mno_enterprise/_impersonate_header.html.haml +7 -0
- data/app/views/layouts/mno_enterprise/_public_page_header.html.haml +2 -0
- data/app/views/layouts/mno_enterprise/application.html.haml +18 -0
- data/app/views/layouts/mno_enterprise/application_dashboard.html.haml +22 -0
- data/app/views/layouts/mno_enterprise/third_party/_google_tag_container.html.haml +10 -0
- data/app/views/mno_enterprise/pages/app_access_unauthorized.html.haml +19 -0
- data/app/views/mno_enterprise/pages/app_logout.html.haml +18 -0
- data/app/views/mno_enterprise/pages/billing_details_required.html.haml +19 -0
- data/app/views/mno_enterprise/pages/loading.html.haml +3 -0
- data/app/views/mno_enterprise/pages/myspace.html.haml +6 -0
- data/app/views/mno_enterprise/provision/_provision_apps.html.haml +43 -0
- data/app/views/mno_enterprise/provision/_select_organization.html.haml +17 -0
- data/app/views/mno_enterprise/provision/new.html.haml +4 -0
- data/app/views/mno_enterprise/user_setup/index.html.haml +2 -0
- data/config/initializers/ng-annotate.rb +3 -0
- data/config/initializers/ng-performance.rb +3 -0
- data/config/routes.rb +19 -0
- data/lib/assets/javascripts/impac-angular.js +8719 -0
- data/lib/assets/stylesheets/impac-angular.less +2352 -0
- data/lib/mno-enterprise-frontend.rb +1 -0
- data/lib/mno_enterprise/frontend.rb +13 -0
- data/lib/mno_enterprise/frontend/assets_util.rb +47 -0
- data/lib/mno_enterprise/frontend/concerns/README.md +6 -0
- data/lib/mno_enterprise/frontend/concerns/controllers/pages_controller.rb +25 -0
- data/lib/mno_enterprise/frontend/engine.rb +13 -0
- data/spec/controllers/mno_enterprise/auth/confirmations_controller_spec.rb +84 -0
- data/spec/controllers/mno_enterprise/invoices_controller_spec.rb +34 -0
- data/spec/controllers/mno_enterprise/pages_controller_spec.rb +42 -0
- data/spec/controllers/mno_enterprise/user_setup_controller_spec.rb +33 -0
- data/spec/controllers/mno_enterprise/webhook/o_auth_controller_spec.rb +76 -0
- data/spec/rails_helper.rb +92 -0
- data/spec/routing/mno_enterprise/invoices_controller_routing_spec.rb +11 -0
- data/spec/routing/mno_enterprise/pages_controller_routing_spec.rb +18 -0
- data/spec/routing/mno_enterprise/user_setup_controller_routing_spec.rb +11 -0
- data/spec/spec_helper.rb +78 -0
- metadata +464 -0
@@ -0,0 +1,127 @@
|
|
1
|
+
module = angular.module('maestrano.dashboard.dashboard-apps-list',['maestrano.assets'])
|
2
|
+
|
3
|
+
#============================================
|
4
|
+
#
|
5
|
+
#============================================
|
6
|
+
module.controller('DashboardAppsListCtrl',[
|
7
|
+
'$scope','DashboardAppsDocument','DashboardAppInstance','AssetPath','AppsListHelper','$interval','$q','DhbOrganizationSvc','MsgBus',
|
8
|
+
($scope, DashboardAppsDocument, DashboardAppInstance, AssetPath, AppsListHelper, $interval, $q, DhbOrganizationSvc, MsgBus) ->
|
9
|
+
$scope.blink = { value: 'neutral' }
|
10
|
+
|
11
|
+
#====================================
|
12
|
+
# Pre-Initialization
|
13
|
+
#====================================
|
14
|
+
$scope.loading = true
|
15
|
+
$scope.assetPath = AssetPath
|
16
|
+
$scope.starWizardModal = { value:false }
|
17
|
+
MsgBus.publish('starWizardModal',$scope.starWizardModal)
|
18
|
+
|
19
|
+
$scope.openStarWizard = ->
|
20
|
+
$scope.starWizardModal.value = true
|
21
|
+
|
22
|
+
$scope.originalApps = []
|
23
|
+
|
24
|
+
#====================================
|
25
|
+
# Scope Management
|
26
|
+
#====================================
|
27
|
+
init = () ->
|
28
|
+
# Scope initialization
|
29
|
+
$scope.displayOptions = {}
|
30
|
+
$scope.helper = {}
|
31
|
+
$scope.appsListHelper = AppsListHelper.new()
|
32
|
+
can = DhbOrganizationSvc.can
|
33
|
+
angular.copy(DashboardAppsDocument.data,$scope.originalApps)
|
34
|
+
$scope.loading = false
|
35
|
+
|
36
|
+
|
37
|
+
# ----------------------------------------------------------
|
38
|
+
# Permissions helper
|
39
|
+
# ----------------------------------------------------------
|
40
|
+
$scope.helper.displayCogwheel = ->
|
41
|
+
can.update.appInstance()
|
42
|
+
|
43
|
+
$scope.helper.canCreateApp = ->
|
44
|
+
can.create.appInstance()
|
45
|
+
|
46
|
+
$scope.helper.canRestartApp = ->
|
47
|
+
can.update.appInstance()
|
48
|
+
|
49
|
+
$scope.helper.canRenameApp = ->
|
50
|
+
can.update.appInstance()
|
51
|
+
|
52
|
+
$scope.helper.canDeleteApp = ->
|
53
|
+
can.destroy.appInstance()
|
54
|
+
|
55
|
+
$scope.helper.canChangePlanApp = (app)->
|
56
|
+
app.stack == 'cube' && can.update.appInstance()
|
57
|
+
|
58
|
+
$scope.helper.displayBootstrapWizard = ->
|
59
|
+
can.update.appInstance()
|
60
|
+
|
61
|
+
$scope.apps = DashboardAppsDocument.data
|
62
|
+
|
63
|
+
# ----------------------------------------------------------
|
64
|
+
# Restart app
|
65
|
+
# ----------------------------------------------------------
|
66
|
+
$scope.restartApp = { loading: false }
|
67
|
+
$scope.restartApp.perform = (id) ->
|
68
|
+
$scope.restartApp.loading = true
|
69
|
+
DashboardAppInstance.restart(id).then(
|
70
|
+
(success) ->
|
71
|
+
$scope.restartApp.loading = false
|
72
|
+
(error) ->
|
73
|
+
$scope.restartApp.loading = false
|
74
|
+
)
|
75
|
+
|
76
|
+
$scope.updateAppName = (app) ->
|
77
|
+
origApp = $scope.originalApps["app_instance_#{app.id}"]
|
78
|
+
if app.name.length == 0
|
79
|
+
app.name = origApp.name
|
80
|
+
else
|
81
|
+
DashboardAppInstance.updateName(app.id,app.name).then(
|
82
|
+
(->)
|
83
|
+
origApp.name = app.name
|
84
|
+
, ->
|
85
|
+
app.name = origApp.name
|
86
|
+
)
|
87
|
+
|
88
|
+
# ----------------------------------------------------------
|
89
|
+
# Little trick to create 'blinking' effect
|
90
|
+
# (used for the status of the apps)
|
91
|
+
# ----------------------------------------------------------
|
92
|
+
blink = ->
|
93
|
+
if $scope.blink.value == '' then $scope.blink.value = 'neutral'
|
94
|
+
else $scope.blink.value = ''
|
95
|
+
$interval((-> blink()),500)
|
96
|
+
|
97
|
+
$scope.shouldBlink = (status) ->
|
98
|
+
_.contains([
|
99
|
+
'starting',
|
100
|
+
'restarting',
|
101
|
+
'stopping',
|
102
|
+
'terminating',
|
103
|
+
'upgrading',
|
104
|
+
'downgrading',
|
105
|
+
],status)
|
106
|
+
|
107
|
+
|
108
|
+
#====================================
|
109
|
+
# Post-Initialization
|
110
|
+
#====================================
|
111
|
+
$scope.$watch DashboardAppsDocument.getId, (val) ->
|
112
|
+
if val?
|
113
|
+
DashboardAppsDocument.load(val).then () ->
|
114
|
+
init()
|
115
|
+
|
116
|
+
|
117
|
+
])
|
118
|
+
|
119
|
+
module.directive('dashboardAppsList', ['TemplatePath', (TemplatePath) ->
|
120
|
+
return {
|
121
|
+
restrict: 'A',
|
122
|
+
scope: {
|
123
|
+
},
|
124
|
+
templateUrl: TemplatePath['mno_enterprise/dashboard/apps_list.html'],
|
125
|
+
controller: 'DashboardAppsListCtrl'
|
126
|
+
}
|
127
|
+
])
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# This main module requires all the sub-modules that should compose it
|
2
|
+
# This pattern allows us to split a fat module in several files
|
3
|
+
dashboardComponents = angular.module('maestrano.dashboard', [
|
4
|
+
'maestrano.dashboard.dashboard-apps-list',
|
5
|
+
'maestrano.dashboard.dashboard-account',
|
6
|
+
'maestrano.dashboard.dashboard-menu',
|
7
|
+
'maestrano.dashboard.dashboard-app-deletion-request',
|
8
|
+
|
9
|
+
# Marketplace Section
|
10
|
+
'maestrano.dashboard.dashboard-marketplace',
|
11
|
+
'maestrano.dashboard.dashboard-marketplace-app',
|
12
|
+
|
13
|
+
# Company Section
|
14
|
+
'maestrano.dashboard.dashboard-organization-index',
|
15
|
+
'maestrano.dashboard.dashboard-organization-credit-card',
|
16
|
+
'maestrano.dashboard.dashboard-organization-invoices',
|
17
|
+
'maestrano.dashboard.dashboard-organization-billing',
|
18
|
+
'maestrano.dashboard.dashboard-organization-arrears',
|
19
|
+
'maestrano.dashboard.dashboard-organization-settings',
|
20
|
+
'maestrano.dashboard.dashboard-organization-members',
|
21
|
+
'maestrano.dashboard.dashboard-organization-teams',
|
22
|
+
'maestrano.dashboard.dashboard-organization-team-list',
|
23
|
+
]
|
24
|
+
)
|
25
|
+
|
@@ -0,0 +1,77 @@
|
|
1
|
+
module = angular.module('maestrano.dashboard.dashboard-marketplace-app',['maestrano.assets'])
|
2
|
+
|
3
|
+
#============================================
|
4
|
+
#
|
5
|
+
#============================================
|
6
|
+
module.controller('DashboardMarketplaceAppCtrl',[
|
7
|
+
'$scope', 'MarketplaceSvc', 'DhbOrganizationSvc','AssetPath','$routeParams',
|
8
|
+
($scope, MarketplaceSvc, DhbOrganizationSvc, AssetPath, $routeParams) ->
|
9
|
+
|
10
|
+
#====================================
|
11
|
+
# Pre-Initialization
|
12
|
+
#====================================
|
13
|
+
$scope.assetPath = AssetPath
|
14
|
+
$scope.isLoading = true
|
15
|
+
$scope.app = {}
|
16
|
+
|
17
|
+
#====================================
|
18
|
+
# Scope Management
|
19
|
+
#====================================
|
20
|
+
$scope.initialize = (app) ->
|
21
|
+
angular.copy(app,$scope.app)
|
22
|
+
$scope.isLoading = false
|
23
|
+
$scope.helper = {}
|
24
|
+
can = DhbOrganizationSvc.can
|
25
|
+
|
26
|
+
# ----------------------------------------------------------
|
27
|
+
# Permissions helper
|
28
|
+
# ----------------------------------------------------------
|
29
|
+
$scope.helper.canCreateApp = ->
|
30
|
+
can.create.appInstance()
|
31
|
+
|
32
|
+
$scope.backLink = ->
|
33
|
+
"#/marketplace"
|
34
|
+
|
35
|
+
# Check that the testimonial is not empty
|
36
|
+
$scope.isTestimonialShown = (testimonial) ->
|
37
|
+
testimonial.text? && testimonial.text.length > 0
|
38
|
+
|
39
|
+
$scope.provisionLink = () ->
|
40
|
+
"/mnoe/provision/new?apps[]=#{$scope.app.nid}&organization_id=#{DhbOrganizationSvc.getId()}"
|
41
|
+
|
42
|
+
#====================================
|
43
|
+
# Cart Management
|
44
|
+
#====================================
|
45
|
+
$scope.cart = cart = {
|
46
|
+
isOpen: false
|
47
|
+
bundle: {}
|
48
|
+
config: {}
|
49
|
+
}
|
50
|
+
|
51
|
+
# Open the ShoppingCart
|
52
|
+
cart.open = ->
|
53
|
+
if (d = DhbOrganizationSvc.data) && (o = d.organization) && o.id
|
54
|
+
cart.config.organizationId = o.id
|
55
|
+
|
56
|
+
cart.bundle = { app_instances: [{app: { id: $scope.app.id }}] }
|
57
|
+
cart.isOpen = true
|
58
|
+
|
59
|
+
|
60
|
+
#====================================
|
61
|
+
# Post-Initialization
|
62
|
+
#====================================
|
63
|
+
MarketplaceSvc.load().then (marketplace)->
|
64
|
+
listApp = _.findWhere(marketplace.apps,{slug: $routeParams.appId })
|
65
|
+
listApp ||= _.findWhere(marketplace.apps,{id: parseInt($routeParams.appId) })
|
66
|
+
$scope.initialize(listApp)
|
67
|
+
|
68
|
+
])
|
69
|
+
|
70
|
+
module.directive('dashboardMarketplaceApp', ['TemplatePath', (TemplatePath) ->
|
71
|
+
return {
|
72
|
+
restrict: 'A',
|
73
|
+
scope: {},
|
74
|
+
templateUrl: TemplatePath['mno_enterprise/dashboard/marketplace/show.html'],
|
75
|
+
controller: 'DashboardMarketplaceAppCtrl'
|
76
|
+
}
|
77
|
+
])
|
@@ -0,0 +1,51 @@
|
|
1
|
+
module = angular.module('maestrano.dashboard.dashboard-marketplace',['maestrano.assets'])
|
2
|
+
|
3
|
+
#============================================
|
4
|
+
#
|
5
|
+
#============================================
|
6
|
+
module.controller('DashboardMarketplaceCtrl',[
|
7
|
+
'$scope', 'MarketplaceSvc', 'AssetPath'
|
8
|
+
($scope, MarketplaceSvc, AssetPath) ->
|
9
|
+
|
10
|
+
#====================================
|
11
|
+
# Pre-Initialization
|
12
|
+
#====================================
|
13
|
+
$scope.assetPath = AssetPath
|
14
|
+
$scope.isLoading = true
|
15
|
+
$scope.selectedCategory = ''
|
16
|
+
$scope.searchTerm = ''
|
17
|
+
$scope.appFilter = ''
|
18
|
+
|
19
|
+
#====================================
|
20
|
+
# Scope Management
|
21
|
+
#====================================
|
22
|
+
$scope.initialize = (marketplace)->
|
23
|
+
$scope.categories = marketplace.categories
|
24
|
+
$scope.apps = marketplace.apps
|
25
|
+
$scope.isLoading = false
|
26
|
+
|
27
|
+
$scope.linkFor = (app) ->
|
28
|
+
"#/marketplace/#{app.id}"
|
29
|
+
|
30
|
+
$scope.appsFilter = (app) ->
|
31
|
+
if ($scope.searchTerm? && $scope.searchTerm.length > 0) || !$scope.selectedCategory
|
32
|
+
return true
|
33
|
+
else
|
34
|
+
return _.contains(app.categories,$scope.selectedCategory)
|
35
|
+
|
36
|
+
#====================================
|
37
|
+
# Post-Initialization
|
38
|
+
#====================================
|
39
|
+
MarketplaceSvc.load().then (marketplace)->
|
40
|
+
$scope.initialize(marketplace)
|
41
|
+
|
42
|
+
])
|
43
|
+
|
44
|
+
module.directive('dashboardMarketplace', ['TemplatePath', (TemplatePath) ->
|
45
|
+
return {
|
46
|
+
restrict: 'A',
|
47
|
+
scope: {},
|
48
|
+
templateUrl: TemplatePath['mno_enterprise/dashboard/marketplace/index.html'],
|
49
|
+
controller: 'DashboardMarketplaceCtrl'
|
50
|
+
}
|
51
|
+
])
|
data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-menu.js.coffee
ADDED
@@ -0,0 +1,174 @@
|
|
1
|
+
module = angular.module('maestrano.dashboard.dashboard-menu',['maestrano.assets'])
|
2
|
+
|
3
|
+
#============================================
|
4
|
+
#
|
5
|
+
#============================================
|
6
|
+
module.controller('DashboardMenuCtrl',[
|
7
|
+
'$scope','$q','AssetPath','$location','$sce','CurrentUserSvc','DashboardAppsDocument','DhbOrganizationSvc','MarketplaceSvc','DhbTeamSvc', '$modal', '$http','$routeParams','$window','MessageSvc','MsgBus','TemplatePath','ModalSvc',
|
8
|
+
($scope,$q,AssetPath,$location,$sce,CurrentUserSvc,DashboardAppsDocument,DhbOrganizationSvc, MarketplaceSvc, DhbTeamSvc, $modal, $http, $routeParams, $window, MessageSvc, MsgBus, TemplatePath, ModalSvc) ->
|
9
|
+
$scope.assetPath = AssetPath
|
10
|
+
|
11
|
+
# Open the maestrano star menu
|
12
|
+
$scope.openMnoStarMenu = ->
|
13
|
+
$window.mnoLoader.toggleMenu()
|
14
|
+
|
15
|
+
#====================================
|
16
|
+
# Pre-Initialization
|
17
|
+
# Here we initialize all the services that do not depend on
|
18
|
+
# the current organization
|
19
|
+
#====================================
|
20
|
+
MarketplaceSvc.setup()
|
21
|
+
|
22
|
+
#====================================
|
23
|
+
# Scope Management
|
24
|
+
#====================================
|
25
|
+
# Check path or root path
|
26
|
+
$scope.isButtonActive = (entity) ->
|
27
|
+
$location.url() == entity ||
|
28
|
+
$location.url().split("/")[1] == entity.split("/")[1]
|
29
|
+
|
30
|
+
# Note: Unused at the moment
|
31
|
+
$scope.reloadServices = (orgId) ->
|
32
|
+
DashboardAppsDocument.setup(id:orgId)
|
33
|
+
DhbOrganizationSvc.setup(id: orgId)
|
34
|
+
DhbTeamSvc.setup(id: orgId)
|
35
|
+
|
36
|
+
#====================================
|
37
|
+
# Select Box
|
38
|
+
#====================================
|
39
|
+
$scope.selectBox = selectBox = {}
|
40
|
+
selectBox.form = {}
|
41
|
+
selectBox.isClosed = true
|
42
|
+
selectBox.isShown = false
|
43
|
+
selectBox.user = undefined
|
44
|
+
selectBox.organizations = []
|
45
|
+
selectBox.userLabel = ''
|
46
|
+
|
47
|
+
selectBox.initialize = (currentUser) ->
|
48
|
+
self = selectBox
|
49
|
+
self.user = currentUser
|
50
|
+
self.userLabel = "#{self.user.name} #{self.user.surname}"
|
51
|
+
self.organizations = self.user.organizations
|
52
|
+
|
53
|
+
# Capture parameters internally
|
54
|
+
if $routeParams.new_app
|
55
|
+
MsgBus.publish('params', {new_app: $routeParams.new_app})
|
56
|
+
$location.search('new_app', null )
|
57
|
+
|
58
|
+
# Attempt to load organization from param
|
59
|
+
if (val = $routeParams.dhbRefId)
|
60
|
+
val = parseInt(val)
|
61
|
+
$location.search('dhbRefId', null )
|
62
|
+
self.organization = _.findWhere(self.organizations,{id: val})
|
63
|
+
|
64
|
+
# Attempt to load last organization from cookie
|
65
|
+
if !self.organization? && (val = $.cookie('dhb_ref_id'))
|
66
|
+
self.organization = _.findWhere(self.organizations,{id: val})
|
67
|
+
|
68
|
+
# Default to first one otherwise
|
69
|
+
unless self.organization?
|
70
|
+
self.organization = self.organizations[0]
|
71
|
+
|
72
|
+
# return false if the user is member or reseller of at least one organization
|
73
|
+
$scope.selectBoxisEmpty = ->
|
74
|
+
!(self.organization && self.organization.id)
|
75
|
+
|
76
|
+
# if the selectBox is empty, then by default we show the account tab
|
77
|
+
# note: That condition will be true when a reseller has just signed up after
|
78
|
+
# accepting an invitation to join a reseller organization. At that stage
|
79
|
+
# he may not have any customers and he won't have any personal organization.
|
80
|
+
if $scope.selectBoxisEmpty()
|
81
|
+
$location.path('/account')
|
82
|
+
# otherwise we change the selectbox to the organization loaded
|
83
|
+
else
|
84
|
+
# Switch dashboard to organization
|
85
|
+
selectBox.changeTo(self.organization)
|
86
|
+
|
87
|
+
selectBox.toggle = ->
|
88
|
+
selectBox.isClosed = !selectBox.isClosed
|
89
|
+
|
90
|
+
selectBox.close = ->
|
91
|
+
selectBox.isClosed = true
|
92
|
+
|
93
|
+
selectBox.organizationList = ->
|
94
|
+
self = selectBox
|
95
|
+
return _.sortBy(self.organizations, (o) -> o.name)
|
96
|
+
|
97
|
+
# Format the html of the label used by the provided
|
98
|
+
# organization, based on whether it is selected, is a customer, reseller
|
99
|
+
# or regular company
|
100
|
+
selectBox.organizationLabel = (organization) ->
|
101
|
+
icon = {}
|
102
|
+
icon.type = if (organization.id == DhbOrganizationSvc.getId()) then "fa-dot-circle-o" else "fa-circle-o"
|
103
|
+
|
104
|
+
html = "<i class=\"fa #{icon.type}\"></i>#{organization.name}"
|
105
|
+
return html
|
106
|
+
|
107
|
+
# TODO: This function should go in a service
|
108
|
+
selectBox.changeTo = (organization) ->
|
109
|
+
DashboardAppsDocument.setup(id: organization.id)
|
110
|
+
DhbOrganizationSvc.setup(id: organization.id)
|
111
|
+
DhbTeamSvc.setup(id: organization.id)
|
112
|
+
$.cookie('dhb_ref_id',organization.id)
|
113
|
+
selectBox.organization = organization
|
114
|
+
selectBox.close()
|
115
|
+
|
116
|
+
selectBox.createNewOrga = ->
|
117
|
+
newOrgModal.open()
|
118
|
+
selectBox.close()
|
119
|
+
|
120
|
+
# Analytics tab is only enabled for certain users
|
121
|
+
# To enable access, do:
|
122
|
+
# user.put_metadata('has_analytics_beta_access',true)
|
123
|
+
$scope.isAnalyticsTabShown = ->
|
124
|
+
return CurrentUserSvc.document &&
|
125
|
+
CurrentUserSvc.document.current_user &&
|
126
|
+
CurrentUserSvc.document.current_user.hasAnalyticsBetaAccess
|
127
|
+
|
128
|
+
#====================================
|
129
|
+
# New Orga Modal
|
130
|
+
#====================================
|
131
|
+
newOrgModal = ModalSvc.newOrgModal({
|
132
|
+
callback: (data) ->
|
133
|
+
selectBox.changeTo(data)
|
134
|
+
})
|
135
|
+
|
136
|
+
CurrentUserSvc.loadDocument().then (data) ->
|
137
|
+
selectBox.initialize(CurrentUserSvc.document.current_user)
|
138
|
+
|
139
|
+
])
|
140
|
+
|
141
|
+
module.directive('dashboardMenu', ['TemplatePath', 'Miscellaneous', (TemplatePath,Miscellaneous) ->
|
142
|
+
return {
|
143
|
+
restrict: 'A'
|
144
|
+
scope: {
|
145
|
+
backgroundColor:'='
|
146
|
+
}
|
147
|
+
controller: 'DashboardMenuCtrl'
|
148
|
+
|
149
|
+
templateUrl: (elem,attrs) ->
|
150
|
+
if Miscellaneous.style.layout.dashboard_menu_orientation == 'horizontal'
|
151
|
+
TemplatePath['mno_enterprise/dashboard/horizontal_menu.html']
|
152
|
+
else
|
153
|
+
TemplatePath['mno_enterprise/dashboard/menu.html']
|
154
|
+
|
155
|
+
# We need to manually close the collapse menu as we actually stay on the same page
|
156
|
+
link: (scope,element,attrs) ->
|
157
|
+
unless Miscellaneous.style.layout.dashboard_menu_orientation == 'horizontal'
|
158
|
+
element.find(".menu").on("mouseenter", ->
|
159
|
+
angular.element(this).stop()
|
160
|
+
angular.element(this).find(".brand-logo").addClass('expanded')
|
161
|
+
angular.element(this).find(".dashboard-button").find(".content").css("display", "block")
|
162
|
+
angular.element(this).animate({width:275},150)
|
163
|
+
)
|
164
|
+
element.find(".menu").on("mouseleave", ->
|
165
|
+
angular.element(this).stop()
|
166
|
+
angular.element(this).find(".brand-logo").removeClass('expanded')
|
167
|
+
angular.element(this).find(".dashboard-button").find(".content").css("display", "none")
|
168
|
+
angular.element(this).animate({width:80},150)
|
169
|
+
)
|
170
|
+
element.find(".nav a").on("click", ->
|
171
|
+
element.find(".navbar-toggle").click()
|
172
|
+
)
|
173
|
+
}
|
174
|
+
])
|