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
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5bef9039e935b77af54ef4175ff405df5f4259d2
|
4
|
+
data.tar.gz: 3a6773a7de854f3451fd5deb9d889a474bd9f5c0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0d792421a8f581300b6495040da6d02cc5965633c8979c1f21f6b7bfcc186f57504b3ba7bdd4edb2a3730301cbcc265a1fe1ed5f3e95eab3659da353c4874293
|
7
|
+
data.tar.gz: a58e17234d740f8deb06944b88e6c381a877aec806643e3e1e4dd3264d48318be2d4f72c11cb280517ed5f814167886e76590c48d79f0761259d851b2a74a974
|
data/LICENSE
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
Copyright 2015 Maestrano Pty Ltd
|
data/Rakefile
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'rspec/core/rake_task'
|
2
|
+
require 'mno_enterprise/testing_support/common_rake'
|
3
|
+
|
4
|
+
RSpec::Core::RakeTask.new
|
5
|
+
|
6
|
+
task default: :spec
|
7
|
+
|
8
|
+
desc "Generates a dummy app for testing"
|
9
|
+
task :test_app do
|
10
|
+
ENV['LIB_NAME'] = 'mno_enterprise/frontend'
|
11
|
+
Rake::Task['mno_enterprise:testing:create_dummy_app'].invoke
|
12
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,173 @@
|
|
1
|
+
# This is the app declaration
|
2
|
+
|
3
|
+
mnoAppModules = [
|
4
|
+
# External libraries
|
5
|
+
'ngRoute',
|
6
|
+
'ngSanitize',
|
7
|
+
'xeditable',
|
8
|
+
'ngReallyClick',
|
9
|
+
'ui.bootstrap',
|
10
|
+
|
11
|
+
# Internal libraries
|
12
|
+
'maestrano.assets',
|
13
|
+
'maestrano.utilities',
|
14
|
+
'maestrano.components',
|
15
|
+
'maestrano.controllers',
|
16
|
+
'maestrano.message-bus',
|
17
|
+
'maestrano.exchange-rates',
|
18
|
+
'maestrano.services',
|
19
|
+
'maestrano.filters',
|
20
|
+
|
21
|
+
# Frontend modules
|
22
|
+
'maestrano.dashboard',
|
23
|
+
'maestrano.impac',
|
24
|
+
'maestrano.user-setup'
|
25
|
+
]
|
26
|
+
|
27
|
+
# Add Angular Material if requested
|
28
|
+
<% if MnoEnterprise.style.design.material %>
|
29
|
+
mnoAppModules.push('ngMaterial')
|
30
|
+
<% end %>
|
31
|
+
|
32
|
+
<% if Rails.env.development? %>
|
33
|
+
mnoAppModules.push('blndspt.ngPerformance')
|
34
|
+
<% end %>
|
35
|
+
|
36
|
+
# Declare the application
|
37
|
+
@maestranoApp = angular.module('maestrano',mnoAppModules)
|
38
|
+
|
39
|
+
# Configure the http headers for AJAX requests
|
40
|
+
# Define content type and set csrf token
|
41
|
+
# TODO: properly configure SCE
|
42
|
+
@maestranoApp.config(['$httpProvider', '$sceDelegateProvider', ($httpProvider,$sceDelegateProvider) ->
|
43
|
+
$httpProvider.defaults.headers.common['Accept'] = 'application/json'
|
44
|
+
$httpProvider.defaults.headers.common['Content-Type'] = 'application/json'
|
45
|
+
|
46
|
+
if token = $("meta[name='csrf-token']").attr("content")
|
47
|
+
$httpProvider.defaults.headers.common['X-CSRF-Token'] = token
|
48
|
+
|
49
|
+
# Configure SCE to authorize the Maestrano domains
|
50
|
+
#$sceProvider.enabled(false);
|
51
|
+
$sceDelegateProvider.resourceUrlWhitelist([
|
52
|
+
# Allow same origin resource loads.
|
53
|
+
'self'
|
54
|
+
# Allow UAT asset server
|
55
|
+
#'https://assets-apse1-uat-maestrano.s3.amazonaws.com/assets/**',
|
56
|
+
# Allow UAT Cloudfront distribution
|
57
|
+
#'https://dbu1g4tv4k5kk.cloudfront.net/web/mno/assets/**',
|
58
|
+
# Allow PROD asset server
|
59
|
+
#'https://assets-apse1-prd-maestrano.s3.amazonaws.com/assets/**',
|
60
|
+
# Allow PROD Cloudfront distribution
|
61
|
+
#'https://cdn.maestrano.com/web/mno/assets/**'
|
62
|
+
]);
|
63
|
+
|
64
|
+
return $httpProvider
|
65
|
+
])
|
66
|
+
|
67
|
+
# Configure routes
|
68
|
+
@maestranoApp.config(['$routeProvider', ($routeProvider) ->
|
69
|
+
if window.location.pathname == '/mnoe/myspace'
|
70
|
+
$routeProvider.
|
71
|
+
when('/', {
|
72
|
+
template: "<div dashboard-apps-list></div>"
|
73
|
+
}).
|
74
|
+
when('/account', {
|
75
|
+
template: "<div dashboard-account></div>"
|
76
|
+
}).
|
77
|
+
when('/company', {
|
78
|
+
template: "<div dashboard-organization-index></div>"
|
79
|
+
}).
|
80
|
+
when('/support', {
|
81
|
+
template: "<div dashboard-support></div>"
|
82
|
+
}).
|
83
|
+
when('/billing', {
|
84
|
+
redirectTo: '/company'
|
85
|
+
}).
|
86
|
+
when('/marketplace', {
|
87
|
+
template: "<div dashboard-marketplace></div>"
|
88
|
+
}).
|
89
|
+
when('/marketplace/:appId', {
|
90
|
+
template: "<div dashboard-marketplace-app></div>"
|
91
|
+
}).
|
92
|
+
when('/impac', {
|
93
|
+
template: "<div impac-dashboard ></div>"
|
94
|
+
}).
|
95
|
+
otherwise({
|
96
|
+
redirectTo: '/'
|
97
|
+
})
|
98
|
+
])
|
99
|
+
|
100
|
+
# Configure Angular Material Theme
|
101
|
+
<% if MnoEnterprise.style.design.material %>
|
102
|
+
@maestranoApp.config(['$mdThemingProvider', ($mdThemingProvider) ->
|
103
|
+
$mdThemingProvider.theme('default')
|
104
|
+
.primaryPalette('<%= MnoEnterprise.style.palette.primary %>')
|
105
|
+
.accentPalette('<%= MnoEnterprise.style.palette.accent %>')
|
106
|
+
.warnPalette('<%= MnoEnterprise.style.palette.warn %>')
|
107
|
+
.backgroundPalette('<%= MnoEnterprise.style.palette.background %>')
|
108
|
+
])
|
109
|
+
<% end %>
|
110
|
+
|
111
|
+
|
112
|
+
# Configure asset in rootScope
|
113
|
+
@maestranoApp.run(['$rootScope', 'AssetPath', 'TemplatePath','editableOptions', ($rootScope, AssetPath, TemplatePath, editableOptions) ->
|
114
|
+
$rootScope.assetPath = AssetPath
|
115
|
+
$rootScope.templatePath = TemplatePath
|
116
|
+
editableOptions.theme = 'bs3'
|
117
|
+
])
|
118
|
+
|
119
|
+
|
120
|
+
# ----- IMPAC ANGULAR PROVIDER CONFIGURATIONS
|
121
|
+
#======================================================================================
|
122
|
+
# IMPAC-LINKING: Require core data
|
123
|
+
#======================================================================================
|
124
|
+
@maestranoApp.run (ImpacLinking, ImpacConfigSvc) ->
|
125
|
+
|
126
|
+
data =
|
127
|
+
user: ImpacConfigSvc.getUserData
|
128
|
+
organizations: ImpacConfigSvc.getOrganizations
|
129
|
+
|
130
|
+
ImpacLinking.linkData(data)
|
131
|
+
|
132
|
+
#======================================================================================
|
133
|
+
# IMPAC-ROUTES: Configuring API routes
|
134
|
+
#======================================================================================
|
135
|
+
@maestranoApp.run (ImpacRoutes) ->
|
136
|
+
|
137
|
+
data =
|
138
|
+
dhbBasePath: '/mnoe/jpi/v1/impac/dashboards'
|
139
|
+
widgetBasePath: '/mnoe/jpi/v1/impac/widgets'
|
140
|
+
showWidgetPath: '<%= "#{MnoEnterprise.impac_api_host}#{MnoEnterprise.impac_api_root_path}/v1/get_widget" %>'
|
141
|
+
# Disables widgets suggestions
|
142
|
+
# sendWidgetSuggestionPath: 'mnoe/jpi/v1/mailers'
|
143
|
+
impacKpisBasePath: '<%= "#{MnoEnterprise.impac_api_host}#{MnoEnterprise.impac_api_root_path}/v2/kpis" %>'
|
144
|
+
kpiBasePath: '/mnoe/jpi/v1/impac/kpis'
|
145
|
+
|
146
|
+
ImpacRoutes.configureRoutes(data)
|
147
|
+
|
148
|
+
#======================================================================================
|
149
|
+
# IMPAC-ASSETS: Configuring static assets
|
150
|
+
#======================================================================================
|
151
|
+
@maestranoApp.run (ImpacAssets, AssetPath) ->
|
152
|
+
|
153
|
+
paths =
|
154
|
+
dataNotFound: '<%= image_path("impac/data_not_found") %>'
|
155
|
+
# impacTitleLogo: '<%= image_path("impac/transparent-logo.png") %>'
|
156
|
+
# impacDashboardBackground: '<%= image_path("impac/impac_background.png") %>'
|
157
|
+
|
158
|
+
ImpacAssets.configure(paths)
|
159
|
+
|
160
|
+
#======================================================================================
|
161
|
+
# IMPAC-THEMES: Configuring colour themes, and enabling/disabling UI functionality.
|
162
|
+
#======================================================================================
|
163
|
+
@maestranoApp.run (ImpacTheming) ->
|
164
|
+
|
165
|
+
data =
|
166
|
+
dhbConfig:
|
167
|
+
showDhbHeading: true
|
168
|
+
dhbHeadingText: ''
|
169
|
+
# kpis options
|
170
|
+
dhbKpisConfig:
|
171
|
+
enableKpis: false
|
172
|
+
|
173
|
+
ImpacTheming.configure(data)
|
@@ -0,0 +1,62 @@
|
|
1
|
+
module = angular.module('maestrano.controllers.modals-ctrl',['maestrano.assets'])
|
2
|
+
|
3
|
+
# -------------------------------------------------------------------------
|
4
|
+
# This module is meant to contain the small controllers for simple modals
|
5
|
+
# For more complex modals, put the controller in its own file
|
6
|
+
# -------------------------------------------------------------------------
|
7
|
+
|
8
|
+
#============================================
|
9
|
+
# NewOrgModalCtrl
|
10
|
+
#============================================
|
11
|
+
module.controller('NewOrgModalCtrl',[
|
12
|
+
'$scope','$modalInstance','Utilities','DhbOrganizationSvc','$modalInstanceCB'
|
13
|
+
($scope, $modalInstance, Utilities, DhbOrganizationSvc, $modalInstanceCB) ->
|
14
|
+
|
15
|
+
$scope.modal = { model:{} }
|
16
|
+
|
17
|
+
$scope.modal.close = ->
|
18
|
+
$modalInstance.close()
|
19
|
+
|
20
|
+
$scope.modal.proceed = ->
|
21
|
+
self = $scope
|
22
|
+
modal = self.modal
|
23
|
+
modal.isLoading = true
|
24
|
+
data = { organization: modal.model }
|
25
|
+
DhbOrganizationSvc.organization.create(data).then(
|
26
|
+
(success) ->
|
27
|
+
modal.errors = ''
|
28
|
+
modal.close()
|
29
|
+
# Callback method
|
30
|
+
if $modalInstanceCB then $modalInstanceCB(success.data.organization)
|
31
|
+
,(errors) ->
|
32
|
+
modal.errors = Utilities.processRailsError(errors)
|
33
|
+
).finally(-> modal.isLoading = false)
|
34
|
+
|
35
|
+
])
|
36
|
+
|
37
|
+
#============================================
|
38
|
+
# NewOrgResellerReqModalCtrl
|
39
|
+
#============================================
|
40
|
+
module.controller('NewOrgResellerReqModalCtrl',[
|
41
|
+
'$scope','$modalInstance','Utilities','DhbOrganizationSvc','$modalInstanceCB'
|
42
|
+
($scope, $modalInstance, Utilities, DhbOrganizationSvc, $modalInstanceCB) ->
|
43
|
+
|
44
|
+
$scope.modal = { model:{} }
|
45
|
+
|
46
|
+
$scope.modal.close = ->
|
47
|
+
$modalInstance.close()
|
48
|
+
|
49
|
+
$scope.modal.proceed = ->
|
50
|
+
self = $scope
|
51
|
+
modal = self.modal
|
52
|
+
modal.isLoading = true
|
53
|
+
data = { organization: modal.model, reseller_req:true }
|
54
|
+
DhbOrganizationSvc.organization.create(data).then(
|
55
|
+
(success) ->
|
56
|
+
modal.errors = ''
|
57
|
+
modal.close()
|
58
|
+
,(errors) ->
|
59
|
+
modal.errors = Utilities.processRailsError(errors)
|
60
|
+
).finally(-> modal.isLoading = false)
|
61
|
+
|
62
|
+
])
|
data/app/assets/javascripts/mno_enterprise/angular/directives/dashboard/dashboard-account.js.coffee
ADDED
@@ -0,0 +1,157 @@
|
|
1
|
+
module = angular.module('maestrano.dashboard.dashboard-account',['maestrano.assets'])
|
2
|
+
|
3
|
+
#============================================
|
4
|
+
#
|
5
|
+
#============================================
|
6
|
+
module.controller('DashboardAccountCtrl',[
|
7
|
+
'$scope','CurrentUserSvc','DashboardUser','Miscellaneous','Utilities', 'AssetPath',
|
8
|
+
($scope, CurrentUserSvc, DashboardUser, Miscellaneous, Utilities, AssetPath) ->
|
9
|
+
CurrentUserSvc.loadDocument()
|
10
|
+
CurrentUserSvc.then ->
|
11
|
+
|
12
|
+
# Scope init
|
13
|
+
$scope.assetPath = AssetPath
|
14
|
+
$scope.countryCodes = Miscellaneous.countryCodes
|
15
|
+
$scope.errors = {}
|
16
|
+
$scope.success = {}
|
17
|
+
|
18
|
+
# User model init
|
19
|
+
$scope.isPersoInfoOpen = true
|
20
|
+
userDocument = CurrentUserSvc.document.current_user
|
21
|
+
$scope.user = { model: {}, password: {}, loading:false }
|
22
|
+
|
23
|
+
setUserModel = (model) ->
|
24
|
+
$scope.user.model = {
|
25
|
+
name: model.name
|
26
|
+
surname: model.surname
|
27
|
+
email: model.email
|
28
|
+
company: model.company
|
29
|
+
phone: model.phone
|
30
|
+
website: model.website
|
31
|
+
phone_country_code: model.phone_country_code
|
32
|
+
}
|
33
|
+
if userDocument.deletion_request
|
34
|
+
$scope.user.currentDeletionRequestToken = userDocument.deletion_request.token
|
35
|
+
else
|
36
|
+
$scope.user.currentDeletionRequestToken = -1
|
37
|
+
|
38
|
+
setUserModel(userDocument)
|
39
|
+
userOld = angular.copy($scope.user.model)
|
40
|
+
|
41
|
+
$scope.user.hasChanged = ->
|
42
|
+
!(_.isEqual($scope.user.model,userOld))
|
43
|
+
|
44
|
+
$scope.user.cancelChanges = ->
|
45
|
+
$scope.user.model = _.clone(userOld)
|
46
|
+
|
47
|
+
$scope.user.update = ->
|
48
|
+
$scope.user.loading = true
|
49
|
+
CurrentUserSvc.update($scope.user.model).then(
|
50
|
+
(userResp) ->
|
51
|
+
# Email is not changed straight away - Notify user that new email will need to
|
52
|
+
# be confirmed
|
53
|
+
if userOld.email == $scope.user.model.email
|
54
|
+
$scope.success.user = "Saved!"
|
55
|
+
else
|
56
|
+
$scope.success.user = "Saved! A confirmation email will be sent to your new email address. You will need to click on the link enclosed in this email in order to validate this new address."
|
57
|
+
|
58
|
+
displayEmail = $scope.user.model.email
|
59
|
+
setUserModel(userResp)
|
60
|
+
|
61
|
+
# Email not changed in backend until confirmation
|
62
|
+
# Keep changed email on frontend side to avoid user confusion
|
63
|
+
$scope.user.model.email = displayEmail
|
64
|
+
|
65
|
+
userOld = _.clone($scope.user.model)
|
66
|
+
$scope.user.loading = false
|
67
|
+
,(error) ->
|
68
|
+
$scope.user.loading = false
|
69
|
+
$scope.errors.user = Utilities.processRailsError(error)
|
70
|
+
)
|
71
|
+
|
72
|
+
# ----------------------------------------------------
|
73
|
+
# Password update
|
74
|
+
# ----------------------------------------------------
|
75
|
+
$scope.isChangePasswordOpen = false
|
76
|
+
$scope.user.cancelPassword = ->
|
77
|
+
$scope.user.password = { currentPassword:null, confirmPassword:null, newPassword:null }
|
78
|
+
|
79
|
+
$scope.user.updatePasswordEnabled = ->
|
80
|
+
$scope.user.password.currentPassword &&
|
81
|
+
$scope.user.password.confirmPassword &&
|
82
|
+
$scope.user.password.newPassword &&
|
83
|
+
$scope.user.password.confirmPassword == $scope.user.password.newPassword
|
84
|
+
|
85
|
+
|
86
|
+
$scope.user.cancelPasswordEnabled = ->
|
87
|
+
$scope.user.password.currentPassword ||
|
88
|
+
$scope.user.password.confirmPassword ||
|
89
|
+
$scope.user.password.newPassword
|
90
|
+
|
91
|
+
$scope.user.updatePassword = ->
|
92
|
+
$scope.user.loading = true
|
93
|
+
CurrentUserSvc.updatePassword($scope.user.password.newPassword,$scope.user.password.confirmPassword,$scope.user.password.currentPassword).then(
|
94
|
+
(success) ->
|
95
|
+
$scope.user.loading = false
|
96
|
+
$scope.success.changePassword = "Saved!"
|
97
|
+
$scope.errors = null
|
98
|
+
$scope.user.cancelPassword()
|
99
|
+
,(error) ->
|
100
|
+
$scope.user.loading = false
|
101
|
+
$scope.errors.changePassword = Utilities.processRailsError(error)
|
102
|
+
)
|
103
|
+
|
104
|
+
# ----------------------------------------------------
|
105
|
+
# Account Deletion
|
106
|
+
# ----------------------------------------------------
|
107
|
+
$scope.isAccountDeletionOpen = false
|
108
|
+
$scope.user.createDeletionRequest = ->
|
109
|
+
$scope.user.loading = true
|
110
|
+
DashboardUser.deletionRequest().then(
|
111
|
+
(success) ->
|
112
|
+
$scope.user.loading = false
|
113
|
+
$scope.user.currentDeletionRequestToken = success.data.attributes.token
|
114
|
+
,(error) ->
|
115
|
+
$scope.user.loading = false
|
116
|
+
$scope.errors.deletionReq = Utilities.processRailsError(error)
|
117
|
+
)
|
118
|
+
|
119
|
+
$scope.user.cancelDeletionRequest = ->
|
120
|
+
if $scope.user.currentDeletionRequestToken
|
121
|
+
$scope.user.loading = true
|
122
|
+
token = $scope.user.currentDeletionRequestToken
|
123
|
+
DashboardUser.cancelDeletionRequest(token).then(
|
124
|
+
(success) ->
|
125
|
+
$scope.user.loading = false
|
126
|
+
$scope.user.currentDeletionRequestToken = -1
|
127
|
+
,(error) ->
|
128
|
+
$scope.user.loading = false
|
129
|
+
$scope.errors.deletionReq = Utilities.processRailsError(error)
|
130
|
+
)
|
131
|
+
|
132
|
+
$scope.user.resendDeletionRequest = ->
|
133
|
+
if $scope.user.currentDeletionRequestToken
|
134
|
+
$scope.user.loading = true
|
135
|
+
token = $scope.user.currentDeletionRequestToken
|
136
|
+
DashboardUser.resendDeletionRequest(token).then(
|
137
|
+
(success) ->
|
138
|
+
$scope.user.loading = false
|
139
|
+
,(error) ->
|
140
|
+
$scope.user.loading = false
|
141
|
+
$scope.errors.deletionReq = Utilities.processRailsError(error)
|
142
|
+
)
|
143
|
+
|
144
|
+
# TODO: nice to have: update the current user info the same way we updateds
|
145
|
+
# apps info which will allow to remove the deletion request after 60 minutes
|
146
|
+
|
147
|
+
])
|
148
|
+
|
149
|
+
module.directive('dashboardAccount', ['TemplatePath', (TemplatePath) ->
|
150
|
+
return {
|
151
|
+
restrict: 'A',
|
152
|
+
scope: {
|
153
|
+
},
|
154
|
+
templateUrl: TemplatePath['mno_enterprise/dashboard/account.html'],
|
155
|
+
controller: 'DashboardAccountCtrl'
|
156
|
+
}
|
157
|
+
])
|
@@ -0,0 +1,62 @@
|
|
1
|
+
module = angular.module('maestrano.dashboard.dashboard-app-deletion-request',['maestrano.assets'])
|
2
|
+
|
3
|
+
#============================================
|
4
|
+
#
|
5
|
+
#============================================
|
6
|
+
module.controller('DashboardAppDeletionRequestCtrl',[
|
7
|
+
'$scope','$modal','DashboardAppInstance','DashboardAppsDocument','Utilities','AssetPath'
|
8
|
+
($scope, $modal, DashboardAppInstance, DashboardAppsDocument, Utilities, AssetPath) ->
|
9
|
+
|
10
|
+
# Scope Initialization
|
11
|
+
$scope.assetPath = AssetPath
|
12
|
+
$scope.modal = { }
|
13
|
+
|
14
|
+
init = ->
|
15
|
+
$scope.data = DashboardAppsDocument.data["#{$scope.appId}"].plan
|
16
|
+
$scope.sentence = "Please proceed to the deletion of my app and all data it contains"
|
17
|
+
|
18
|
+
# Open modal
|
19
|
+
$scope.$watch(( -> $scope.openModal), ->
|
20
|
+
if $scope.openModal > 0 then $scope.modal.open()
|
21
|
+
)
|
22
|
+
|
23
|
+
$scope.modal.open = ->
|
24
|
+
$scope.modal.errors = null
|
25
|
+
$scope.modal.$instance = $modal.open(templateUrl:'internal-deletion-modal.html',scope:$scope, size:'lg')
|
26
|
+
|
27
|
+
$scope.modal.close = ->
|
28
|
+
$scope.modal.$instance.close()
|
29
|
+
|
30
|
+
$scope.proceed = ->
|
31
|
+
$scope.modal.loading = true
|
32
|
+
DashboardAppInstance.terminate($scope.appId).then(
|
33
|
+
(success) ->
|
34
|
+
DashboardAppsDocument.reload()
|
35
|
+
$scope.modal.loading = false
|
36
|
+
$scope.modal.errors = null
|
37
|
+
$scope.modal.close()
|
38
|
+
,(error) ->
|
39
|
+
$scope.modal.loading = false
|
40
|
+
$scope.modal.errors = Utilities.processRailsError(error)
|
41
|
+
)
|
42
|
+
|
43
|
+
|
44
|
+
$scope.$watch DashboardAppsDocument.getId, (val) ->
|
45
|
+
$scope.loading = true
|
46
|
+
if val?
|
47
|
+
DashboardAppsDocument.load(val).then ->
|
48
|
+
init()
|
49
|
+
|
50
|
+
])
|
51
|
+
|
52
|
+
module.directive('dashboardAppDeletionRequest', ['TemplatePath', (TemplatePath) ->
|
53
|
+
return {
|
54
|
+
restrict: 'A',
|
55
|
+
scope: {
|
56
|
+
appId:'@'
|
57
|
+
openModal:'='
|
58
|
+
},
|
59
|
+
templateUrl: TemplatePath['mno_enterprise/dashboard/app_deletion.html'],
|
60
|
+
controller: 'DashboardAppDeletionRequestCtrl'
|
61
|
+
}
|
62
|
+
])
|