person.page.ts 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. import { Component, ElementRef, OnInit, ViewChild } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { FormsModule, ReactiveFormsModule } from '@angular/forms';
  4. import { Router } from '@angular/router';
  5. import {
  6. IonAvatar, IonBackButton, IonButton, IonButtons, IonContent, IonHeader, IonIcon,
  7. IonItem, IonLabel, IonList, IonTitle, IonToolbar, ToastController, AlertController, IonCard, IonCardHeader, IonCardTitle
  8. } from '@ionic/angular/standalone';
  9. import { UserService } from '../services/user.service';
  10. import { ActionSheetController } from '@ionic/angular/standalone';
  11. import { Camera, CameraResultType, CameraSource } from '@capacitor/camera';
  12. interface User {
  13. username: string;
  14. avatar: string;
  15. }
  16. @Component({
  17. selector: 'app-person',
  18. templateUrl: './person.page.html',
  19. styleUrls: ['./person.page.scss'],
  20. standalone: true,
  21. imports: [IonContent, IonHeader, IonToolbar, CommonModule, FormsModule,
  22. IonAvatar, IonList, IonItem, IonLabel, IonButtons, IonCard, IonIcon, IonTitle, IonButton, IonCardHeader, IonCardTitle]
  23. })
  24. export class PersonPage implements OnInit {
  25. isLoggedIn: boolean = false;
  26. user: User = {
  27. username: 'User_123456',
  28. avatar: 'assets/default-avatar.png'
  29. };
  30. @ViewChild('fileInput') fileInput!: ElementRef;
  31. constructor(
  32. private router: Router,
  33. private alertController: AlertController,
  34. private actionSheetController: ActionSheetController,
  35. private userService: UserService
  36. ) { }
  37. ngOnInit() {
  38. this.checkLoginStatus();
  39. this.subscribeToUserChanges();
  40. }
  41. subscribeToUserChanges() {
  42. this.userService.currentUser$.subscribe(user => {
  43. if (user) {
  44. this.user = user;
  45. }
  46. });
  47. }
  48. checkLoginStatus() {
  49. this.userService.isLoggedIn$.subscribe(
  50. isLoggedIn => {
  51. this.isLoggedIn = isLoggedIn;
  52. if (isLoggedIn) {
  53. // 获取用户信息
  54. this.userService.getCurrentUser().subscribe(user => {
  55. if (user) {
  56. this.user = user;
  57. }
  58. });
  59. }
  60. }
  61. );
  62. }
  63. async changeAvatar() {
  64. try {
  65. const actionSheet = await this.actionSheetController.create({
  66. header: '选择头像',
  67. buttons: [
  68. {
  69. text: '拍照',
  70. icon: 'camera',
  71. handler: () => {
  72. this.takePicture('camera');
  73. }
  74. },
  75. {
  76. text: '从相册选择',
  77. icon: 'image',
  78. handler: () => {
  79. this.takePicture('photos');
  80. }
  81. },
  82. {
  83. text: '从电脑选择',
  84. icon: 'desktop',
  85. handler: () => {
  86. this.fileInput.nativeElement.click();
  87. }
  88. },
  89. {
  90. text: '取消',
  91. icon: 'close',
  92. role: 'cancel'
  93. }
  94. ]
  95. });
  96. await actionSheet.present();
  97. } catch (error) {
  98. console.error('Error showing action sheet:', error);
  99. this.showAlert('错误', '无法打开选择菜单');
  100. }
  101. }
  102. private async takePicture(sourceType: 'camera' | 'photos') {
  103. try {
  104. const image = await Camera.getPhoto({
  105. quality: 90,
  106. allowEditing: true,
  107. resultType: CameraResultType.DataUrl,
  108. source: sourceType === 'camera' ? CameraSource.Camera : CameraSource.Photos
  109. });
  110. if (image && image.dataUrl) {
  111. // 先更新本地显示
  112. this.user.avatar = image.dataUrl;
  113. // 然后保存到服务
  114. this.userService.updateAvatar(image.dataUrl).subscribe(
  115. response => {
  116. if (response.success) {
  117. this.showAlert('成功', '头像更新成功');
  118. } else {
  119. // 如果更新失败,恢复原来的头像
  120. this.userService.getCurrentUser().subscribe(user => {
  121. if (user) {
  122. this.user.avatar = user.avatar;
  123. }
  124. });
  125. this.showAlert('错误', '头像更新失败');
  126. }
  127. },
  128. error => {
  129. console.error('Error updating avatar:', error);
  130. this.showAlert('错误', '头像更新失败');
  131. }
  132. );
  133. }
  134. } catch (error) {
  135. console.error('Error taking photo:', error);
  136. this.showAlert('错误', '获取图片失败');
  137. }
  138. }
  139. async changePassword() {
  140. const alert = await this.alertController.create({
  141. header: '修改密码',
  142. inputs: [
  143. {
  144. name: 'oldPassword',
  145. type: 'password',
  146. placeholder: '请输入原密码'
  147. },
  148. {
  149. name: 'newPassword',
  150. type: 'password',
  151. placeholder: '请输入新密码'
  152. }
  153. ],
  154. buttons: [
  155. {
  156. text: '取消',
  157. role: 'cancel'
  158. },
  159. {
  160. text: '确定',
  161. handler: (data) => {
  162. this.userService.changePassword(data.oldPassword, data.newPassword).subscribe(
  163. response => {
  164. if (response.success) {
  165. this.showAlert('成功', '密码修改成功');
  166. } else {
  167. this.showAlert('错误', response.message || '密码修改失败');
  168. }
  169. }
  170. );
  171. }
  172. }
  173. ]
  174. });
  175. await alert.present();
  176. }
  177. async switchAccount() {
  178. const alert = await this.alertController.create({
  179. header: '切换账号',
  180. inputs: [
  181. {
  182. name: 'phone',
  183. type: 'tel',
  184. placeholder: '请输入手机号'
  185. },
  186. {
  187. name: 'password',
  188. type: 'password',
  189. placeholder: '请输入密码'
  190. }
  191. ],
  192. buttons: [
  193. {
  194. text: '取消',
  195. role: 'cancel'
  196. },
  197. {
  198. text: '确定',
  199. handler: (data) => {
  200. this.userService.switchAccount(data).subscribe(
  201. response => {
  202. if (response.success) {
  203. this.showAlert('成功', '账号切换成功');
  204. this.checkLoginStatus();
  205. } else {
  206. this.showAlert('错误', '账号或密码错误');
  207. }
  208. }
  209. );
  210. }
  211. }
  212. ]
  213. });
  214. await alert.present();
  215. }
  216. async showLogoutConfirm() {
  217. const alert = await this.alertController.create({
  218. header: '确认注销账号',
  219. message: '您确定要注销账号吗?此操作不可逆',
  220. buttons: [
  221. {
  222. text: '取消',
  223. role: 'cancel'
  224. },
  225. {
  226. text: '确定',
  227. handler: () => {
  228. this.userService.deleteAccount().subscribe(
  229. response => {
  230. if (response.success) {
  231. this.userService.logout();
  232. this.router.navigate(['/login']);
  233. }
  234. }
  235. );
  236. }
  237. }
  238. ]
  239. });
  240. await alert.present();
  241. }
  242. private async showAlert(header: string, message: string) {
  243. const alert = await this.alertController.create({
  244. header,
  245. message,
  246. buttons: ['确定']
  247. });
  248. await alert.present();
  249. }
  250. goToCreativeCenter() {
  251. this.router.navigate(['/tabs/home']);
  252. }
  253. goToLogin() {
  254. this.router.navigate(['/login']);
  255. }
  256. goToRegister() {
  257. this.router.navigate(['/register']);
  258. }
  259. async uploadAvatarFromFile(event: any) {
  260. const file = event.target.files[0];
  261. if (file) {
  262. try {
  263. const reader = new FileReader();
  264. reader.onload = (e: any) => {
  265. const imageData = e.target.result;
  266. // 先更新本地显示
  267. this.user.avatar = imageData;
  268. // 然后保存到服务
  269. this.userService.updateAvatar(imageData).subscribe(
  270. response => {
  271. if (response.success) {
  272. this.showAlert('成功', '头像更新成功');
  273. } else {
  274. // 如果更新失败,恢复原来的头像
  275. this.userService.getCurrentUser().subscribe(user => {
  276. if (user) {
  277. this.user.avatar = user.avatar;
  278. }
  279. });
  280. this.showAlert('错误', '头像更新失败');
  281. }
  282. },
  283. error => {
  284. console.error('Error updating avatar:', error);
  285. this.showAlert('错误', '头像更新失败');
  286. }
  287. );
  288. };
  289. reader.readAsDataURL(file);
  290. } catch (error) {
  291. console.error('Error reading file:', error);
  292. this.showAlert('错误', '文件读取失败');
  293. }
  294. }
  295. }
  296. }