|
@@ -2,7 +2,7 @@ import { Input, OnInit } from '@angular/core';
|
|
|
import { Component } from '@angular/core';
|
|
|
import { ModalController } from '@ionic/angular';
|
|
|
import { IonHeader, IonToolbar, IonTitle, IonContent, IonCard, IonCardContent, IonButton, IonCardHeader, IonCardTitle, IonCardSubtitle, IonInput, IonItem, IonLabel, IonList } from '@ionic/angular/standalone';
|
|
|
-import { CloudUser } from 'src/lib/ncloud';
|
|
|
+import { CloudObject, CloudQuery, CloudUser } from 'src/lib/ncloud';
|
|
|
import { CommonModule } from '@angular/common'; // 导入 CommonModule
|
|
|
|
|
|
@Component({
|
|
@@ -14,7 +14,7 @@ import { CommonModule } from '@angular/common'; // 导入 CommonModule
|
|
|
IonHeader,
|
|
|
IonToolbar,
|
|
|
IonTitle,
|
|
|
- IonContent,
|
|
|
+ IonContent,
|
|
|
IonCard,
|
|
|
IonCardContent,
|
|
|
IonButton,
|
|
@@ -25,37 +25,82 @@ import { CommonModule } from '@angular/common'; // 导入 CommonModule
|
|
|
IonItem,
|
|
|
IonLabel,
|
|
|
IonList,
|
|
|
- IonCard,
|
|
|
CommonModule // 添加 CommonModule
|
|
|
],
|
|
|
})
|
|
|
-export class ModalUserEditComponent 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) {
|
|
|
+export class ModalUserEditComponent implements OnInit {
|
|
|
+ currentUser: CloudUser | undefined;
|
|
|
+ userData: any = {};
|
|
|
+
|
|
|
+ constructor(private modalCtrl: ModalController) {
|
|
|
this.currentUser = new CloudUser();
|
|
|
this.userData = this.currentUser.data;
|
|
|
}
|
|
|
|
|
|
ngOnInit() {}
|
|
|
|
|
|
+ userDataChange(key: string, ev: any) {
|
|
|
+ let value = ev?.detail?.value;
|
|
|
+ if (value) {
|
|
|
+ this.userData[key] = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
async save() {
|
|
|
+ // 将年龄转换为数字
|
|
|
Object.keys(this.userData).forEach(key => {
|
|
|
if (key === "age") {
|
|
|
this.userData[key] = Number(this.userData[key]);
|
|
|
}
|
|
|
});
|
|
|
|
|
|
+ // 查询 HnbUser2 表以获取最近更新的 username
|
|
|
+ const user2Query = new CloudQuery("HnbUser2");
|
|
|
+
|
|
|
+ try {
|
|
|
+ // 手动构建查询 URL,按 updatedAt 字段降序排列
|
|
|
+ const url = `http://dev.fmode.cn:1337/parse/classes/HnbUser2?order=-updatedAt&limit=1`;
|
|
|
+ const response = await fetch(url, {
|
|
|
+ headers: {
|
|
|
+ "x-parse-application-id": "dev",
|
|
|
+ "Content-Type": "application/json"
|
|
|
+ },
|
|
|
+ method: "GET"
|
|
|
+ });
|
|
|
+
|
|
|
+ const latestUser2Data = await response.json();
|
|
|
+ if (latestUser2Data.results.length > 0) {
|
|
|
+ const latestUser2 = new CloudObject("HnbUser2");
|
|
|
+ latestUser2.set(latestUser2Data.results[0]); // 设置最新用户数据
|
|
|
+
|
|
|
+ const latestUsername = latestUser2.get("username"); // 获取最近更新的用户名
|
|
|
+ console.log("最近更新的用户名:", latestUsername); // 调试信息
|
|
|
+
|
|
|
+ // 查询 HnbUser 表以获取对应的用户记录
|
|
|
+ const userQuery = new CloudQuery("HnbUser");
|
|
|
+ userQuery.equalTo("username", latestUsername); // 根据 username 进行查询
|
|
|
+
|
|
|
+ const userResult = await userQuery.first(); // 获取查询结果
|
|
|
+ if (userResult) {
|
|
|
+ // 更新 avatar 字段
|
|
|
+ userResult.set({ avatar: this.userData["avatar"] }); // 将输入的 avatar 保存到对应记录
|
|
|
+
|
|
|
+ await userResult.save(); // 保存更新后的记录
|
|
|
+ console.log("用户信息已更新,avatar 已保存到 HnbUser 表中");
|
|
|
+ } else {
|
|
|
+ console.error("未找到对应的用户信息,username:", latestUsername); // 调试信息
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ console.error("未找到最近更新的用户信息");
|
|
|
+ }
|
|
|
+ } catch (error) {
|
|
|
+ console.error("保存失败:", error);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 更新当前用户信息
|
|
|
this.currentUser?.set(this.userData);
|
|
|
|
|
|
- // 这里使用 PUT 方法更新用户信息
|
|
|
+ // 使用 PUT 方法更新用户信息
|
|
|
const updatedUser = await this.currentUser?.save();
|
|
|
|
|
|
if (updatedUser) {
|
|
@@ -64,17 +109,16 @@ export class ModalUserEditComponent implements OnInit {
|
|
|
console.error("Failed to save user data");
|
|
|
}
|
|
|
}
|
|
|
- cancel(){
|
|
|
- this.modalCtrl.dismiss(null,"cancel")
|
|
|
-
|
|
|
+ cancel() {
|
|
|
+ this.modalCtrl.dismiss(null, "cancel");
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-export async function openUserEditModal(modalCtrl:ModalController):Promise<CloudUser|null>{
|
|
|
+export async function openUserEditModal(modalCtrl: ModalController): Promise<CloudUser | null> {
|
|
|
const modal = await modalCtrl.create({
|
|
|
component: ModalUserEditComponent,
|
|
|
- breakpoints:[0.7,1.0],
|
|
|
- initialBreakpoint:0.7
|
|
|
+ breakpoints: [0.7, 1.0],
|
|
|
+ initialBreakpoint: 0.7
|
|
|
});
|
|
|
modal.present();
|
|
|
|
|
@@ -83,5 +127,5 @@ export async function openUserEditModal(modalCtrl:ModalController):Promise<Cloud
|
|
|
if (role === 'confirm') {
|
|
|
return data;
|
|
|
}
|
|
|
- return null
|
|
|
+ return null;
|
|
|
}
|