import { Component } from '@angular/core';
import { HomePage } from './home.page';

@Component({
  template: `<ion-nav [root]="rootPage"></ion-nav>`
})
export class AppComponent {

  rootPage = HomePage;

}


/*
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
*/
import { NgModule } from '@angular/core';
import { IonicApp, IonicModule } from 'ionic-angular';

import { AppComponent } from './app.component';
import { HomePage } from './home.page';

@NgModule({
  imports: [ IonicModule.forRoot(AppComponent) ],
  declarations: [ AppComponent, HomePage ],
  entryComponents: [ HomePage ],
  bootstrap: [ IonicApp ]
})
export class AppModule { }


/*
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
*/
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { AppModule } from './app.module';

const platform = platformBrowserDynamic();
platform.bootstrapModule(AppModule);


/*
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
*/
<!DOCTYPE html>
<html>
  <head>
    <title>Ionic 2 QuickStart</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- 1. Load libraries -->
     <!-- Polyfill(s) for older browsers -->
    <script src="https://unpkg.com/core-js@2.4.1/client/shim.min.js"></script>

    <script src="https://unpkg.com/zone.js@0.6.21?main=browser"></script>
    <script src="https://unpkg.com/systemjs@0.19.40/dist/system.src.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.1/moment.min.js"></script>

    <!-- 2. Configure SystemJS -->
    <script src="systemjs.config.js"></script>
    <link href="https://unpkg.com/ionic-angular@2.0.0-rc.2/css/ionic.css" rel="stylesheet">
  </head>

  <!-- 3. Display the application -->
  <body>
    <ion-app></ion-app>
    <script>
      System.import('app').catch(function(err){ console.error(err); });
    </script>
  </body>
</html>


<!-- 
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
-->
### Ionic 2 Plunk

Basic Ionic 2 plunk based on the Angular QuickStart plunk.


Ionic 2.0.0-rc.2 - QuickStart Using MomentJS and DateTimePicker to answer a question on the ionic forums

https://forum.ionicframework.com/t/ngmodel-binding-to-a-object-property/74601
/**
 * PLUNKER VERSION
 * (based on systemjs.config.js in angular.io)
 * System configuration for Angular samples
 * Adjust as necessary for your application needs.
 */
(function(global) {
  System.config({
    // DEMO ONLY! REAL CODE SHOULD NOT TRANSPILE IN THE BROWSER
    transpiler: 'ts',
    typescriptOptions: {
      tsconfig: true
    },
    meta: {
      'typescript': {
        "exports": "ts"
      }
    },
    paths: {
      // paths serve as alias
      'npm:': 'https://unpkg.com/'
    },
    // map tells the System loader where to look for things
    map: {
      // our app is within the app folder
      app: 'app',

      // angular bundles
      '@angular/core': 'npm:@angular/core@2.1.1/bundles/core.umd.js',
      '@angular/common': 'npm:@angular/common@2.1.1/bundles/common.umd.js',
      '@angular/compiler': 'npm:@angular/compiler@2.1.1/bundles/compiler.umd.js',
      '@angular/platform-browser': 'npm:@angular/platform-browser@2.1.1/bundles/platform-browser.umd.js',
      '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic@2.1.1/bundles/platform-browser-dynamic.umd.js',
      '@angular/http': 'npm:@angular/http@2.1.1/bundles/http.umd.js',
      '@angular/forms': 'npm:@angular/forms@2.1.1/bundles/forms.umd.js',

      'ionic-angular': 'npm:ionic-angular@2.0.0-rc.2',
      'rxjs': 'npm:rxjs@5.0.0-beta.12',
      'ts': 'npm:plugin-typescript@5.2.7/lib/plugin.js',
      'typescript': 'npm:typescript@2.0.7/lib/typescript.js',
      'moment': 'npm:moment'

    },
    // packages tells the System loader how to load when no filename and/or no extension
    packages: {
      app: {
        main: './main.ts',
        defaultExtension: 'ts'
      },
      rxjs: {
        defaultExtension: 'js'
      },
      'ionic-angular': {
        main: './umd/index.js',
        defaultExtension: 'js'
      },
      'moment': { defaultExtension: 'js' }
    }
  });
})(this);


/*
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
*/
{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": true,
    "suppressImplicitAnyIndexErrors": true
  }
}
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';

import * as moment from 'moment';

@Component({
  selector: 'page-home',
  templateUrl: 'app/home.page.html'
})
export class HomePage {

  appName = 'Ionic App';
  frequenciaDrop

  constructor(private navController: NavController) {
    
  }
  
  alterFrequency(valor) {
    debugger;
      //using moment js
      let currentTimePlusOneHour= moment().add(1, 'h');
      this.timesSet= [];
  
      for (var i = 0; i < valor; i++) {
          if (i == 0) {
              this.timesSet.push({
                  hora: currentTimePlusOneHour.format('YYYY-MM-DDTHH:mm'),
                  qtd: 1
              })
          } else {
              currentTimePlusOneHour.add((24 / valor), 'h');
              this.timesSet.push({
                  hora: currentTimePlusOneHour.format('YYYY-MM-DDTHH:mm'),
                  qtd: 1
              })
          }
      }
  }
}
<ion-header>
  <ion-navbar>
    <ion-title>{{ appName }}</ion-title>
  </ion-navbar>
</ion-header>

<ion-content padding>
  Welcome to this
  <ion-icon name="ionic"></ion-icon> <b>Ionic 2 app</b>.

  <!-- new code -->
  <ion-item style="margin-bottom: 3%">
    <ion-select [(ngModel)]="frequenciaDrop" okText="Ok" cancelText="Cancelar" placeholder="Escolher..." (ionChange)="alterFrequency(frequenciaDrop)">
      <ion-option value="1">1 time a day</ion-option>
      <ion-option value="2">2 times per day</ion-option>
      <ion-option value="3">3 times per day</ion-option>
      <ion-option value="4">4 timer per day</ion-option>
    </ion-select>
  </ion-item>
  <ion-grid>
    <ion-row *ngFor="let t of timesSet, let ind = index">
      <ion-col>
        <ion-item>
          <ion-datetime displayFormat="HH:mm" pickerFormat="HH mm" doneText="Ok" cancelText="Cancelar" [(ngModel)]="timesSet[ind].hora"></ion-datetime>
        </ion-item>
      </ion-col>
      <ion-col>
        <div>
          <input type="number" min="0"  [(ngModel)]="timesSet[ind].qtd" />
        </div>
      </ion-col>
    </ion-row>
  </ion-grid>
      <h5>timesSet Model Object</h5>
  <pre>
  {{ timesSet | json }}
  </pre>
</ion-content>