123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521 |
- webpackJsonp([0],{
-
- /***/ 109:
- /***/ (function(module, exports) {
-
- function webpackEmptyAsyncContext(req) {
- // Here Promise.resolve().then() is used instead of new Promise() to prevent
- // uncatched exception popping up in devtools
- return Promise.resolve().then(function() {
- throw new Error("Cannot find module '" + req + "'.");
- });
- }
- webpackEmptyAsyncContext.keys = function() { return []; };
- webpackEmptyAsyncContext.resolve = webpackEmptyAsyncContext;
- module.exports = webpackEmptyAsyncContext;
- webpackEmptyAsyncContext.id = 109;
-
- /***/ }),
-
- /***/ 110:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return AccountsPage; });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_ionic_angular__ = __webpack_require__(18);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__account_account__ = __webpack_require__(191);
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- var __metadata = (this && this.__metadata) || function (k, v) {
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
- };
-
-
-
- var AccountsPage = /** @class */ (function () {
- function AccountsPage(navCtrl, navParams) {
- this.navCtrl = navCtrl;
- this.navParams = navParams;
- this.accounts = [
- { id: 1, name: 'Forex' },
- { id: 2, name: 'Kraken' },
- { id: 3, name: 'Robinhood' },
- ];
- }
- AccountsPage.prototype.ionViewDidLoad = function () {
- console.log('ionViewDidLoad AccountsPage');
- };
- AccountsPage.prototype.accountTapped = function ($event, account) {
- this.navCtrl.push(__WEBPACK_IMPORTED_MODULE_2__account_account__["a" /* AccountPage */], account);
- };
- AccountsPage = __decorate([
- Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["m" /* Component */])({
- selector: 'page-accounts',template:/*ion-inline-start:"/Users/vincents/PassionApp/src/pages/accounts/accounts.html"*/'\n<ion-header>\n\n <ion-navbar color = "secondary">\n <ion-title text-center>Accounts</ion-title>\n </ion-navbar>\n\n</ion-header>\n\n\n<ion-content>\n <ion-list>\n <button *ngFor="let account of accounts" ion-item (click)="accountTapped($event, account)">\n {{account.name}}\n </button>\n </ion-list> \n\n</ion-content>\n'/*ion-inline-end:"/Users/vincents/PassionApp/src/pages/accounts/accounts.html"*/,
- }),
- __metadata("design:paramtypes", [__WEBPACK_IMPORTED_MODULE_1_ionic_angular__["e" /* NavController */], __WEBPACK_IMPORTED_MODULE_1_ionic_angular__["f" /* NavParams */]])
- ], AccountsPage);
- return AccountsPage;
- }());
-
- //# sourceMappingURL=accounts.js.map
-
- /***/ }),
-
- /***/ 151:
- /***/ (function(module, exports) {
-
- function webpackEmptyAsyncContext(req) {
- // Here Promise.resolve().then() is used instead of new Promise() to prevent
- // uncatched exception popping up in devtools
- return Promise.resolve().then(function() {
- throw new Error("Cannot find module '" + req + "'.");
- });
- }
- webpackEmptyAsyncContext.keys = function() { return []; };
- webpackEmptyAsyncContext.resolve = webpackEmptyAsyncContext;
- module.exports = webpackEmptyAsyncContext;
- webpackEmptyAsyncContext.id = 151;
-
- /***/ }),
-
- /***/ 191:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return AccountPage; });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_ionic_angular__ = __webpack_require__(18);
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- var __metadata = (this && this.__metadata) || function (k, v) {
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
- };
-
-
- var AccountPage = /** @class */ (function () {
- function AccountPage(navCtrl, navParams) {
- this.navCtrl = navCtrl;
- this.navParams = navParams;
- this.account = {};
- this.account = this.navParams.data;
- console.log('**nav parama', this.navParams);
- }
- AccountPage.prototype.ionViewDidLoad = function () {
- console.log('ionViewDidLoad AccountPage');
- };
- AccountPage = __decorate([
- Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["m" /* Component */])({
- selector: 'page-account',template:/*ion-inline-start:"/Users/vincents/PassionApp/src/pages/account/account.html"*/'\n<ion-header>\n\n <ion-navbar color = "secondary">\n <ion-title text-center>{{account.name}}</ion-title>\n </ion-navbar>\n\n</ion-header>\n\n\n<ion-content padding>\n\n</ion-content>\n'/*ion-inline-end:"/Users/vincents/PassionApp/src/pages/account/account.html"*/,
- }),
- __metadata("design:paramtypes", [typeof (_a = typeof __WEBPACK_IMPORTED_MODULE_1_ionic_angular__["e" /* NavController */] !== "undefined" && __WEBPACK_IMPORTED_MODULE_1_ionic_angular__["e" /* NavController */]) === "function" && _a || Object, typeof (_b = typeof __WEBPACK_IMPORTED_MODULE_1_ionic_angular__["f" /* NavParams */] !== "undefined" && __WEBPACK_IMPORTED_MODULE_1_ionic_angular__["f" /* NavParams */]) === "function" && _b || Object])
- ], AccountPage);
- return AccountPage;
- var _a, _b;
- }());
-
- //# sourceMappingURL=account.js.map
-
- /***/ }),
-
- /***/ 196:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return OverviewPage; });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__statistics_statistics__ = __webpack_require__(99);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__angular_core__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_ionic_angular__ = __webpack_require__(18);
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- var __metadata = (this && this.__metadata) || function (k, v) {
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
- };
-
-
-
- var OverviewPage = /** @class */ (function () {
- function OverviewPage(navCtrl) {
- this.navCtrl = navCtrl;
- }
- OverviewPage.prototype.goToStatistics = function () {
- this.navCtrl.push(__WEBPACK_IMPORTED_MODULE_0__statistics_statistics__["a" /* StatisticsPage */]);
- };
- OverviewPage = __decorate([
- Object(__WEBPACK_IMPORTED_MODULE_1__angular_core__["m" /* Component */])({
- selector: 'page-overview',template:/*ion-inline-start:"/Users/vincents/PassionApp/src/pages/overview/overview.html"*/'<ion-header>\n <ion-navbar color = "primary">\n <button menuToggle ion-button icon-only>\n <ion-icon name = "menu"></ion-icon>\n </button>\n <ion-title>PP 1.0</ion-title>\n </ion-navbar>\n <ion-toolbar color = "secondary" >\n <ion-title text-center>\n Overview\n </ion-title>\n </ion-toolbar>\n</ion-header>\n\n<ion-content padding>\n <ion-img src="../assets/imgs/overviewchart.png"></ion-img>\n\n</ion-content>'/*ion-inline-end:"/Users/vincents/PassionApp/src/pages/overview/overview.html"*/
- }),
- __metadata("design:paramtypes", [__WEBPACK_IMPORTED_MODULE_2_ionic_angular__["e" /* NavController */]])
- ], OverviewPage);
- return OverviewPage;
- }());
-
- //# sourceMappingURL=overview.js.map
-
- /***/ }),
-
- /***/ 197:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return StrategiesPage; });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_ionic_angular__ = __webpack_require__(18);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__strategy_strategy__ = __webpack_require__(198);
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- var __metadata = (this && this.__metadata) || function (k, v) {
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
- };
-
-
-
- var StrategiesPage = /** @class */ (function () {
- function StrategiesPage(navCtrl, navParams) {
- this.navCtrl = navCtrl;
- this.navParams = navParams;
- this.strategies = [
- { id: 1, name: 'Strategy 1' },
- { id: 2, name: 'Strategy 2' },
- { id: 3, name: 'Strategy 3' },
- { id: 4, name: 'Strategy 4' },
- ];
- }
- StrategiesPage.prototype.ionViewDidLoad = function () {
- console.log('ionViewDidLoad StrategiesPage');
- };
- StrategiesPage.prototype.strategyTapped = function ($event, strategy) {
- this.navCtrl.push(__WEBPACK_IMPORTED_MODULE_2__strategy_strategy__["a" /* StrategyPage */], strategy);
- };
- StrategiesPage = __decorate([
- Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["m" /* Component */])({
- selector: 'page-strategies',template:/*ion-inline-start:"/Users/vincents/PassionApp/src/pages/strategies/strategies.html"*/'\n<ion-header>\n\n <ion-navbar color = "secondary">\n <ion-title text-center>Strategies</ion-title>\n </ion-navbar>\n\n</ion-header>\n\n\n<ion-content>\n <ion-list>\n <button *ngFor="let strategy of strategies" ion-item (click)="strategyTapped($event, strategy)">\n {{strategy.name}}\n </button>\n </ion-list> \n\n</ion-content>\n'/*ion-inline-end:"/Users/vincents/PassionApp/src/pages/strategies/strategies.html"*/,
- }),
- __metadata("design:paramtypes", [__WEBPACK_IMPORTED_MODULE_1_ionic_angular__["e" /* NavController */], __WEBPACK_IMPORTED_MODULE_1_ionic_angular__["f" /* NavParams */]])
- ], StrategiesPage);
- return StrategiesPage;
- }());
-
- //# sourceMappingURL=strategies.js.map
-
- /***/ }),
-
- /***/ 198:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return StrategyPage; });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_ionic_angular__ = __webpack_require__(18);
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- var __metadata = (this && this.__metadata) || function (k, v) {
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
- };
-
-
- var StrategyPage = /** @class */ (function () {
- function StrategyPage(navCtrl, navParams) {
- this.navCtrl = navCtrl;
- this.navParams = navParams;
- this.strategy = {};
- this.strategy = this.navParams.data;
- console.log('**nav params', this.navParams);
- }
- StrategyPage.prototype.ionViewDidLoad = function () {
- console.log('ionViewDidLoad StrategyPage');
- };
- StrategyPage = __decorate([
- Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["m" /* Component */])({
- selector: 'page-strategy',template:/*ion-inline-start:"/Users/vincents/PassionApp/src/pages/strategy/strategy.html"*/'\n<ion-header>\n\n <ion-navbar color = "secondary">\n <ion-title text-center>{{strategy.name}}</ion-title>\n </ion-navbar>\n\n</ion-header>\n\n\n<ion-content padding>\n\n</ion-content>\n'/*ion-inline-end:"/Users/vincents/PassionApp/src/pages/strategy/strategy.html"*/,
- }),
- __metadata("design:paramtypes", [__WEBPACK_IMPORTED_MODULE_1_ionic_angular__["e" /* NavController */], __WEBPACK_IMPORTED_MODULE_1_ionic_angular__["f" /* NavParams */]])
- ], StrategyPage);
- return StrategyPage;
- }());
-
- //# sourceMappingURL=strategy.js.map
-
- /***/ }),
-
- /***/ 199:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_platform_browser_dynamic__ = __webpack_require__(200);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__app_module__ = __webpack_require__(222);
-
-
- Object(__WEBPACK_IMPORTED_MODULE_0__angular_platform_browser_dynamic__["a" /* platformBrowserDynamic */])().bootstrapModule(__WEBPACK_IMPORTED_MODULE_1__app_module__["a" /* AppModule */]);
- //# sourceMappingURL=main.js.map
-
- /***/ }),
-
- /***/ 222:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return AppModule; });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__pages_accounts_accounts__ = __webpack_require__(110);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__pages_account_account__ = __webpack_require__(191);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__pages_trade_trade__ = __webpack_require__(265);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__angular_platform_browser__ = __webpack_require__(31);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__angular_core__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_ionic_angular__ = __webpack_require__(18);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__app_component__ = __webpack_require__(266);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__ionic_native_status_bar__ = __webpack_require__(192);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__ionic_native_splash_screen__ = __webpack_require__(195);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__pages_overview_overview__ = __webpack_require__(196);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__pages_statistics_statistics__ = __webpack_require__(99);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__pages_strategies_strategies__ = __webpack_require__(197);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__pages_strategy_strategy__ = __webpack_require__(198);
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
-
-
-
-
-
-
-
-
-
-
-
-
-
- var AppModule = /** @class */ (function () {
- function AppModule() {
- }
- AppModule = __decorate([
- Object(__WEBPACK_IMPORTED_MODULE_4__angular_core__["I" /* NgModule */])({
- declarations: [
- __WEBPACK_IMPORTED_MODULE_6__app_component__["a" /* MyApp */],
- __WEBPACK_IMPORTED_MODULE_9__pages_overview_overview__["a" /* OverviewPage */],
- __WEBPACK_IMPORTED_MODULE_10__pages_statistics_statistics__["a" /* StatisticsPage */],
- __WEBPACK_IMPORTED_MODULE_11__pages_strategies_strategies__["a" /* StrategiesPage */],
- __WEBPACK_IMPORTED_MODULE_12__pages_strategy_strategy__["a" /* StrategyPage */],
- __WEBPACK_IMPORTED_MODULE_2__pages_trade_trade__["a" /* TradePage */],
- __WEBPACK_IMPORTED_MODULE_1__pages_account_account__["a" /* AccountPage */],
- __WEBPACK_IMPORTED_MODULE_0__pages_accounts_accounts__["a" /* AccountsPage */]
- ],
- imports: [
- __WEBPACK_IMPORTED_MODULE_3__angular_platform_browser__["a" /* BrowserModule */],
- __WEBPACK_IMPORTED_MODULE_5_ionic_angular__["c" /* IonicModule */].forRoot(__WEBPACK_IMPORTED_MODULE_6__app_component__["a" /* MyApp */], {}, {
- links: []
- }),
- ],
- bootstrap: [__WEBPACK_IMPORTED_MODULE_5_ionic_angular__["a" /* IonicApp */]],
- entryComponents: [
- __WEBPACK_IMPORTED_MODULE_6__app_component__["a" /* MyApp */],
- __WEBPACK_IMPORTED_MODULE_9__pages_overview_overview__["a" /* OverviewPage */],
- __WEBPACK_IMPORTED_MODULE_10__pages_statistics_statistics__["a" /* StatisticsPage */],
- __WEBPACK_IMPORTED_MODULE_11__pages_strategies_strategies__["a" /* StrategiesPage */],
- __WEBPACK_IMPORTED_MODULE_12__pages_strategy_strategy__["a" /* StrategyPage */],
- __WEBPACK_IMPORTED_MODULE_2__pages_trade_trade__["a" /* TradePage */],
- __WEBPACK_IMPORTED_MODULE_1__pages_account_account__["a" /* AccountPage */],
- __WEBPACK_IMPORTED_MODULE_0__pages_accounts_accounts__["a" /* AccountsPage */]
- ],
- providers: [
- __WEBPACK_IMPORTED_MODULE_7__ionic_native_status_bar__["a" /* StatusBar */],
- __WEBPACK_IMPORTED_MODULE_8__ionic_native_splash_screen__["a" /* SplashScreen */],
- { provide: __WEBPACK_IMPORTED_MODULE_4__angular_core__["u" /* ErrorHandler */], useClass: __WEBPACK_IMPORTED_MODULE_5_ionic_angular__["b" /* IonicErrorHandler */] }
- ]
- })
- ], AppModule);
- return AppModule;
- }());
-
- //# sourceMappingURL=app.module.js.map
-
- /***/ }),
-
- /***/ 265:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return TradePage; });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_ionic_angular__ = __webpack_require__(18);
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- var __metadata = (this && this.__metadata) || function (k, v) {
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
- };
-
-
- /**
- * Generated class for the TradePage page.
- *
- * See https://ionicframework.com/docs/components/#navigation for more info on
- * Ionic pages and navigation.
- */
- var TradePage = /** @class */ (function () {
- function TradePage(navCtrl, navParams) {
- this.navCtrl = navCtrl;
- this.navParams = navParams;
- }
- TradePage.prototype.ionViewDidLoad = function () {
- console.log('ionViewDidLoad TradePage');
- };
- TradePage = __decorate([
- Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["m" /* Component */])({
- selector: 'page-trade',template:/*ion-inline-start:"/Users/vincents/PassionApp/src/pages/trade/trade.html"*/'<!--\n Generated template for the TradePage page.\n\n See http://ionicframework.com/docs/components/#navigation for more info on\n Ionic pages and navigation.\n-->\n<ion-header>\n\n <ion-navbar>\n <ion-title text-center>Trade</ion-title>\n </ion-navbar>\n\n</ion-header>\n\n\n<ion-content padding>\n\n</ion-content>\n'/*ion-inline-end:"/Users/vincents/PassionApp/src/pages/trade/trade.html"*/,
- }),
- __metadata("design:paramtypes", [__WEBPACK_IMPORTED_MODULE_1_ionic_angular__["e" /* NavController */], __WEBPACK_IMPORTED_MODULE_1_ionic_angular__["f" /* NavParams */]])
- ], TradePage);
- return TradePage;
- }());
-
- //# sourceMappingURL=trade.js.map
-
- /***/ }),
-
- /***/ 266:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return MyApp; });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_ionic_angular__ = __webpack_require__(18);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__ionic_native_status_bar__ = __webpack_require__(192);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__ionic_native_splash_screen__ = __webpack_require__(195);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__pages_overview_overview__ = __webpack_require__(196);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__pages_statistics_statistics__ = __webpack_require__(99);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__pages_strategies_strategies__ = __webpack_require__(197);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__pages_accounts_accounts__ = __webpack_require__(110);
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- var __metadata = (this && this.__metadata) || function (k, v) {
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
- };
-
-
-
-
-
-
-
-
- var MyApp = /** @class */ (function () {
- function MyApp(platform, statusBar, splashScreen) {
- this.platform = platform;
- this.statusBar = statusBar;
- this.splashScreen = splashScreen;
- this.rootPage = __WEBPACK_IMPORTED_MODULE_4__pages_overview_overview__["a" /* OverviewPage */];
- this.initializeApp();
- // used for an example of ngFor and navigation
- }
- MyApp.prototype.initializeApp = function () {
- var _this = this;
- this.platform.ready().then(function () {
- // Okay, so the platform is ready and our plugins are available.
- // Here you can do any higher level native things you might need.
- _this.statusBar.styleDefault();
- _this.splashScreen.hide();
- });
- };
- MyApp.prototype.openPage = function (page) {
- // Reset the content nav to have just this page
- // we wouldn't want the back button to show in this scenario
- this.nav.setRoot(page.component);
- };
- MyApp.prototype.goStatistics = function () {
- this.nav.push(__WEBPACK_IMPORTED_MODULE_5__pages_statistics_statistics__["a" /* StatisticsPage */]);
- };
- MyApp.prototype.goToStrategies = function () {
- this.nav.push(__WEBPACK_IMPORTED_MODULE_6__pages_strategies_strategies__["a" /* StrategiesPage */]);
- };
- MyApp.prototype.goToAccounts = function () {
- this.nav.push(__WEBPACK_IMPORTED_MODULE_7__pages_accounts_accounts__["a" /* AccountsPage */]);
- };
- __decorate([
- Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["_8" /* ViewChild */])(__WEBPACK_IMPORTED_MODULE_1_ionic_angular__["d" /* Nav */]),
- __metadata("design:type", __WEBPACK_IMPORTED_MODULE_1_ionic_angular__["d" /* Nav */])
- ], MyApp.prototype, "nav", void 0);
- MyApp = __decorate([
- Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["m" /* Component */])({template:/*ion-inline-start:"/Users/vincents/PassionApp/src/app/app.html"*/'<ion-menu [content]="content">\n <ion-header>\n <ion-toolbar color = "secondary">\n <ion-title text-center>PP 1.0</ion-title>\n </ion-toolbar>\n </ion-header>\n\n <ion-content>\n <ion-list>\n <ion-list-header>Navigate</ion-list-header>\n <button menuClose ion-item (click)="goToAccounts()">Accounts</button>\n <button menuClose ion-item (click)="goToStrategies()">Strategies</button>\n <button menuClose ion-item (click)="goStatistics()">Statistics</button>\n\n\n</ion-list>\n </ion-content>\n</ion-menu>\n<ion-nav [root]="rootPage" #content swipeBackEnabled="false"></ion-nav>'/*ion-inline-end:"/Users/vincents/PassionApp/src/app/app.html"*/
- }),
- __metadata("design:paramtypes", [__WEBPACK_IMPORTED_MODULE_1_ionic_angular__["g" /* Platform */], __WEBPACK_IMPORTED_MODULE_2__ionic_native_status_bar__["a" /* StatusBar */], __WEBPACK_IMPORTED_MODULE_3__ionic_native_splash_screen__["a" /* SplashScreen */]])
- ], MyApp);
- return MyApp;
- }());
-
- //# sourceMappingURL=app.component.js.map
-
- /***/ }),
-
- /***/ 99:
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return StatisticsPage; });
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0);
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_ionic_angular__ = __webpack_require__(18);
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- var __metadata = (this && this.__metadata) || function (k, v) {
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
- };
-
-
- var StatisticsPage = /** @class */ (function () {
- function StatisticsPage(navCtrl, navParams) {
- this.navCtrl = navCtrl;
- this.navParams = navParams;
- }
- StatisticsPage.prototype.ionViewDidLoad = function () {
- console.log('ionViewDidLoad StatisticsPage');
- };
- StatisticsPage = __decorate([
- Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["m" /* Component */])({
- selector: 'page-statistics',template:/*ion-inline-start:"/Users/vincents/PassionApp/src/pages/statistics/statistics.html"*/'\n<ion-header>\n\n <ion-navbar color = "secondary">\n <ion-title text-center>Statistics</ion-title>\n </ion-navbar>\n\n</ion-header>\n\n\n<ion-content padding>\n\n</ion-content>\n'/*ion-inline-end:"/Users/vincents/PassionApp/src/pages/statistics/statistics.html"*/,
- }),
- __metadata("design:paramtypes", [__WEBPACK_IMPORTED_MODULE_1_ionic_angular__["e" /* NavController */], __WEBPACK_IMPORTED_MODULE_1_ionic_angular__["f" /* NavParams */]])
- ], StatisticsPage);
- return StatisticsPage;
- }());
-
- //# sourceMappingURL=statistics.js.map
-
- /***/ })
-
- },[199]);
- //# sourceMappingURL=main.js.map
|