Browse Source

addedVitamin2

jpsp91 6 years ago
parent
commit
38841472b1
83 changed files with 7319 additions and 0 deletions
  1. 17
    0
      Vitamin/.editorconfig
  2. 35
    0
      Vitamin/.gitignore
  3. 84
    0
      Vitamin/config.xml
  4. 8
    0
      Vitamin/ionic.config.json
  5. 6500
    0
      Vitamin/package-lock.json
  6. 38
    0
      Vitamin/package.json
  7. 8
    0
      Vitamin/resources/README.md
  8. BIN
      Vitamin/resources/android/icon/drawable-hdpi-icon.png
  9. BIN
      Vitamin/resources/android/icon/drawable-ldpi-icon.png
  10. BIN
      Vitamin/resources/android/icon/drawable-mdpi-icon.png
  11. BIN
      Vitamin/resources/android/icon/drawable-xhdpi-icon.png
  12. BIN
      Vitamin/resources/android/icon/drawable-xxhdpi-icon.png
  13. BIN
      Vitamin/resources/android/icon/drawable-xxxhdpi-icon.png
  14. BIN
      Vitamin/resources/android/splash/drawable-land-hdpi-screen.png
  15. BIN
      Vitamin/resources/android/splash/drawable-land-ldpi-screen.png
  16. BIN
      Vitamin/resources/android/splash/drawable-land-mdpi-screen.png
  17. BIN
      Vitamin/resources/android/splash/drawable-land-xhdpi-screen.png
  18. BIN
      Vitamin/resources/android/splash/drawable-land-xxhdpi-screen.png
  19. BIN
      Vitamin/resources/android/splash/drawable-land-xxxhdpi-screen.png
  20. BIN
      Vitamin/resources/android/splash/drawable-port-hdpi-screen.png
  21. BIN
      Vitamin/resources/android/splash/drawable-port-ldpi-screen.png
  22. BIN
      Vitamin/resources/android/splash/drawable-port-mdpi-screen.png
  23. BIN
      Vitamin/resources/android/splash/drawable-port-xhdpi-screen.png
  24. BIN
      Vitamin/resources/android/splash/drawable-port-xxhdpi-screen.png
  25. BIN
      Vitamin/resources/android/splash/drawable-port-xxxhdpi-screen.png
  26. BIN
      Vitamin/resources/icon.png
  27. BIN
      Vitamin/resources/ios/icon/icon-1024.png
  28. BIN
      Vitamin/resources/ios/icon/icon-40.png
  29. BIN
      Vitamin/resources/ios/icon/icon-40@2x.png
  30. BIN
      Vitamin/resources/ios/icon/icon-40@3x.png
  31. BIN
      Vitamin/resources/ios/icon/icon-50.png
  32. BIN
      Vitamin/resources/ios/icon/icon-50@2x.png
  33. BIN
      Vitamin/resources/ios/icon/icon-60.png
  34. BIN
      Vitamin/resources/ios/icon/icon-60@2x.png
  35. BIN
      Vitamin/resources/ios/icon/icon-60@3x.png
  36. BIN
      Vitamin/resources/ios/icon/icon-72.png
  37. BIN
      Vitamin/resources/ios/icon/icon-72@2x.png
  38. BIN
      Vitamin/resources/ios/icon/icon-76.png
  39. BIN
      Vitamin/resources/ios/icon/icon-76@2x.png
  40. BIN
      Vitamin/resources/ios/icon/icon-83.5@2x.png
  41. BIN
      Vitamin/resources/ios/icon/icon-small.png
  42. BIN
      Vitamin/resources/ios/icon/icon-small@2x.png
  43. BIN
      Vitamin/resources/ios/icon/icon-small@3x.png
  44. BIN
      Vitamin/resources/ios/icon/icon.png
  45. BIN
      Vitamin/resources/ios/icon/icon@2x.png
  46. BIN
      Vitamin/resources/ios/splash/Default-568h@2x~iphone.png
  47. BIN
      Vitamin/resources/ios/splash/Default-667h.png
  48. BIN
      Vitamin/resources/ios/splash/Default-736h.png
  49. BIN
      Vitamin/resources/ios/splash/Default-Landscape-736h.png
  50. BIN
      Vitamin/resources/ios/splash/Default-Landscape@2x~ipad.png
  51. BIN
      Vitamin/resources/ios/splash/Default-Landscape@~ipadpro.png
  52. BIN
      Vitamin/resources/ios/splash/Default-Landscape~ipad.png
  53. BIN
      Vitamin/resources/ios/splash/Default-Portrait@2x~ipad.png
  54. BIN
      Vitamin/resources/ios/splash/Default-Portrait@~ipadpro.png
  55. BIN
      Vitamin/resources/ios/splash/Default-Portrait~ipad.png
  56. BIN
      Vitamin/resources/ios/splash/Default@2x~iphone.png
  57. BIN
      Vitamin/resources/ios/splash/Default@2x~universal~anyany.png
  58. BIN
      Vitamin/resources/ios/splash/Default~iphone.png
  59. BIN
      Vitamin/resources/splash.png
  60. 42
    0
      Vitamin/src/app/app.component.ts
  61. 19
    0
      Vitamin/src/app/app.html
  62. 38
    0
      Vitamin/src/app/app.module.ts
  63. 16
    0
      Vitamin/src/app/app.scss
  64. 5
    0
      Vitamin/src/app/main.ts
  65. BIN
      Vitamin/src/assets/icon/favicon.ico
  66. BIN
      Vitamin/src/assets/imgs/logo.png
  67. 49
    0
      Vitamin/src/index.html
  68. 13
    0
      Vitamin/src/manifest.json
  69. 18
    0
      Vitamin/src/pages/common-vitamins/common-vitamins.html
  70. 13
    0
      Vitamin/src/pages/common-vitamins/common-vitamins.module.ts
  71. 3
    0
      Vitamin/src/pages/common-vitamins/common-vitamins.scss
  72. 25
    0
      Vitamin/src/pages/common-vitamins/common-vitamins.ts
  73. 64
    0
      Vitamin/src/pages/home/home.html
  74. 22
    0
      Vitamin/src/pages/home/home.scss
  75. 29
    0
      Vitamin/src/pages/home/home.ts
  76. 48
    0
      Vitamin/src/pages/register/register.html
  77. 13
    0
      Vitamin/src/pages/register/register.module.ts
  78. 26
    0
      Vitamin/src/pages/register/register.scss
  79. 28
    0
      Vitamin/src/pages/register/register.ts
  80. 31
    0
      Vitamin/src/service-worker.js
  81. 88
    0
      Vitamin/src/theme/variables.scss
  82. 28
    0
      Vitamin/tsconfig.json
  83. 11
    0
      Vitamin/tslint.json

+ 17
- 0
Vitamin/.editorconfig View File

1
+# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
2
+# editorconfig.org
3
+
4
+root = true
5
+
6
+[*]
7
+indent_style = space
8
+indent_size = 2
9
+
10
+# We recommend you to keep these unchanged
11
+end_of_line = lf
12
+charset = utf-8
13
+trim_trailing_whitespace = true
14
+insert_final_newline = true
15
+
16
+[*.md]
17
+trim_trailing_whitespace = false

+ 35
- 0
Vitamin/.gitignore View File

1
+# Specifies intentionally untracked files to ignore when using Git
2
+# http://git-scm.com/docs/gitignore
3
+
4
+*~
5
+*.sw[mnpcod]
6
+*.log
7
+*.tmp
8
+*.tmp.*
9
+log.txt
10
+*.sublime-project
11
+*.sublime-workspace
12
+.vscode/
13
+npm-debug.log*
14
+
15
+.idea/
16
+.ionic/
17
+.sourcemaps/
18
+.sass-cache/
19
+.tmp/
20
+.versions/
21
+coverage/
22
+dist/
23
+node_modules/
24
+tmp/
25
+temp/
26
+platforms/
27
+plugins/
28
+plugins/android.json
29
+plugins/ios.json
30
+www/
31
+$RECYCLE.BIN/
32
+
33
+.DS_Store
34
+Thumbs.db
35
+UserInterfaceState.xcuserstate

+ 84
- 0
Vitamin/config.xml View File

1
+<?xml version='1.0' encoding='utf-8'?>
2
+<widget id="io.ionic.starter" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
3
+    <name>Vitamin</name>
4
+    <description>An awesome Ionic/Cordova app.</description>
5
+    <author email="hi@ionicframework" href="http://ionicframework.com/">Ionic Framework Team</author>
6
+    <content src="index.html" />
7
+    <access origin="*" />
8
+    <allow-intent href="http://*/*" />
9
+    <allow-intent href="https://*/*" />
10
+    <allow-intent href="tel:*" />
11
+    <allow-intent href="sms:*" />
12
+    <allow-intent href="mailto:*" />
13
+    <allow-intent href="geo:*" />
14
+    <preference name="ScrollEnabled" value="false" />
15
+    <preference name="android-minSdkVersion" value="19" />
16
+    <preference name="BackupWebStorage" value="none" />
17
+    <preference name="SplashMaintainAspectRatio" value="true" />
18
+    <preference name="FadeSplashScreenDuration" value="300" />
19
+    <preference name="SplashShowOnlyFirstTime" value="false" />
20
+    <preference name="SplashScreen" value="screen" />
21
+    <preference name="SplashScreenDelay" value="3000" />
22
+    <platform name="android">
23
+        <allow-intent href="market:*" />
24
+        <icon density="ldpi" src="resources/android/icon/drawable-ldpi-icon.png" />
25
+        <icon density="mdpi" src="resources/android/icon/drawable-mdpi-icon.png" />
26
+        <icon density="hdpi" src="resources/android/icon/drawable-hdpi-icon.png" />
27
+        <icon density="xhdpi" src="resources/android/icon/drawable-xhdpi-icon.png" />
28
+        <icon density="xxhdpi" src="resources/android/icon/drawable-xxhdpi-icon.png" />
29
+        <icon density="xxxhdpi" src="resources/android/icon/drawable-xxxhdpi-icon.png" />
30
+        <splash density="land-ldpi" src="resources/android/splash/drawable-land-ldpi-screen.png" />
31
+        <splash density="land-mdpi" src="resources/android/splash/drawable-land-mdpi-screen.png" />
32
+        <splash density="land-hdpi" src="resources/android/splash/drawable-land-hdpi-screen.png" />
33
+        <splash density="land-xhdpi" src="resources/android/splash/drawable-land-xhdpi-screen.png" />
34
+        <splash density="land-xxhdpi" src="resources/android/splash/drawable-land-xxhdpi-screen.png" />
35
+        <splash density="land-xxxhdpi" src="resources/android/splash/drawable-land-xxxhdpi-screen.png" />
36
+        <splash density="port-ldpi" src="resources/android/splash/drawable-port-ldpi-screen.png" />
37
+        <splash density="port-mdpi" src="resources/android/splash/drawable-port-mdpi-screen.png" />
38
+        <splash density="port-hdpi" src="resources/android/splash/drawable-port-hdpi-screen.png" />
39
+        <splash density="port-xhdpi" src="resources/android/splash/drawable-port-xhdpi-screen.png" />
40
+        <splash density="port-xxhdpi" src="resources/android/splash/drawable-port-xxhdpi-screen.png" />
41
+        <splash density="port-xxxhdpi" src="resources/android/splash/drawable-port-xxxhdpi-screen.png" />
42
+    </platform>
43
+    <platform name="ios">
44
+        <allow-intent href="itms:*" />
45
+        <allow-intent href="itms-apps:*" />
46
+        <icon height="57" src="resources/ios/icon/icon.png" width="57" />
47
+        <icon height="114" src="resources/ios/icon/icon@2x.png" width="114" />
48
+        <icon height="40" src="resources/ios/icon/icon-40.png" width="40" />
49
+        <icon height="80" src="resources/ios/icon/icon-40@2x.png" width="80" />
50
+        <icon height="120" src="resources/ios/icon/icon-40@3x.png" width="120" />
51
+        <icon height="50" src="resources/ios/icon/icon-50.png" width="50" />
52
+        <icon height="100" src="resources/ios/icon/icon-50@2x.png" width="100" />
53
+        <icon height="60" src="resources/ios/icon/icon-60.png" width="60" />
54
+        <icon height="120" src="resources/ios/icon/icon-60@2x.png" width="120" />
55
+        <icon height="180" src="resources/ios/icon/icon-60@3x.png" width="180" />
56
+        <icon height="72" src="resources/ios/icon/icon-72.png" width="72" />
57
+        <icon height="144" src="resources/ios/icon/icon-72@2x.png" width="144" />
58
+        <icon height="76" src="resources/ios/icon/icon-76.png" width="76" />
59
+        <icon height="152" src="resources/ios/icon/icon-76@2x.png" width="152" />
60
+        <icon height="167" src="resources/ios/icon/icon-83.5@2x.png" width="167" />
61
+        <icon height="29" src="resources/ios/icon/icon-small.png" width="29" />
62
+        <icon height="58" src="resources/ios/icon/icon-small@2x.png" width="58" />
63
+        <icon height="87" src="resources/ios/icon/icon-small@3x.png" width="87" />
64
+        <icon height="1024" src="resources/ios/icon/icon-1024.png" width="1024" />
65
+        <splash height="1136" src="resources/ios/splash/Default-568h@2x~iphone.png" width="640" />
66
+        <splash height="1334" src="resources/ios/splash/Default-667h.png" width="750" />
67
+        <splash height="2208" src="resources/ios/splash/Default-736h.png" width="1242" />
68
+        <splash height="1242" src="resources/ios/splash/Default-Landscape-736h.png" width="2208" />
69
+        <splash height="1536" src="resources/ios/splash/Default-Landscape@2x~ipad.png" width="2048" />
70
+        <splash height="2048" src="resources/ios/splash/Default-Landscape@~ipadpro.png" width="2732" />
71
+        <splash height="768" src="resources/ios/splash/Default-Landscape~ipad.png" width="1024" />
72
+        <splash height="2048" src="resources/ios/splash/Default-Portrait@2x~ipad.png" width="1536" />
73
+        <splash height="2732" src="resources/ios/splash/Default-Portrait@~ipadpro.png" width="2048" />
74
+        <splash height="1024" src="resources/ios/splash/Default-Portrait~ipad.png" width="768" />
75
+        <splash height="960" src="resources/ios/splash/Default@2x~iphone.png" width="640" />
76
+        <splash height="480" src="resources/ios/splash/Default~iphone.png" width="320" />
77
+        <splash height="2732" src="resources/ios/splash/Default@2x~universal~anyany.png" width="2732" />
78
+    </platform>
79
+    <plugin name="cordova-plugin-whitelist" spec="1.3.3" />
80
+    <plugin name="cordova-plugin-device" spec="2.0.2" />
81
+    <plugin name="cordova-plugin-splashscreen" spec="5.0.2" />
82
+    <plugin name="cordova-plugin-ionic-webview" spec="^2.0.0" />
83
+    <plugin name="cordova-plugin-ionic-keyboard" spec="^2.0.5" />
84
+</widget>

+ 8
- 0
Vitamin/ionic.config.json View File

1
+{
2
+  "name": "Vitamin",
3
+  "app_id": "",
4
+  "type": "ionic-angular",
5
+  "integrations": {
6
+    "cordova": {}
7
+  }
8
+}

+ 6500
- 0
Vitamin/package-lock.json
File diff suppressed because it is too large
View File


+ 38
- 0
Vitamin/package.json View File

1
+{
2
+  "name": "Vitamin",
3
+  "version": "0.0.1",
4
+  "author": "Ionic Framework",
5
+  "homepage": "http://ionicframework.com/",
6
+  "private": true,
7
+  "scripts": {
8
+    "start": "ionic-app-scripts serve",
9
+    "clean": "ionic-app-scripts clean",
10
+    "build": "ionic-app-scripts build",
11
+    "lint": "ionic-app-scripts lint"
12
+  },
13
+  "dependencies": {
14
+    "@angular/animations": "5.2.11",
15
+    "@angular/common": "5.2.11",
16
+    "@angular/compiler": "5.2.11",
17
+    "@angular/compiler-cli": "5.2.11",
18
+    "@angular/core": "5.2.11",
19
+    "@angular/forms": "5.2.11",
20
+    "@angular/http": "5.2.11",
21
+    "@angular/platform-browser": "5.2.11",
22
+    "@angular/platform-browser-dynamic": "5.2.11",
23
+    "@ionic-native/core": "~4.11.0",
24
+    "@ionic-native/splash-screen": "~4.11.0",
25
+    "@ionic-native/status-bar": "~4.11.0",
26
+    "@ionic/storage": "2.1.3",
27
+    "ionic-angular": "3.9.2",
28
+    "ionicons": "3.0.0",
29
+    "rxjs": "5.5.11",
30
+    "sw-toolbox": "3.6.0",
31
+    "zone.js": "0.8.26"
32
+  },
33
+  "devDependencies": {
34
+    "@ionic/app-scripts": "3.1.11",
35
+    "typescript": "~2.6.2"
36
+  },
37
+  "description": "An Ionic project"
38
+}

+ 8
- 0
Vitamin/resources/README.md View File

1
+These are Cordova resources. You can replace icon.png and splash.png and run
2
+`ionic cordova resources` to generate custom icons and splash screens for your
3
+app. See `ionic cordova resources --help` for details.
4
+
5
+Cordova reference documentation:
6
+
7
+- Icons: https://cordova.apache.org/docs/en/latest/config_ref/images.html
8
+- Splash Screens: https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-splashscreen/

BIN
Vitamin/resources/android/icon/drawable-hdpi-icon.png View File


BIN
Vitamin/resources/android/icon/drawable-ldpi-icon.png View File


BIN
Vitamin/resources/android/icon/drawable-mdpi-icon.png View File


BIN
Vitamin/resources/android/icon/drawable-xhdpi-icon.png View File


BIN
Vitamin/resources/android/icon/drawable-xxhdpi-icon.png View File


BIN
Vitamin/resources/android/icon/drawable-xxxhdpi-icon.png View File


BIN
Vitamin/resources/android/splash/drawable-land-hdpi-screen.png View File


BIN
Vitamin/resources/android/splash/drawable-land-ldpi-screen.png View File


BIN
Vitamin/resources/android/splash/drawable-land-mdpi-screen.png View File


BIN
Vitamin/resources/android/splash/drawable-land-xhdpi-screen.png View File


BIN
Vitamin/resources/android/splash/drawable-land-xxhdpi-screen.png View File


BIN
Vitamin/resources/android/splash/drawable-land-xxxhdpi-screen.png View File


BIN
Vitamin/resources/android/splash/drawable-port-hdpi-screen.png View File


BIN
Vitamin/resources/android/splash/drawable-port-ldpi-screen.png View File


BIN
Vitamin/resources/android/splash/drawable-port-mdpi-screen.png View File


BIN
Vitamin/resources/android/splash/drawable-port-xhdpi-screen.png View File


BIN
Vitamin/resources/android/splash/drawable-port-xxhdpi-screen.png View File


BIN
Vitamin/resources/android/splash/drawable-port-xxxhdpi-screen.png View File


BIN
Vitamin/resources/icon.png View File


BIN
Vitamin/resources/ios/icon/icon-1024.png View File


BIN
Vitamin/resources/ios/icon/icon-40.png View File


BIN
Vitamin/resources/ios/icon/icon-40@2x.png View File


BIN
Vitamin/resources/ios/icon/icon-40@3x.png View File


BIN
Vitamin/resources/ios/icon/icon-50.png View File


BIN
Vitamin/resources/ios/icon/icon-50@2x.png View File


BIN
Vitamin/resources/ios/icon/icon-60.png View File


BIN
Vitamin/resources/ios/icon/icon-60@2x.png View File


BIN
Vitamin/resources/ios/icon/icon-60@3x.png View File


BIN
Vitamin/resources/ios/icon/icon-72.png View File


BIN
Vitamin/resources/ios/icon/icon-72@2x.png View File


BIN
Vitamin/resources/ios/icon/icon-76.png View File


BIN
Vitamin/resources/ios/icon/icon-76@2x.png View File


BIN
Vitamin/resources/ios/icon/icon-83.5@2x.png View File


BIN
Vitamin/resources/ios/icon/icon-small.png View File


BIN
Vitamin/resources/ios/icon/icon-small@2x.png View File


BIN
Vitamin/resources/ios/icon/icon-small@3x.png View File


BIN
Vitamin/resources/ios/icon/icon.png View File


BIN
Vitamin/resources/ios/icon/icon@2x.png View File


BIN
Vitamin/resources/ios/splash/Default-568h@2x~iphone.png View File


BIN
Vitamin/resources/ios/splash/Default-667h.png View File


BIN
Vitamin/resources/ios/splash/Default-736h.png View File


BIN
Vitamin/resources/ios/splash/Default-Landscape-736h.png View File


BIN
Vitamin/resources/ios/splash/Default-Landscape@2x~ipad.png View File


BIN
Vitamin/resources/ios/splash/Default-Landscape@~ipadpro.png View File


BIN
Vitamin/resources/ios/splash/Default-Landscape~ipad.png View File


BIN
Vitamin/resources/ios/splash/Default-Portrait@2x~ipad.png View File


BIN
Vitamin/resources/ios/splash/Default-Portrait@~ipadpro.png View File


BIN
Vitamin/resources/ios/splash/Default-Portrait~ipad.png View File


BIN
Vitamin/resources/ios/splash/Default@2x~iphone.png View File


BIN
Vitamin/resources/ios/splash/Default@2x~universal~anyany.png View File


BIN
Vitamin/resources/ios/splash/Default~iphone.png View File


BIN
Vitamin/resources/splash.png View File


+ 42
- 0
Vitamin/src/app/app.component.ts View File

1
+import { Component, ViewChild } from '@angular/core';
2
+import { Nav, Platform } from 'ionic-angular';
3
+import { StatusBar } from '@ionic-native/status-bar';
4
+import { SplashScreen } from '@ionic-native/splash-screen';
5
+
6
+import { HomePage } from '../pages/home/home';
7
+
8
+@Component({
9
+  templateUrl: 'app.html'
10
+})
11
+export class MyApp {
12
+  @ViewChild(Nav) nav: Nav;
13
+
14
+  rootPage: any = HomePage;
15
+
16
+  pages: Array<{title: string, component: any}>;
17
+
18
+  constructor(public platform: Platform, public statusBar: StatusBar, public splashScreen: SplashScreen) {
19
+    this.initializeApp();
20
+
21
+    // used for an example of ngFor and navigation
22
+    this.pages = [
23
+      { title: 'Home', component: HomePage },
24
+    ];
25
+
26
+  }
27
+
28
+  initializeApp() {
29
+    this.platform.ready().then(() => {
30
+      // Okay, so the platform is ready and our plugins are available.
31
+      // Here you can do any higher level native things you might need.
32
+      this.statusBar.styleDefault();
33
+      this.splashScreen.hide();
34
+    });
35
+  }
36
+
37
+  openPage(page) {
38
+    // Reset the content nav to have just this page
39
+    // we wouldn't want the back button to show in this scenario
40
+    this.nav.setRoot(page.component);
41
+  }
42
+}

+ 19
- 0
Vitamin/src/app/app.html View File

1
+<ion-menu [content]="content">
2
+  <ion-header>
3
+    <ion-toolbar>
4
+      <ion-title>Menu</ion-title>
5
+    </ion-toolbar>
6
+  </ion-header>
7
+
8
+  <ion-content>
9
+    <ion-list>
10
+      <button menuClose ion-item *ngFor="let p of pages" (click)="openPage(p)">
11
+        {{p.title}}
12
+      </button>
13
+    </ion-list>
14
+  </ion-content>
15
+
16
+</ion-menu>
17
+
18
+<!-- Disable swipe-to-go-back because it's poor UX to combine STGB with side menus -->
19
+<ion-nav [root]="rootPage" #content swipeBackEnabled="false"></ion-nav>

+ 38
- 0
Vitamin/src/app/app.module.ts View File

1
+import { BrowserModule } from '@angular/platform-browser';
2
+import { ErrorHandler, NgModule } from '@angular/core';
3
+import { IonicApp, IonicErrorHandler, IonicModule } from 'ionic-angular';
4
+import { StatusBar } from '@ionic-native/status-bar';
5
+import { SplashScreen } from '@ionic-native/splash-screen';
6
+
7
+import { MyApp } from './app.component';
8
+import { HomePage } from '../pages/home/home';
9
+import { CommonVitaminsPage } from '../pages/common-vitamins/common-vitamins';
10
+import { RegisterPage } from '../pages/register/register';
11
+
12
+
13
+
14
+@NgModule({
15
+  declarations: [
16
+    MyApp,
17
+    HomePage,
18
+    CommonVitaminsPage,
19
+    RegisterPage
20
+  ],
21
+  imports: [
22
+    BrowserModule,
23
+    IonicModule.forRoot(MyApp),
24
+  ],
25
+  bootstrap: [IonicApp],
26
+  entryComponents: [
27
+    MyApp,
28
+    HomePage,
29
+    CommonVitaminsPage,
30
+    RegisterPage
31
+  ],
32
+  providers: [
33
+    StatusBar,
34
+    SplashScreen,
35
+    {provide: ErrorHandler, useClass: IonicErrorHandler}
36
+  ]
37
+})
38
+export class AppModule {}

+ 16
- 0
Vitamin/src/app/app.scss View File

1
+// http://ionicframework.com/docs/theming/
2
+
3
+
4
+// App Global Sass
5
+// --------------------------------------------------
6
+// Put style rules here that you want to apply globally. These
7
+// styles are for the entire app and not just one component.
8
+// Additionally, this file can be also used as an entry point
9
+// to import other Sass files to be included in the output CSS.
10
+//
11
+// Shared Sass variables, which can be used to adjust Ionic's
12
+// default Sass variables, belong in "theme/variables.scss".
13
+//
14
+// To declare rules for a specific mode, create a child rule
15
+// for the .md, .ios, or .wp mode classes. The mode class is
16
+// automatically applied to the <body> element in the app.

+ 5
- 0
Vitamin/src/app/main.ts View File

1
+import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
2
+
3
+import { AppModule } from './app.module';
4
+
5
+platformBrowserDynamic().bootstrapModule(AppModule);

BIN
Vitamin/src/assets/icon/favicon.ico View File


BIN
Vitamin/src/assets/imgs/logo.png View File


+ 49
- 0
Vitamin/src/index.html View File

1
+<!DOCTYPE html>
2
+<html lang="en" dir="ltr">
3
+<head>
4
+  <meta charset="UTF-8">
5
+  <title>Ionic App</title>
6
+  <meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
7
+  <meta name="format-detection" content="telephone=no">
8
+  <meta name="msapplication-tap-highlight" content="no">
9
+
10
+  <link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico">
11
+  <link rel="manifest" href="manifest.json">
12
+  <meta name="theme-color" content="#4e8ef7">
13
+
14
+  <!-- add to homescreen for ios -->
15
+  <meta name="apple-mobile-web-app-capable" content="yes">
16
+  <meta name="apple-mobile-web-app-status-bar-style" content="black">
17
+
18
+  <!-- cordova.js required for cordova apps (remove if not needed) -->
19
+  <script src="cordova.js"></script>
20
+
21
+  <!-- un-comment this code to enable service worker
22
+  <script>
23
+    if ('serviceWorker' in navigator) {
24
+      navigator.serviceWorker.register('service-worker.js')
25
+        .then(() => console.log('service worker installed'))
26
+        .catch(err => console.error('Error', err));
27
+    }
28
+  </script>-->
29
+
30
+  <link href="build/main.css" rel="stylesheet">
31
+
32
+</head>
33
+<body>
34
+
35
+  <!-- Ionic's root component and where the app will load -->
36
+  <ion-app></ion-app>
37
+
38
+  <!-- The polyfills js is generated during the build process -->
39
+  <script src="build/polyfills.js"></script>
40
+
41
+  <!-- The vendor js is generated during the build process
42
+       It contains all of the dependencies in node_modules -->
43
+  <script src="build/vendor.js"></script>
44
+
45
+  <!-- The main bundle js is generated during the build process -->
46
+  <script src="build/main.js"></script>
47
+
48
+</body>
49
+</html>

+ 13
- 0
Vitamin/src/manifest.json View File

1
+{
2
+  "name": "Ionic",
3
+  "short_name": "Ionic",
4
+  "start_url": "index.html",
5
+  "display": "standalone",
6
+  "icons": [{
7
+    "src": "assets/imgs/logo.png",
8
+    "sizes": "512x512",
9
+    "type": "image/png"
10
+  }],
11
+  "background_color": "#4e8ef7",
12
+  "theme_color": "#4e8ef7"
13
+}

+ 18
- 0
Vitamin/src/pages/common-vitamins/common-vitamins.html View File

1
+<!--
2
+  Generated template for the CommonVitaminsPage page.
3
+
4
+  See http://ionicframework.com/docs/components/#navigation for more info on
5
+  Ionic pages and navigation.
6
+-->
7
+<ion-header>
8
+
9
+  <ion-navbar>
10
+    <ion-title>commonVitamins</ion-title>
11
+  </ion-navbar>
12
+
13
+</ion-header>
14
+
15
+
16
+<ion-content padding>
17
+
18
+</ion-content>

+ 13
- 0
Vitamin/src/pages/common-vitamins/common-vitamins.module.ts View File

1
+import { NgModule } from '@angular/core';
2
+import { IonicPageModule } from 'ionic-angular';
3
+import { CommonVitaminsPage } from './common-vitamins';
4
+
5
+@NgModule({
6
+  declarations: [
7
+    CommonVitaminsPage,
8
+  ],
9
+  imports: [
10
+    IonicPageModule.forChild(CommonVitaminsPage),
11
+  ],
12
+})
13
+export class CommonVitaminsPageModule {}

+ 3
- 0
Vitamin/src/pages/common-vitamins/common-vitamins.scss View File

1
+page-common-vitamins {
2
+
3
+}

+ 25
- 0
Vitamin/src/pages/common-vitamins/common-vitamins.ts View File

1
+import { Component } from '@angular/core';
2
+import { IonicPage, NavController, NavParams } from 'ionic-angular';
3
+
4
+/**
5
+ * Generated class for the CommonVitaminsPage page.
6
+ *
7
+ * See https://ionicframework.com/docs/components/#navigation for more info on
8
+ * Ionic pages and navigation.
9
+ */
10
+
11
+@IonicPage()
12
+@Component({
13
+  selector: 'page-common-vitamins',
14
+  templateUrl: 'common-vitamins.html',
15
+})
16
+export class CommonVitaminsPage {
17
+
18
+  constructor(public navCtrl: NavController, public navParams: NavParams) {
19
+  }
20
+
21
+  ionViewDidLoad() {
22
+    console.log('ionViewDidLoad CommonVitaminsPage');
23
+  }
24
+
25
+}

+ 64
- 0
Vitamin/src/pages/home/home.html View File

1
+<ion-header>
2
+  <ion-navbar>
3
+    <ion-title>Home</ion-title>
4
+  </ion-navbar>
5
+</ion-header>
6
+
7
+<ion-content text-center class = "login">
8
+  
9
+  <br><br><br><br><br>
10
+  <img src="../assets/imgs/vita-alarm_logo_final.jpg" width="" height="" /><p>
11
+  <br><br>
12
+  
13
+  <ion-list>
14
+    <ion-item text-center>
15
+      <ion-label fixed>Username</ion-label>
16
+
17
+
18
+      <!-- This will connect my loging info -->
19
+      <!-- <ion-input type="text" formControlName="username"></ion-input> -->
20
+      
21
+      
22
+      <ion-input type="text"></ion-input>
23
+  </ion-item>
24
+
25
+
26
+  <ion-item text-center>
27
+    <ion-label fixed>Password</ion-label>
28
+
29
+
30
+    <!-- This will connect my loging info -->
31
+    <!-- <ion-input type="password" formControlName="password"></ion-input> -->
32
+
33
+
34
+    <ion-input type="password"></ion-input>
35
+  </ion-item>
36
+
37
+
38
+
39
+
40
+  <!-- These will remind users to enter login info
41
+
42
+  <ion-item text-center *ngIf="username.hasError('required') && username.touched">
43
+    <p> *Please enter your username</p>
44
+  </ion-item>
45
+
46
+  <ion-item text-center *ngIf="password.hasError('required') && password.touched">
47
+    <p> *Please enter your password</p>
48
+  </ion-item> -->
49
+
50
+
51
+
52
+  </ion-list>
53
+
54
+
55
+
56
+  <button ion-button color="danger" round type="submit">Login</button>
57
+  <br>
58
+
59
+  <button ion-button color="danger" (click)="registerPage()" round>Sign Up</button>
60
+
61
+
62
+<!-- Side menu
63
+  <button ion-button secondary menuToggle>Toggle Menu</button> -->
64
+</ion-content>

+ 22
- 0
Vitamin/src/pages/home/home.scss View File

1
+page-home {
2
+
3
+
4
+
5
+    .login {
6
+        background: url("../assets/imgs/background.jpg");
7
+        background-repeat: no-repeat;
8
+        background-position: center;
9
+        background-size: cover;
10
+    }
11
+
12
+
13
+
14
+
15
+
16
+
17
+    .scroll-content {
18
+        overflow: hidden;
19
+    }
20
+
21
+
22
+}

+ 29
- 0
Vitamin/src/pages/home/home.ts View File

1
+import { Component } from '@angular/core';
2
+import { NavController } from 'ionic-angular';
3
+import { RegisterPage } from '../register/register';
4
+
5
+@Component({
6
+  selector: 'page-home',
7
+  templateUrl: 'home.html'
8
+})
9
+export class HomePage {
10
+
11
+  constructor(public navCtrl: NavController) {
12
+
13
+  }
14
+
15
+
16
+
17
+
18
+
19
+
20
+  registerPage() {
21
+    this.navCtrl.push(RegisterPage);
22
+    
23
+  }
24
+
25
+
26
+
27
+}
28
+
29
+

+ 48
- 0
Vitamin/src/pages/register/register.html View File

1
+
2
+<ion-header>
3
+
4
+  <ion-navbar>
5
+    <ion-title>Register</ion-title>
6
+  </ion-navbar>
7
+
8
+</ion-header>
9
+
10
+
11
+<ion-content text-center class="register">
12
+
13
+    <br><br><br><br><br>
14
+
15
+  <ion-list>
16
+    
17
+    <ion-item>
18
+      <ion-label fixed>First Name</ion-label>
19
+      <ion-input type="text"></ion-input>
20
+    </ion-item>
21
+
22
+    <ion-item>
23
+      <ion-label fixed>Last Name</ion-label>
24
+      <ion-input type="text"></ion-input>
25
+    </ion-item>
26
+
27
+    <ion-item>
28
+        <ion-label fixed>Email</ion-label>
29
+        <ion-input type="text"></ion-input>
30
+    </ion-item>
31
+
32
+    <ion-item>
33
+          <ion-label fixed>Username</ion-label>
34
+          <ion-input type="text"></ion-input>
35
+    </ion-item>
36
+
37
+    <ion-item>
38
+      <ion-label fixed>Password</ion-label>
39
+      <ion-input type="text"></ion-input>
40
+    </ion-item>
41
+    
42
+
43
+
44
+  </ion-list>
45
+  <button ion-button color="danger" round (click)="register()">Confirm</button>
46
+  <br>
47
+  <button ion-button color="danger" round (click)="cancel()">Cancel</button>
48
+</ion-content>

+ 13
- 0
Vitamin/src/pages/register/register.module.ts View File

1
+import { NgModule } from '@angular/core';
2
+import { IonicPageModule } from 'ionic-angular';
3
+import { RegisterPage } from './register';
4
+
5
+@NgModule({
6
+  declarations: [
7
+    RegisterPage,
8
+  ],
9
+  imports: [
10
+    IonicPageModule.forChild(RegisterPage),
11
+  ],
12
+})
13
+export class RegisterPageModule {}

+ 26
- 0
Vitamin/src/pages/register/register.scss View File

1
+page-register {
2
+
3
+
4
+
5
+
6
+    .register {
7
+        background: url("../assets/imgs/background.jpg");
8
+        background-repeat: no-repeat;
9
+        background-position: center;
10
+        background-size: cover;
11
+    }
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+//this removes the scroll bar on the side
22
+.scroll-content {
23
+    overflow: hidden;
24
+}
25
+
26
+}

+ 28
- 0
Vitamin/src/pages/register/register.ts View File

1
+import { Component } from '@angular/core';
2
+import { IonicPage, NavController, NavParams } from 'ionic-angular';
3
+
4
+
5
+@IonicPage()
6
+@Component({
7
+  selector: 'page-register',
8
+  templateUrl: 'register.html',
9
+})
10
+export class RegisterPage {
11
+
12
+  constructor(public navCtrl: NavController, public navParams: NavParams) {
13
+  }
14
+
15
+  ionViewDidLoad() {
16
+    console.log('ionViewDidLoad RegisterPage');
17
+  }
18
+
19
+
20
+  cancel() {
21
+    this.navCtrl.popToRoot();
22
+  }
23
+
24
+  register() {
25
+    this.navCtrl.popToRoot();
26
+  }
27
+
28
+}

+ 31
- 0
Vitamin/src/service-worker.js View File

1
+/**
2
+ * Check out https://googlechromelabs.github.io/sw-toolbox/ for
3
+ * more info on how to use sw-toolbox to custom configure your service worker.
4
+ */
5
+
6
+
7
+'use strict';
8
+importScripts('./build/sw-toolbox.js');
9
+
10
+self.toolbox.options.cache = {
11
+  name: 'ionic-cache'
12
+};
13
+
14
+// pre-cache our key assets
15
+self.toolbox.precache(
16
+  [
17
+    './build/main.js',
18
+    './build/vendor.js',
19
+    './build/main.css',
20
+    './build/polyfills.js',
21
+    'index.html',
22
+    'manifest.json'
23
+  ]
24
+);
25
+
26
+// dynamically cache any other local assets
27
+self.toolbox.router.any('/*', self.toolbox.fastest);
28
+
29
+// for any other requests go to the network, cache,
30
+// and then only use that cached resource if your user goes offline
31
+self.toolbox.router.default = self.toolbox.networkFirst;

+ 88
- 0
Vitamin/src/theme/variables.scss View File

1
+// Ionic Variables and Theming. For more info, please see:
2
+// http://ionicframework.com/docs/theming/
3
+
4
+// Font path is used to include ionicons,
5
+// roboto, and noto sans fonts
6
+$font-path: "../assets/fonts";
7
+
8
+
9
+// The app direction is used to include
10
+// rtl styles in your app. For more info, please see:
11
+// http://ionicframework.com/docs/theming/rtl-support/
12
+$app-direction: ltr;
13
+
14
+
15
+@import "ionic.globals";
16
+
17
+
18
+// Shared Variables
19
+// --------------------------------------------------
20
+// To customize the look and feel of this app, you can override
21
+// the Sass variables found in Ionic's source scss files.
22
+// To view all the possible Ionic variables, see:
23
+// http://ionicframework.com/docs/theming/overriding-ionic-variables/
24
+
25
+
26
+
27
+
28
+// Named Color Variables
29
+// --------------------------------------------------
30
+// Named colors makes it easy to reuse colors on various components.
31
+// It's highly recommended to change the default colors
32
+// to match your app's branding. Ionic uses a Sass map of
33
+// colors so you can add, rename and remove colors as needed.
34
+// The "primary" color is the only required color in the map.
35
+
36
+$colors: (
37
+  primary:    #488aff,
38
+  secondary:  #32db64,
39
+  danger:     #f53d3d,
40
+  light:      #f4f4f4,
41
+  dark:       #222
42
+);
43
+
44
+
45
+// App iOS Variables
46
+// --------------------------------------------------
47
+// iOS only Sass variables can go here
48
+
49
+
50
+
51
+
52
+// App Material Design Variables
53
+// --------------------------------------------------
54
+// Material Design only Sass variables can go here
55
+
56
+
57
+
58
+
59
+// App Windows Variables
60
+// --------------------------------------------------
61
+// Windows only Sass variables can go here
62
+
63
+
64
+
65
+
66
+// App Theme
67
+// --------------------------------------------------
68
+// Ionic apps can have different themes applied, which can
69
+// then be future customized. This import comes last
70
+// so that the above variables are used and Ionic's
71
+// default are overridden.
72
+
73
+@import "ionic.theme.default";
74
+
75
+
76
+// Ionicons
77
+// --------------------------------------------------
78
+// The premium icon font for Ionic. For more info, please see:
79
+// http://ionicframework.com/docs/ionicons/
80
+
81
+@import "ionic.ionicons";
82
+
83
+
84
+// Fonts
85
+// --------------------------------------------------
86
+
87
+@import "roboto";
88
+@import "noto-sans";

+ 28
- 0
Vitamin/tsconfig.json View File

1
+{
2
+  "compilerOptions": {
3
+    "allowSyntheticDefaultImports": true,
4
+    "declaration": false,
5
+    "emitDecoratorMetadata": true,
6
+    "experimentalDecorators": true,
7
+    "lib": [
8
+      "dom",
9
+      "es2015"
10
+    ],
11
+    "module": "es2015",
12
+    "moduleResolution": "node",
13
+    "sourceMap": true,
14
+    "target": "es5"
15
+  },
16
+  "include": [
17
+    "src/**/*.ts"
18
+  ],
19
+  "exclude": [
20
+    "node_modules",
21
+    "src/**/*.spec.ts",
22
+    "src/**/__tests__/*.ts"
23
+  ],
24
+  "compileOnSave": false,
25
+  "atom": {
26
+    "rewriteTsconfig": false
27
+  }
28
+}

+ 11
- 0
Vitamin/tslint.json View File

1
+{
2
+  "rules": {
3
+    "no-duplicate-variable": true,
4
+    "no-unused-variable": [
5
+      true
6
+    ]
7
+  },
8
+  "rulesDirectory": [
9
+    "node_modules/tslint-eslint-rules/dist/rules"
10
+  ]
11
+}