本文整理汇总了TypeScript中ui-router-ng2.Transition类的典型用法代码示例。如果您正苦于以下问题:TypeScript Transition类的具体用法?TypeScript Transition怎么用?TypeScript Transition使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Transition类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
$transitions.onStart({}, (transition: Transition) => {
let $storageService = transition.injector().get(StateStorageService);
$storageService.storeDestinationState(transition.to(), transition.params(), transition.from());
let principal = transition.injector().get(Principal);
let auth = transition.injector().get(AuthService);
if (principal.isIdentityResolved()) {
auth.authorize();
}
});
示例2: User
onEnter: ['$transition$', (trans: Transition) => {
let $state = trans.injector().get('$state');
let modalService = trans.injector().get('NgbModal');
const modalRef = modalService.open(UserMgmtDialogComponent, { size: 'lg', backdrop: 'static'});
modalRef.componentInstance.user = new User(null, null, null, null, null, true, null, null, null, null, null, null, null);
modalRef.result.then((result) => {
console.log(`Closed with: ${result}`);
$state.go('user-management', null, { reload: true });
}, (reason) => {
console.log(`Dismissed ${reason}`);
$state.go('user-management');
});
}]
示例3:
deregistrationFns.push($transitions.onStart({}, (transition: Transition) => {
$rootScope.toState = transition.to();
$rootScope.toParams = transition.params();
$rootScope.fromState = transition.from();
/*if (Principal.isIdentityResolved()) { //TODO needs to fixed after migration
Auth.authorize();
}*/
// Update the language //TODO needs to fixed after migration
/*JhiLanguageService.getCurrent().then(function (language) {
$translate.use(language);
});*/
}));
示例4:
onEnter: ['$transition$', (trans: Transition) => {
let $stateParams = trans.injector().get('$stateParams');
let $state = trans.injector().get('$state');
let modalService = trans.injector().get('NgbModal');
let userService: UserService = trans.injector().get('UserService');
userService.find($stateParams.login).subscribe(user => {
const modalRef = modalService.open(UserMgmtDeleteDialogComponent, { size: 'md'});
modalRef.componentInstance.user = user;
modalRef.result.then((result) => {
console.log(`Closed with: ${result}`);
$state.go('user-management', null, { reload: true });
}, (reason) => {
console.log(`Dismissed ${reason}`);
$state.go('user-management');
});
});
}]
示例5:
onEnter: (trans: Transition) => {
let $state = trans.router.stateService;
let modalService = trans.injector().get(NgbModal);
let userService: UserService = trans.injector().get(UserService);
let login = trans.params()['login'];
userService.find(login).subscribe(user => {
const modalRef = modalService.open(UserMgmtDialogComponent, { size: 'lg', backdrop: 'static'});
modalRef.componentInstance.user = user;
modalRef.result.then((result) => {
console.log(`Closed with: ${result}`);
$state.go('user-management', null, { reload: true });
}, (reason) => {
console.log(`Dismissed ${reason}`);
$state.go('user-management');
});
});
}
示例6: ngOnInit
ngOnInit () {
this.activate.get(this.trans.params()['key']).subscribe(() => {
this.error = null;
this.success = 'OK';
}, () => {
this.success = null;
this.error = 'ERROR';
});
}
示例7: finishReset
finishReset() {
this.doNotMatch = null;
this.error = null;
if (this.resetAccount.password !== this.confirmPassword) {
this.doNotMatch = 'ERROR';
} else {
this.passwordResetFinish.save({key: this.trans.params()['key'], newPassword: this.resetAccount.password}).subscribe(() => {
this.success = 'OK';
}, () => {
this.success = null;
this.error = 'ERROR';
});
}
}