Mapping a JSON Value into a new string to display in HTML using Angular 10

572 Views Asked by At

I have this example JSON response from my backend that using Spring Boot. the "category" can be 1 or 2. 1 stand for Notification and 2 stands for FAQ

{
"pageNumber": 0,
"size": 5,
"totalPages": 39,
"content": [
    {
        "notifBaseId": {
            "notifId": "11115"
        },
        "notifLngCd": "en",
        "title": "Test",
        "ctt": lorem ipsum",
        "category": "2",
    },

based on the json response this is the angular model that i created using ng g model command

export class NotifBase {
notifID : string;
notifLngCd : string;
title : string;
ctt : string;
category : string;
}

This is the service.ts

import { Injectable } from '@angular/core';
import { HttpClient, HttpResponse } from '@angular/common/http';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
import { NotifBase } from '../model/notif-base';

@Injectable({
  providedIn: 'root'
})
export class NotifBaseService {
    
    private URL  = 'http://localhost:1001/api/notif/base';

    constructor ( private httpClient : HttpClient ) { }
    /** 
     * this is for default way for ngx-datatable 
     * 
     * */
    getNotifBaseList() : Observable<NotifBase[]> {
        return this.httpClient.get<GetResponse>(this.URL).pipe(
            map(response => response.content),
            
        );
    }

}

/*
This is for mapping the JSON endpoint
*/
interface GetResponse {
    content : [];
}

This is the component.ts

export class NotifBaseComponent implements OnInit {

//Table Rows
notifRows: NotifBase[];
// table Column 
notifColumns = [
    { name : 'NotifId', prop : 'notifBaseId.notifId'},
    { name : 'Languange', prop : 'notifLngCd'},
    { name : 'Notif title', prop : 'title'},
    { name : 'Content', prop : 'ctt'},
    { name : 'Category', prop : 'category},
];
selected = [];
SelectionType = SelectionType;
ColumnMode = ColumnMode;

constructor( private notifBaseService: NotifBaseService ){
    
}

ngOnInit(){
    this.loadAll();
}

loadAll(){
    this.notifBaseService.getNotifBaseList().subscribe(
        data => {
            this.notifRows = data;
        }
    );
}

/**
 * This is for selected rows event
 */
onSelect({ selected }) {
    console.log('Select Event', selected, this.selected);
}
onActivate(event) {
    console.log('Activate Event', event);
}

}

and at the HTML im using swimlane ngx-datatable to show my all my data.

<!-- Ngx datatable  -->
    <ngx-datatable 
        class="material"
        [rows]="notifRows"
        [columnMode]="'standard'"
        [columns]="notifColumns"
        [headerHeight] ="50"
        [footerHeight]="50"
        [rowHeight]="50"
        [scrollbarH]="true"
        [scrollbarV]="true"
        [selected]="selected"
        [selectionType]="SelectionType.single"
        
    >
    </ngx-datatable>

with my current code, my data displayed correctly. one thing that I don't know is how can I map/display my category value instead of displaying/rendering 1 or 2 in the browser, I would like to display them as their name (notification or FAQ)

1

There are 1 best solutions below

8
On BEST ANSWER

You can modify mapping your response to receive what you want, I'd do something like that:

getCategoryName(id: string): string {
    if (id === '1') {
        return 'Notification';
    }

    if (id === '2') {
        return 'FAQ';
    }

    return 'Unknown';
}

getNotifBaseList() : Observable<NotifBase[]> {
    return this.httpClient.get<GetResponse>(this.URL).pipe(
        map(response => {
            return response.content.map(item => ({
                ...item,
                category: this.getCategoryName(item.category)
            });
        }),         
    );
}