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,21 @@
|
|
1
|
+
maestranoAssets = angular.module('maestrano.assets', [])
|
2
|
+
|
3
|
+
maestranoAssets.factory('AssetPath', ->
|
4
|
+
return {
|
5
|
+
<% MnoEnterprise::Frontend::AssetsUtil.images.each do |asset| %>
|
6
|
+
"<%= asset %>" : "<%= asset_path(asset) %>"
|
7
|
+
<% end %>
|
8
|
+
}
|
9
|
+
)
|
10
|
+
|
11
|
+
maestranoAssets.factory('TemplatePath', ->
|
12
|
+
return {
|
13
|
+
<% MnoEnterprise::Frontend::AssetsUtil.templates.each do |asset| %>
|
14
|
+
"<%= asset %>" : "<%= asset_path(asset) %>"
|
15
|
+
<% end %>
|
16
|
+
}
|
17
|
+
)
|
18
|
+
|
19
|
+
# Increment version below to force
|
20
|
+
# asset reload
|
21
|
+
# 180
|
data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-current-user-svc.js.coffee
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
angular.module('maestrano.services.current-user-svc', []).factory('CurrentUserSvc', ['$http', '$q', ($http, $q) ->
|
2
|
+
service = {}
|
3
|
+
|
4
|
+
# Configuration
|
5
|
+
service.config = {
|
6
|
+
signInPath: '/mnoe/auth/users/sign_in'
|
7
|
+
signUpPath: '/mnoe/auth/users'
|
8
|
+
updatePath: '/mnoe/jpi/v1/current_user',
|
9
|
+
updatePasswordPath: '/mnoe/jpi/v1/current_user/update_password',
|
10
|
+
}
|
11
|
+
|
12
|
+
# Load User
|
13
|
+
service.then = (fn = nil) ->
|
14
|
+
service.loadDocument().then(fn)
|
15
|
+
|
16
|
+
service.loadDocument = (force = false)->
|
17
|
+
self = service
|
18
|
+
if self.document == undefined || force
|
19
|
+
self.query = $http.get("/mnoe/jpi/v1/current_user")
|
20
|
+
self.query.success (data) ->
|
21
|
+
self.document = data
|
22
|
+
return self.query
|
23
|
+
|
24
|
+
|
25
|
+
# Sign user in
|
26
|
+
# Return a promise
|
27
|
+
service.signIn = (email,password) ->
|
28
|
+
self = service
|
29
|
+
creds = {email: email, password: password}
|
30
|
+
$http.post(self.config.signInPath,{user: creds})
|
31
|
+
.then(-> self.loadDocument(true))
|
32
|
+
|
33
|
+
service.addOrg = (org) ->
|
34
|
+
self = service
|
35
|
+
if self.document && self.document.current_user && self.document.current_user.organizations
|
36
|
+
self.document.current_user.organizations.push(org)
|
37
|
+
|
38
|
+
service.update = (data) ->
|
39
|
+
self = service
|
40
|
+
return $http.put(self.config.updatePath,{user:data}).then (resp) ->
|
41
|
+
userResp = resp.data.current_user
|
42
|
+
angular.copy(userResp, self.document.current_user)
|
43
|
+
return userResp
|
44
|
+
|
45
|
+
service.updatePassword = (newPassword,confirmPassword,currentPassword) ->
|
46
|
+
self = service
|
47
|
+
return $http.put(self.config.updatePasswordPath,{ user: {
|
48
|
+
password: newPassword,
|
49
|
+
password_confirmation: confirmPassword,
|
50
|
+
current_password: currentPassword
|
51
|
+
} })
|
52
|
+
|
53
|
+
# Sign user up
|
54
|
+
# expect the following hash:
|
55
|
+
# {
|
56
|
+
# name: 'John',
|
57
|
+
# surname: 'Doe',
|
58
|
+
# email: 'john.doe@doecorp.com',
|
59
|
+
# password: 'jdoedoe',
|
60
|
+
# password_confirmation: 'jdoejdoe'
|
61
|
+
# }
|
62
|
+
# Return a promise
|
63
|
+
service.signUp = (hash) ->
|
64
|
+
self = service
|
65
|
+
$http.post(self.config.signUpPath,{user: hash})
|
66
|
+
.then(-> self.loadDocument(true))
|
67
|
+
|
68
|
+
service.getSsoSessionId = ->
|
69
|
+
self = service
|
70
|
+
if self.document?
|
71
|
+
return self.document.current_user.sso_session
|
72
|
+
else
|
73
|
+
return null
|
74
|
+
|
75
|
+
service.getUserData = ->
|
76
|
+
self = service
|
77
|
+
deferred = $q.defer()
|
78
|
+
self.loadDocument().then(
|
79
|
+
(success) ->
|
80
|
+
deferred.resolve(success.data.current_user)
|
81
|
+
->
|
82
|
+
deferred.reject()
|
83
|
+
)
|
84
|
+
return deferred.promise
|
85
|
+
|
86
|
+
service.getOrganizations = ->
|
87
|
+
self = service
|
88
|
+
deferred = $q.defer()
|
89
|
+
|
90
|
+
self.loadDocument().then (success) ->
|
91
|
+
deferred.resolve(success.data.current_user.organizations)
|
92
|
+
,(error) ->
|
93
|
+
deferred.reject("Error while trying to retrieve current user organizations")
|
94
|
+
|
95
|
+
return deferred.promise
|
96
|
+
|
97
|
+
return service
|
98
|
+
|
99
|
+
])
|
data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-exchange-rates.js.coffee
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
# This service provides exchange rates from AUD to another currency
|
2
|
+
# as well as currency information (symbol, subunit symbol etc.)
|
3
|
+
# ---
|
4
|
+
# Note that rates are received from Maestrano in percent
|
5
|
+
# E.g: 100 AUD = 92.31 USD
|
6
|
+
angular.module('maestrano.exchange-rates', []).factory('ExchangeRates', ['$http', ($http) ->
|
7
|
+
service = {}
|
8
|
+
service.ratesUrl = '/api/v1/exchange_rates'
|
9
|
+
service.rates = {}
|
10
|
+
service.defCurrency = if window.currentVisitorCountryCode is "AU" then "AUD" else "USD"
|
11
|
+
service.then = () ->
|
12
|
+
|
13
|
+
#==================================
|
14
|
+
# Money Object
|
15
|
+
#==================================
|
16
|
+
# Exchange object
|
17
|
+
moneyObject = {}
|
18
|
+
|
19
|
+
# Return a new money object in the
|
20
|
+
# requested currency
|
21
|
+
moneyObject.to = (currency) ->
|
22
|
+
self = this
|
23
|
+
if self.currency
|
24
|
+
if self.currency == currency
|
25
|
+
return self
|
26
|
+
else
|
27
|
+
money = angular.copy(moneyObject)
|
28
|
+
money.currency = currency
|
29
|
+
money.amount = (self.amount * service.rates[currency].value) / service.rates[self.currency].value
|
30
|
+
# Round the number if no subunit
|
31
|
+
if !service.rates[currency].options.subunit_to_unit || service.rates[currency].options.subunit_to_unit == 1
|
32
|
+
money.amount = Math.round(money.amount)
|
33
|
+
return money
|
34
|
+
|
35
|
+
# Return the money object in the service
|
36
|
+
# default currency
|
37
|
+
moneyObject.toDefault = () ->
|
38
|
+
self = this
|
39
|
+
self.to(service.defaultCurrency())
|
40
|
+
|
41
|
+
# Format a money object for display
|
42
|
+
moneyObject.format = () ->
|
43
|
+
self = this
|
44
|
+
accounting.formatMoney(self.amount, service.rates[self.currency].options)
|
45
|
+
|
46
|
+
# Format a money object in fractional only (like 99ct)
|
47
|
+
# if the amount is below the subunit_to_unit threshold
|
48
|
+
moneyObject.formatFractional = () ->
|
49
|
+
self = this
|
50
|
+
currency = service.rates[self.currency]
|
51
|
+
if !currency.options.subunit_to_unit || currency.options.subunit_to_unit == 1
|
52
|
+
return self.format()
|
53
|
+
else
|
54
|
+
subunit_amount = Math.round(self.amount*currency.options.subunit_to_unit)
|
55
|
+
if subunit_amount >= currency.options.subunit_to_unit
|
56
|
+
return self.format()
|
57
|
+
else
|
58
|
+
return accounting.formatMoney(subunit_amount, { symbol: currency.options.subunit_symbol, format: currency.options.subunit_format, precision: 0 })
|
59
|
+
|
60
|
+
moneyObject.amount = ->
|
61
|
+
self = this
|
62
|
+
return self.amount
|
63
|
+
|
64
|
+
|
65
|
+
#==================================
|
66
|
+
# Service
|
67
|
+
#==================================
|
68
|
+
# Load the rates from Maestrano
|
69
|
+
# and populate the then function
|
70
|
+
service.loadRates = () ->
|
71
|
+
self = service
|
72
|
+
query = $http.get(self.ratesUrl)
|
73
|
+
self.then = query.then
|
74
|
+
query.success((data) ->
|
75
|
+
self.rates = data
|
76
|
+
)
|
77
|
+
|
78
|
+
service.newMoneyObject = (amount,currency) ->
|
79
|
+
money = angular.copy(moneyObject)
|
80
|
+
money.amount = amount
|
81
|
+
money.currency = currency
|
82
|
+
return money
|
83
|
+
|
84
|
+
# Take a float amount in whole unit (eg: dollar,Yen)
|
85
|
+
# Take a currency in iso-3 standard (eg: AUD)
|
86
|
+
# ---
|
87
|
+
# This method returns an moneyObject
|
88
|
+
# You can convert rates like that:
|
89
|
+
# ExchangeRates.exchange(100,'AUD').to('USD')
|
90
|
+
service.exchange = (amount,currency) ->
|
91
|
+
return service.newMoneyObject(amount,currency)
|
92
|
+
|
93
|
+
# Getter/Setter for defaultCurrency
|
94
|
+
service.defaultCurrency = (currency = null) ->
|
95
|
+
if angular.isString(currency)
|
96
|
+
service.defCurrency = currency
|
97
|
+
return service.defCurrency
|
98
|
+
|
99
|
+
service.loadRates()
|
100
|
+
|
101
|
+
return service
|
102
|
+
])
|
@@ -0,0 +1,71 @@
|
|
1
|
+
angular.module('maestrano.services.message-svc', []).factory('MessageSvc', ['$q','$rootScope','TemplatePath', ($q,$rootScope,TemplatePath) ->
|
2
|
+
|
3
|
+
# -------------------------------------------------------------------------
|
4
|
+
# Service
|
5
|
+
# -------------------------------------------------------------------------
|
6
|
+
|
7
|
+
# Initialization
|
8
|
+
service = {}
|
9
|
+
service.messages = [] # Queue for the messages
|
10
|
+
service.count = 0
|
11
|
+
bootstraped = false
|
12
|
+
currentMessage = null
|
13
|
+
|
14
|
+
# Put the message in the queue
|
15
|
+
service.putMessage = (message) ->
|
16
|
+
service.messages.push(message)
|
17
|
+
unless bootstraped
|
18
|
+
bootstrap()
|
19
|
+
|
20
|
+
# Return the current message
|
21
|
+
service.pullMessage = ->
|
22
|
+
currentMessage['templateUrl'] = templateMessageUrl()
|
23
|
+
return currentMessage
|
24
|
+
|
25
|
+
# Check if there's a next message and check of which type it is
|
26
|
+
service.next = ->
|
27
|
+
if service.messages.length > 0
|
28
|
+
currentMessage = service.messages.splice(0,1)[0]
|
29
|
+
if currentMessage.type == 'external-modal'
|
30
|
+
openExternalModal()
|
31
|
+
else
|
32
|
+
service.count += 1
|
33
|
+
else
|
34
|
+
currentMessage = null
|
35
|
+
bootstraped = false
|
36
|
+
service.count = 0
|
37
|
+
|
38
|
+
# -------------------------------------------------------------------------
|
39
|
+
# Private methods
|
40
|
+
# -------------------------------------------------------------------------
|
41
|
+
bootstrap = ->
|
42
|
+
bootstraped = true
|
43
|
+
service.next()
|
44
|
+
|
45
|
+
# Used to open external modal
|
46
|
+
# It expects the message to contain a msbBus (see MsbBus service)
|
47
|
+
# The function will set the variable of the msgbus to true and call
|
48
|
+
# service.next() when the modal is closed (to display next message)
|
49
|
+
openExternalModal = ->
|
50
|
+
msgbus = currentMessage.msgbus
|
51
|
+
msgbus().value = true
|
52
|
+
unregister = $rootScope.$watch((-> msgbus().value),
|
53
|
+
() ->
|
54
|
+
if msgbus().value == false
|
55
|
+
unregister()
|
56
|
+
service.next()
|
57
|
+
)
|
58
|
+
|
59
|
+
# Return the template to be used for the category: category
|
60
|
+
# (not used at the moment, see comment above)
|
61
|
+
templateMessageUrl = ->
|
62
|
+
switch currentMessage.category
|
63
|
+
when 'taskCompleted' then return TemplatePath['mno_enterprise/maestrano-components/modal-messages/congratulations.html']
|
64
|
+
when 'information' then return TemplatePath['mno_enterprise/maestrano-components/modal-messages/information.html']
|
65
|
+
when 'default' then return TemplatePath['mno_enterprise/maestrano-components/modal-messages/default.html']
|
66
|
+
else return TemplatePath['mno_enterprise/maestrano-components/modal-messages/default.html']
|
67
|
+
|
68
|
+
|
69
|
+
return service
|
70
|
+
|
71
|
+
])
|
data/app/assets/javascripts/mno_enterprise/angular/services/maestrano-miscellaneous.js.coffee.erb
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
angular.module('maestrano.services.miscellaneous', []).factory('Miscellaneous', ['$http','$q', ($http, $q) ->
|
2
|
+
service = {}
|
3
|
+
|
4
|
+
# Currencies
|
5
|
+
<% currencies = Country.all.map { |country| Country[country[1]].data['currency'] }.select { |e| e != nil }.sort %>
|
6
|
+
<% currencies = (["USD","AUD","EUR"] + currencies).uniq %>
|
7
|
+
service.currencies = <%= currencies %>
|
8
|
+
|
9
|
+
# Default currency
|
10
|
+
service.defaultCurrency = "<%= MnoEnterprise.app_currency %>"
|
11
|
+
|
12
|
+
# Countries
|
13
|
+
service.countries = [
|
14
|
+
<% Country.all.sort.each do |country,code| %>
|
15
|
+
{ label:"<%= country %>", val: "<%= code %>", ext: "<%= Country.new(code).country_code %>" }
|
16
|
+
<% end %>
|
17
|
+
]
|
18
|
+
|
19
|
+
# Default country
|
20
|
+
service.defaultCountry = "<%= MnoEnterprise.app_country %>"
|
21
|
+
|
22
|
+
# Phone country code
|
23
|
+
service.countryCodes = <%= Country.all.map { |c| [c[1],"(#{c[1]}) +#{Country[c[1]].country_code}"] } %>
|
24
|
+
|
25
|
+
# Impac! API URL
|
26
|
+
service.impacUrls = <%= {
|
27
|
+
get_widget: "#{MnoEnterprise.router.impac_root_url}/get_widget"
|
28
|
+
}.to_json %>
|
29
|
+
|
30
|
+
# Impac! Colors configuration
|
31
|
+
service.impacTenantColors = <%= {
|
32
|
+
positive: MnoEnterprise.style.palette.impac.positive,
|
33
|
+
negative: MnoEnterprise.style.palette.impac.negative,
|
34
|
+
array: MnoEnterprise.style.palette.impac.pool
|
35
|
+
}.to_json %>
|
36
|
+
|
37
|
+
# Maestrano Style Configuration
|
38
|
+
service.style = <%= MnoEnterprise.style.to_json %>
|
39
|
+
|
40
|
+
return service
|
41
|
+
|
42
|
+
])
|
43
|
+
|
44
|
+
# Increment version below to force
|
45
|
+
# asset reload
|
46
|
+
# 74
|
@@ -0,0 +1,67 @@
|
|
1
|
+
angular.module('maestrano.services.modal-svc', []).factory( 'ModalSvc', [
|
2
|
+
'$modal','$rootScope','Utilities','DhbOrganizationSvc','TemplatePath',
|
3
|
+
($modal, $rootScope, Utilities, DhbOrganizationSvc, TemplatePath) ->
|
4
|
+
|
5
|
+
# --------------------------------------------------------------------
|
6
|
+
# The goal of this service is to create a generic modal creator
|
7
|
+
# This is a wip
|
8
|
+
# --------------------------------------------------------------------
|
9
|
+
|
10
|
+
service = {}
|
11
|
+
|
12
|
+
# --------------------------------------------------------------------
|
13
|
+
# Generic Modal class
|
14
|
+
# --------------------------------------------------------------------
|
15
|
+
class Modal
|
16
|
+
# Mandatory options:
|
17
|
+
# ------------------
|
18
|
+
# templateUrl: url of the template
|
19
|
+
#
|
20
|
+
# Optional options:
|
21
|
+
# -----------------
|
22
|
+
# backdrop
|
23
|
+
# modalSize
|
24
|
+
# modalClass (e.g. inverse)
|
25
|
+
# callback: function called after proceed() if successful
|
26
|
+
constructor: (@opts) ->
|
27
|
+
# TODO: exceptions if opts is not complete
|
28
|
+
|
29
|
+
config: () ->
|
30
|
+
self = this
|
31
|
+
{
|
32
|
+
instance: {
|
33
|
+
templateUrl: self.opts.templateUrl
|
34
|
+
controller: self.opts.controller
|
35
|
+
backdrop: self.opts.backdrop || 'static'
|
36
|
+
size: self.opts.modalSize || 'lg'
|
37
|
+
windowClass: self.opts.modalClass || 'inverse'
|
38
|
+
resolve: {
|
39
|
+
$modalInstanceCB: (-> return self.opts.callback)
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
# Open the modal
|
45
|
+
open: () ->
|
46
|
+
self = this
|
47
|
+
$modal.open(self.config().instance)
|
48
|
+
|
49
|
+
# --------------------------------------------------------------------
|
50
|
+
# Service instanciations
|
51
|
+
# --------------------------------------------------------------------
|
52
|
+
service.new = (opts = {}) ->
|
53
|
+
return new Modal(opts)
|
54
|
+
|
55
|
+
service.newOrgModal = (opts = {}) ->
|
56
|
+
opts.templateUrl = TemplatePath['mno_enterprise/modals/new-organization.html']
|
57
|
+
opts.controller = 'NewOrgModalCtrl'
|
58
|
+
return new Modal(opts)
|
59
|
+
|
60
|
+
service.newOrgResellerReqModal = (opts = {}) ->
|
61
|
+
opts.templateUrl = TemplatePath['mno_enterprise/modals/new-organization-reseller-req.html']
|
62
|
+
opts.controller = 'NewOrgResellerReqModalCtrl'
|
63
|
+
return new Modal(opts)
|
64
|
+
|
65
|
+
return service
|
66
|
+
|
67
|
+
])
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# This service is used to pass objects between directives
|
2
|
+
# ---
|
3
|
+
# Please register below any object that should be shared so we
|
4
|
+
# we can ensure that there is no name conflict
|
5
|
+
angular.module('maestrano.message-bus', []).factory('MsgBus', [() ->
|
6
|
+
# Init
|
7
|
+
msgBus = {}
|
8
|
+
|
9
|
+
|
10
|
+
# Messages
|
11
|
+
# ---
|
12
|
+
# Note that strings or integer can't be passed directly. Objects need to be
|
13
|
+
# passed by reference
|
14
|
+
# To pass a string or integer you would need to do something like this
|
15
|
+
#
|
16
|
+
# Controller1:
|
17
|
+
# $scope.mystring = { value: 'bla' }
|
18
|
+
# MsgBus.publish($scope.mystring)
|
19
|
+
#
|
20
|
+
# Controller2:
|
21
|
+
# $scope.mystring = MsgBus.subscribe('mystring')
|
22
|
+
# and use it in view like this: mystring().value
|
23
|
+
#
|
24
|
+
msgBusData =
|
25
|
+
dashboardGrid: {} # dashboardGrid created in AppsCtrl
|
26
|
+
controlBarFilter: {} # search bar filter
|
27
|
+
controlBarQuickFilter: {} # quick filters on control bar
|
28
|
+
orgaSharingModal: {} # Sharing Walkthrough Modal
|
29
|
+
appConnectModal: {} # Connec! Walkthrough Modal
|
30
|
+
page: {} # the page we're on
|
31
|
+
pane: {} # the pane we're on
|
32
|
+
errors: [] # current errors to be passed to the error flash
|
33
|
+
autostopQueue: [] # list of AppInstance that should be proposed an autostop
|
34
|
+
notificationQueue: [] # list of notifications that should appear in the notification widget
|
35
|
+
params: {} # Params passed to myspace param upon loading. E.g.: /myspace?newApp=true
|
36
|
+
|
37
|
+
# Set an object on the bus
|
38
|
+
msgBus.publish = (name,object) ->
|
39
|
+
msgBusData[name] = object
|
40
|
+
|
41
|
+
# Get a bus accessor to the object
|
42
|
+
# Note that this method returns a FUNCTION not an attribute
|
43
|
+
# ---
|
44
|
+
# We need to return a function if we want the result to be
|
45
|
+
# evaluated during $digest (and UI updated automatically)
|
46
|
+
msgBus.subscribe = (name) ->
|
47
|
+
return () -> msgBusData[name]
|
48
|
+
|
49
|
+
return msgBus
|
50
|
+
])
|