aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/profile-settings/profile-settings.component.ts
blob: 44ea8bb209ba44b6b7355ea5f4afd5eb4ce22718 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
import { Location } from '@angular/common';
import { HttpErrorResponse } from '@angular/common/http';
import { Component, OnInit, ViewChild } from '@angular/core';
import { FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms';
import { Router } from '@angular/router';
import { LanguageService } from 'src/app/services/language.service';
import { UserService } from 'src/app/services/user.service';
import { TechnologyService } from 'src/app/services/technology.service';
import { User } from 'src/models/identity/user.model';
import { ErrorBarComponent } from '../error-bar/error-bar.component';
import { SuccessBarComponent } from '../success-bar/success-bar.component';
import { Language } from 'src/models/language.model';
import { Technology } from 'src/models/technology.model';
import { TokenService } from 'src/app/services/token.service';
import { Title } from '@angular/platform-browser';
import { AppConstants } from 'src/app/app-constants.module';

@Component({
  selector: 'app-profile-settings',
  templateUrl: './profile-settings.component.html',
  styleUrls: ['./profile-settings.component.css']
})
export class ProfileSettingsComponent implements OnInit {
  private _title = 'Profile Settings';
  @ViewChild(ErrorBarComponent) private _errorBar: ErrorBarComponent;
  @ViewChild(SuccessBarComponent) private _successBar: SuccessBarComponent;
  private _urlUsername: string;
  public isAdminUser = false;
  public dataArrived = false;
  public deleteAccountConfirm = false;
  public showLanguages = false;
  public showTechnologies = false;
  public updateUserFormGroup: FormGroup;
  public updateProfilePictureFormGroup: FormGroup;
  public newProfilePicture: File;
  public user: User;
  public availableLanguages: Language[];
  public availableTechnologies: Technology[];

  constructor(private _titleService: Title, private _router: Router, private _userService: UserService, private _languageService: LanguageService, private _technologyService: TechnologyService, private _tokenService: TokenService, private _fb: FormBuilder, private _location: Location) {
    this._titleService.setTitle(this._title);
  }

  ngOnInit(): void {
    this._urlUsername = this._router.url.substring(9);
    this._urlUsername = this._urlUsername.substring(0, this._urlUsername.length - 9);

    this.user = this._userService.getDefaultUser();
    this.availableLanguages = [];
    this.availableTechnologies = [];
    this.newProfilePicture = new File([], '');

    // Initializing forms with blank (default) values
    this.updateUserFormGroup = this._fb.group({
      firstName: new FormControl(''),
      lastName: new FormControl(''),
      username: new FormControl(''),
      email: new FormControl(''),
      password: new FormControl(''),
      languageInput: new FormControl(''),
      languages: new FormControl(''),
      technologyInput: new FormControl(''),
      technologies: new FormControl('')
    });
    this.updateProfilePictureFormGroup = this._fb.group({
      fileUpload: new FormControl('')
    });


    this._userService.getUserByUsernameRequest(this._urlUsername).subscribe({
      next: (res: object) => {
        Object.assign(this.user, res);
        this.isAdminUser = this.user.roles.map(x => x.name).includes(AppConstants.ADMIN_ROLE_NAME);
        this.finishUserLoading();
      },
      error: () => {
        this._router.navigate(['/not-found']);
      }
    });

    this._languageService.getAllLanguagesWithSessionStorageRequest().subscribe({
      next: (result: object) => {
        this.availableLanguages = result as Language[];
      }
    });
    this._technologyService.getAllTechnologiesWithSessionStorageRequest().subscribe({
      next: (result: object) => {
        this.availableTechnologies = result as Technology[];
      }
    });
  }

  private finishUserLoading(): void {
    if (sessionStorage.getItem('UserCred')) {
      const userFromToken: User = this._userService.getDefaultUser();

      this._userService.getUserFromSessionStorageRequest().subscribe({
        next: (tokenRes: object) => {
          Object.assign(userFromToken, tokenRes);

          if (userFromToken.userName === this._urlUsername) {
            this.initForms();
            this.dataArrived = true;
          }
          else {
            this.goToProfile();
          }
        },
        error: () => {
          this.logout();
        }
      });
    }
    else {
      this.goToProfile();
    }
  }

  private initForms(): void {
    this.updateUserFormGroup = this._fb.group({
      firstName: new FormControl(this.user.firstName, [
        Validators.required,
        Validators.minLength(3)
      ]),
      lastName: new FormControl(this.user.lastName, [
        Validators.required,
        Validators.minLength(3)
      ]),
      username: new FormControl(this.user.userName, [
        Validators.required,
        Validators.minLength(3)
      ]),
      email: new FormControl(this.user.email, [
        Validators.required,
        Validators.email,
      ]),
      password: new FormControl('', [
        Validators.required,
        Validators.minLength(3),
        Validators.pattern('.*[0-9].*') // Check if password contains atleast one number
      ]),

      // For language we have two different controls,
      // the first one is used for input, the other one for sending data
      // because if we edit the control for input,
      // we're also gonna change the input field in the HTML
      languageInput: new FormControl(''), // The one for input
      languages: new FormControl(''), // The one that is sent

      // For technologies it's the same as it is with languages
      technologyInput: new FormControl(''),
      technologies: new FormControl('')
    });

    this.getLanguagesForShowing().then(value => {
        this.updateUserFormGroup.patchValue({ languageInput : value });
    });

    this.getTechnologiesForShowing().then(value => {
      this.updateUserFormGroup.patchValue({ technologyInput : value });
    });

    this.updateProfilePictureFormGroup = this._fb.group({
      fileUpload: new FormControl('')
    });

    this.updateUserFormGroup.valueChanges.subscribe({
      next: () => {
        this._successBar?.hideMsg();
        this._errorBar?.hideError();
      }
    });
  }

  private getLanguagesForShowing(): Promise<string> {
    return new Promise(resolve => {
      this._languageService.getFullLanguagesFromIncomplete(this.user.languages).then(value => {
        this.user.languages = value;
        resolve(value.map(x => x.name).join(' '));
      });
    });
  }

  private getTechnologiesForShowing(): Promise<string> {
    return new Promise(resolve => {
      this._technologyService.getFullTechnologiesFromIncomplete(this.user.technologies).then(value => {
        this.user.technologies = value;
        resolve(value.map(x => x.name).join(' '));
      });
    });
  }

  onFileUpload(event: any): void {
    this.newProfilePicture = event.target.files[0];
  }

  updateProfilePicture(): void {
    if (this.newProfilePicture.size === 0) {
      return;
    }

    this._userService.putProfilePictureFromSessionStorageRequest(this.newProfilePicture).subscribe({
      next: () => {
        this.reloadPage();
      }
    });
    this.dataArrived = false;
  }

  onSubmit(): void {
    this._successBar.hideMsg();
    this._errorBar.hideError();

    this.patchLanguagesControl();
    this.patchTechnologiesControl();

    this._userService.putUserFromSessionStorageRequest(this.updateUserFormGroup, this.user.roles, this.user.friends).subscribe({
        next: () => {
          this._successBar.showMsg('Profile updated successfully!');

          // "Reload" page when changing username
          const newUsername = this.updateUserFormGroup.get('username')?.value;
          if (newUsername !== this._urlUsername) {
            this._router.navigate(['/profile/' + newUsername + '/settings']);
          }
        },
        error: (err: HttpErrorResponse) => {
          this._errorBar.showError(err);
        }
    });
  }

  private patchLanguagesControl(): void {
    // Get user input
    const langControl = this.updateUserFormGroup.get('languageInput')?.value as string ?? '';

    if (langControl === '') {
      // Add the data to the form (to the value that is going to be sent)
      this.updateUserFormGroup.patchValue({
        languages : []
      });
    }
    else {
      const names = langControl.split(' ');

      // Transfer user input to objects of type { "name": "value" }
      const actualLanguages = [];
      for (const lName of names) {
        if (lName !== '') {
          actualLanguages.push({ name : lName });
        }
      }

      // Add the data to the form (to the value that is going to be sent)
      this.updateUserFormGroup.patchValue({
        languages : actualLanguages
      });
    }
  }

  private patchTechnologiesControl(): void {
    // Get user input
    const techControl = this.updateUserFormGroup.get('technologyInput')?.value as string ?? '';

    if (techControl === '') {
      // Add the data to the form (to the value that is going to be sent)
      this.updateUserFormGroup.patchValue({
        technologies : []
      });
    }
    else {
      const names = techControl.split(' ');

      // Transfer user input to objects of type { "name": "value" }
      const actualTechnologies = [];
      for (const tName of names) {
        if (tName !== '') {
          actualTechnologies.push({ name : tName });
        }
      }

      // Add the data to the form (to the value that is going to be sent)
      this.updateUserFormGroup.patchValue({
        technologies : actualTechnologies
      });
    }
  }

  goToProfile(): void {
    this._router.navigate([this._router.url.substring(0, this._router.url.length - 9)]);
  }

  navigateToAdminPanel(): void {
    this._router.navigate(['/admin-panel']);
  }

  logout(): void {
    this._tokenService.logoutUserFromSessionStorage();
    this._router.navigate(['/login']);
  }

  toggleLanguages(): void {
    this.showLanguages = !this.showLanguages;
  }

  toggleTechnologies(): void {
    this.showTechnologies = !this.showTechnologies;
  }

  deleteAccount(): void {
    if (this.deleteAccountConfirm) {
      this._userService.deleteUserFromSessionStorageRequest().subscribe({
        next: () => {
          this.logout();
        },
        error: (err: HttpErrorResponse) => {
          this._errorBar.showError(err);
        }
      });
      this.dataArrived = false;
    }
    else {
      this.deleteAccountConfirm = true;
    }
  }

  private reloadPage(): void {
    this._router.routeReuseStrategy.shouldReuseRoute = () => false;
    this._router.onSameUrlNavigation = 'reload';
    this._router.navigate([this._router.url]);
  }
}