@dlr-eoc/user-info
v15.0.0-next.1
Published
This is a angular module that exports some UI components to manage views for users, like login, registration or details.
Downloads
203
Maintainers
Readme
@dlr-eoc/user-info
how to use this in a ukis-angular (@dlr-eoc/core-ui) project
For a example see demo auth
add the following dependencies to the package.json
- "@dlr-eoc/user-info"
create a auth service
This service (e.g. basic-auth.service) includes your business logic for authentication and authorization
create an AuthGuardService
This service protects your routes and is registered in the AppConfig or App Component
add the following to the app.component.ts
import { LoginComponent, RegisterComponent, UserDetailsComponent } from '@dlr-eoc/user-info';
import { BasicAuthService } from './auth/basic-auth.service';
import { HttpAuthInterceptor } from './auth/http-auth.interceptor';
...
standalone: true,
imports: [
...
LoginComponent, RegisterComponent, UserDetailsComponent
]
providers: [
BasicAuthService,
{
provide: HTTP_INTERCEPTORS,
useFactory: (BasicAuthService) => {
return new HttpAuthInterceptor(BasicAuthService);
},
deps: [BasicAuthService],
multi: true
}
]
===
This library was generated with Angular CLI version 8.2.14.
Code scaffolding
Run ng generate component component-name --project user-info
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module --project user-info
.
Note: Don't forget to add
--project user-info
or else it will be added to the default project in yourangular.json
file.
Build
Run ng build user-info
to build the project. The build artifacts will be stored in the dist/
directory.
Running unit tests
Run ng test user-info
to execute the unit tests via Karma.
Further help
To get more help on the Angular CLI use ng help
or go check out the Angular CLI README.