Merge pull request #257 in TEA/mina-sidor-fa-web from feature/TV-884-informativ-rapport-vy to develop

Squashed commit of the following:

commit ea4f6c986785bd5d038c6e634bba52b750d8165e
Author: Erik Tiekstra <erik.tiekstra@arbetsformedlingen.se>
Date:   Wed Nov 10 10:55:22 2021 +0100

    Added informativ rapport view
This commit is contained in:
Daniel Appelgren
2021-11-10 12:25:07 +01:00
parent 2dc566852c
commit 3b6ce438a9
12 changed files with 194 additions and 9 deletions

View File

@@ -91,14 +91,24 @@ activeFeatures.forEach(feature => {
}); });
break; break;
case Feature.REPORTING_INFORMATIV_RAPPORT: case Feature.REPORTING_INFORMATIV_RAPPORT:
routes.push({ routes.push(
path: 'informativ-rapport', {
data: { title: 'Skapa Informativ rapport' }, path: 'informativ-rapport',
loadChildren: () => data: { title: 'Skapa Informativ rapport' },
import('./pages/report-forms/informativ-rapport-form/informativ-rapport-form.module').then( loadChildren: () =>
m => m.InformativRapportFormModule import('./pages/report-forms/informativ-rapport-form/informativ-rapport-form.module').then(
), m => m.InformativRapportFormModule
}); ),
},
{
path: 'informativ-rapport/:handlingId',
data: { title: 'Informativ rapport' },
loadChildren: () =>
import('./pages/report-views/informativ-rapport-view/informativ-rapport-view.module').then(
m => m.InformativRapportViewModule
),
}
);
break; break;
default: default:
break; break;

View File

@@ -60,6 +60,9 @@ export class ReportsListComponent {
return `./avvikelserapport/${report.id}`; return `./avvikelserapport/${report.id}`;
case ReportType.PeriodiskRedovisning: case ReportType.PeriodiskRedovisning:
return `./periodisk-redovisning/${report.id}`; return `./periodisk-redovisning/${report.id}`;
case ReportType.InformativRapport:
case ReportType.InformativRedovisning:
return `./informativ-rapport/${report.id}`;
default: default:
return null; return null;
} }

View File

@@ -0,0 +1,27 @@
<msfa-layout>
<msfa-report-layout
*ngIf="avrop$ | async as avrop; else skeletonRef"
reportTitle="Informativ rapport"
[avrop]="avrop"
>
<div class="informativ-rapport-view" *ngIf="informativRapport$ | async as report; else loadingRef">
<dl>
<dt>Vad gäller ärendet</dt>
<dd>{{report.category}}</dd>
<dt>Kompletterande information</dt>
<dd>{{report.comment}}</dd>
</dl>
<footer class="informativ-rapport-view__footer">
<msfa-back-link route="../../">Tillbaka till deltagaren</msfa-back-link>
</footer>
</div>
</msfa-report-layout>
</msfa-layout>
<ng-template #skeletonRef>
<ui-skeleton [uiCount]="3" uiText="Laddar Informativ rapport"></ui-skeleton>
</ng-template>
<ng-template #loadingRef>
<ui-loader uiType="padded"></ui-loader>
</ng-template>

View File

@@ -0,0 +1,15 @@
@import 'mixins/list';
@import 'variables/gutters';
.informativ-rapport-view {
max-width: var(--digi--typography--text--max-width);
display: flex;
flex-direction: column;
gap: $digi--layout--gutter--l;
&__footer {
display: flex;
flex-direction: column;
gap: var(--digi--layout--gutter);
}
}

View File

@@ -0,0 +1,31 @@
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
import { InformativRapportViewComponent } from './informativ-rapport-view.component';
import { InformativRapportViewService } from './informativ-rapport-view.service';
describe('InformativRapportViewComponent', () => {
let component: InformativRapportViewComponent;
let fixture: ComponentFixture<InformativRapportViewComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
schemas: [CUSTOM_ELEMENTS_SCHEMA],
declarations: [InformativRapportViewComponent, LayoutComponent],
imports: [RouterTestingModule, HttpClientTestingModule],
providers: [InformativRapportViewService],
}).compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(InformativRapportViewComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -0,0 +1,38 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { Params } from '@msfa-models/api/params.model';
import { Avrop } from '@msfa-models/avrop.model';
import { InformativRapport } from '@msfa-models/informativ-rapport.model';
import { Observable } from 'rxjs';
import { map, shareReplay, switchMap } from 'rxjs/operators';
import { InformativRapportViewService } from './informativ-rapport-view.service';
@Component({
selector: 'msfa-informativ-rapport-view',
templateUrl: './informativ-rapport-view.component.html',
styleUrls: ['./informativ-rapport-view.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class InformativRapportViewComponent {
params$: Observable<Params> = this.activatedRoute.params.pipe(
map(params => ({
handlingId: params.handlingId as string,
genomforandeReferens: params.genomforandeReferens as string,
}))
);
avrop$: Observable<Avrop> = this.params$.pipe(
switchMap(({ genomforandeReferens }) =>
this.informativRapportViewService.fetchAvropInformation$(+genomforandeReferens)
),
shareReplay(1)
);
informativRapport$: Observable<InformativRapport> = this.params$.pipe(
switchMap(({ handlingId }) => this.informativRapportViewService.fetchInformativRapport$(handlingId as string)),
shareReplay(1)
);
constructor(
private informativRapportViewService: InformativRapportViewService,
private activatedRoute: ActivatedRoute
) {}
}

View File

@@ -0,0 +1,27 @@
import { CommonModule } from '@angular/common';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { BackLinkModule } from '@msfa-shared/components/back-link/back-link.module';
import { LayoutModule } from '@msfa-shared/components/layout/layout.module';
import { UiLoaderModule } from '@ui/loader/loader.module';
import { UiSkeletonModule } from '@ui/skeleton/skeleton.module';
import { ReportLayoutModule } from '../../../components/report-layout/report-layout.module';
import { InformativRapportViewComponent } from './informativ-rapport-view.component';
import { InformativRapportViewService } from './informativ-rapport-view.service';
@NgModule({
schemas: [CUSTOM_ELEMENTS_SCHEMA],
declarations: [InformativRapportViewComponent],
imports: [
CommonModule,
RouterModule.forChild([{ path: '', component: InformativRapportViewComponent }]),
LayoutModule,
ReportLayoutModule,
BackLinkModule,
UiLoaderModule,
UiSkeletonModule,
],
providers: [InformativRapportViewService],
exports: [InformativRapportViewComponent],
})
export class InformativRapportViewModule {}

View File

@@ -0,0 +1,22 @@
import { Injectable } from '@angular/core';
import { Avrop } from '@msfa-models/avrop.model';
import { InformativRapport, mapResponseToInformativRapport } from '@msfa-models/informativ-rapport.model';
import { DeltagareApiService } from '@msfa-services/api/deltagare.api.service';
import { HandlingarApiService } from '@msfa-services/api/handlingar.api.service';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
@Injectable()
export class InformativRapportViewService {
constructor(private handlingarApiService: HandlingarApiService, private deltagareApiService: DeltagareApiService) {}
public fetchAvropInformation$(genomforandeReferens: number): Observable<Avrop> {
return this.deltagareApiService.fetchAvropInformation$(genomforandeReferens);
}
public fetchInformativRapport$(handlingId: string): Observable<InformativRapport> {
return this.handlingarApiService
.fetchInformativRapport$(handlingId)
.pipe(map(({ data }) => mapResponseToInformativRapport(data)));
}
}

View File

@@ -5,4 +5,6 @@ export enum ReportType {
Avvikelse = 'Avvikelserapport (avvikelse)', Avvikelse = 'Avvikelserapport (avvikelse)',
Franvaro = 'Avvikelserapport (frånvaro)', Franvaro = 'Avvikelserapport (frånvaro)',
PeriodiskRedovisning = 'Periodisk redovisning', PeriodiskRedovisning = 'Periodisk redovisning',
InformativRapport = 'Informativ rapport',
InformativRedovisning = 'Informativ rapport',
} }

View File

@@ -1,6 +1,7 @@
import { InformativRapportCategoryKey } from '@msfa-enums/informativ-rapport-category.enum'; import { InformativRapportCategoryKey } from '@msfa-enums/informativ-rapport-category.enum';
export interface InformativRapportResponse { export interface InformativRapportResponse {
genomforandeReferens: number;
category: InformativRapportCategoryKey; category: InformativRapportCategoryKey;
comment: string; comment: string;
} }

View File

@@ -2,14 +2,16 @@ import { InformativRapportCategory } from '@msfa-enums/informativ-rapport-catego
import { InformativRapportResponse } from './api/informativ-rapport.response.model'; import { InformativRapportResponse } from './api/informativ-rapport.response.model';
export interface InformativRapport { export interface InformativRapport {
genomforandeReferens: number;
category: InformativRapportCategory; category: InformativRapportCategory;
comment: string; comment: string;
} }
export function mapResponseToInformativRapport(data: InformativRapportResponse): InformativRapport { export function mapResponseToInformativRapport(data: InformativRapportResponse): InformativRapport {
const { category, comment } = data; const { genomforandeReferens, category, comment } = data;
return { return {
genomforandeReferens,
category: InformativRapportCategory[category] as InformativRapportCategory, category: InformativRapportCategory[category] as InformativRapportCategory,
comment: comment, comment: comment,
}; };

View File

@@ -4,6 +4,7 @@ import { environment } from '@msfa-environment';
import { AvvikelseReportResponse } from '@msfa-models/api/avvikelse-response.model'; import { AvvikelseReportResponse } from '@msfa-models/api/avvikelse-response.model';
import { FranvaroReportResponse } from '@msfa-models/api/franvaro-response.model'; import { FranvaroReportResponse } from '@msfa-models/api/franvaro-response.model';
import { GemensamPlaneringResponse } from '@msfa-models/api/gemensam-planering.response.model'; import { GemensamPlaneringResponse } from '@msfa-models/api/gemensam-planering.response.model';
import { InformativRapportResponse } from '@msfa-models/api/informativ-rapport.response.model';
import { Observable } from 'rxjs'; import { Observable } from 'rxjs';
@Injectable({ @Injectable({
@@ -20,6 +21,12 @@ export class HandlingarApiService {
); );
} }
public fetchInformativRapport$(handlingId: string): Observable<{ data: InformativRapportResponse }> {
return this.httpClient.get<{ data: InformativRapportResponse }>(
`${this._apiBaseUrl}/informativ-rapport/${handlingId}`
);
}
public fetchFranvaroReport$(handlingId: string): Observable<{ data: FranvaroReportResponse }> { public fetchFranvaroReport$(handlingId: string): Observable<{ data: FranvaroReportResponse }> {
return this.httpClient.get<{ data: FranvaroReportResponse }>(`${this._apiBaseUrl}/franvaro/${handlingId}`); return this.httpClient.get<{ data: FranvaroReportResponse }>(`${this._apiBaseUrl}/franvaro/${handlingId}`);
} }