Component that implements a table displaying the ingredients or items present in the dbs. If the db is empty or an error occurs it shows it.

Implements

  • OnInit

Constructors

Properties

dataSource: any[] = ...
display: boolean = false
displayedColumns: string[]
error: boolean = false
errorMessage: string = ''
initialRequest: RequestMessage
ws: WebSocket

Methods

  • Parameters

    • title: string
    • buttonMsg: string
    • Optionaldata: any

    Returns {
        data: {
            buttonMsg: string;
            data: any;
            dialog: MatDialog;
            title: string;
            ws: WebSocket;
        };
    }

  • A callback method that is invoked immediately after the default change detector has checked the directive's data-bound properties for the first time, and before any of the view or content children have been checked. It is invoked only once when the directive is instantiated.

    Returns void