36 lines
892 B
TypeScript
36 lines
892 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { ActivatedRoute } from '@angular/router';
|
|
import { SocialService } from '@delon/auth';
|
|
import { SettingsService } from '@delon/theme';
|
|
|
|
@Component({
|
|
selector: 'app-callback',
|
|
template: ``,
|
|
providers: [SocialService]
|
|
})
|
|
export class CallbackComponent implements OnInit {
|
|
type = '';
|
|
|
|
constructor(private socialService: SocialService, private settingsSrv: SettingsService, private route: ActivatedRoute) {}
|
|
|
|
ngOnInit(): void {
|
|
this.type = this.route.snapshot.params.type;
|
|
this.mockModel();
|
|
}
|
|
|
|
private mockModel(): void {
|
|
const info = {
|
|
token: '123456789',
|
|
name: 'cipchk',
|
|
email: `${this.type}@${this.type}.com`,
|
|
id: 10000,
|
|
time: +new Date()
|
|
};
|
|
this.settingsSrv.setUser({
|
|
...this.settingsSrv.user,
|
|
...info
|
|
});
|
|
this.socialService.callback(info);
|
|
}
|
|
}
|