|
@@ -0,0 +1,49 @@
|
|
|
+import { Component, OnInit } from '@angular/core';
|
|
|
+import { IonButton, IonContent, IonHeader, IonLabel, IonSegment, IonSegmentButton, IonTitle, IonToolbar, ModalController } from '@ionic/angular/standalone';
|
|
|
+import { IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonInput, IonItem } from '@ionic/angular/standalone';
|
|
|
+import { CloudUser } from 'src/lib/ncloud';
|
|
|
+
|
|
|
+@Component({
|
|
|
+ selector: 'app-info-modal',
|
|
|
+ templateUrl: './info-modal.component.html',
|
|
|
+ styleUrls: ['./info-modal.component.scss'],
|
|
|
+ standalone: true,
|
|
|
+ imports: [IonHeader, IonToolbar, IonTitle, IonContent,
|
|
|
+ IonCard,IonCardContent,IonButton,IonCardHeader,IonCardTitle,IonCardSubtitle,
|
|
|
+ IonInput,IonItem,
|
|
|
+ IonSegment,IonSegmentButton,IonLabel
|
|
|
+ ],
|
|
|
+})
|
|
|
+export class InfoModalComponent implements OnInit {
|
|
|
+
|
|
|
+
|
|
|
+ currentUser:CloudUser|undefined
|
|
|
+ userData:any = {}
|
|
|
+ userDataChange(key:string,ev:any){
|
|
|
+ let value = ev?.detail?.value
|
|
|
+ if(value){
|
|
|
+ this.userData[key] = value
|
|
|
+ }
|
|
|
+ }
|
|
|
+ constructor(private modalCtrl: ModalController) {
|
|
|
+ this.currentUser = new CloudUser();
|
|
|
+ this.userData = this.currentUser.data;
|
|
|
+ }
|
|
|
+ ngOnInit() {}
|
|
|
+
|
|
|
+}
|
|
|
+export async function openInfoModal(modalCtrl:ModalController):Promise<CloudUser|null>{
|
|
|
+ const modal = await modalCtrl.create({
|
|
|
+ component: InfoModalComponent,
|
|
|
+ breakpoints:[0.7,1.0],
|
|
|
+ initialBreakpoint:0.7
|
|
|
+ });
|
|
|
+ modal.present();
|
|
|
+
|
|
|
+ const { data, role } = await modal.onWillDismiss();
|
|
|
+
|
|
|
+ if (role === 'confirm') {
|
|
|
+ return data;
|
|
|
+ }
|
|
|
+ return null
|
|
|
+}
|