myFlix Angular Client Documentation - v0.0.0
    Preparing search index...

    Component representing a dialog that displays information about a movie.

    This component is used as a generic dialog to display different types of data, such as a movie's genre details, director information, or synopsis.

    Implements

    • OnInit
    Index

    Constructors

    Properties

    Methods

    Constructors

    • Parameters

      • data: { content: string; title: string }

        Data object injected into the dialog via MAT_DIALOG_DATA. Includes a title (the name of the genre, director, etc.) and content (the detailed description).

      • dialogRef: MatDialogRef<MovieInfoComponent>

        Reference to the dialog instance, allowing the component to interact with the dialog.

      Returns MovieInfoComponent

    Properties

    data: { content: string; title: string }

    Data object injected into the dialog via MAT_DIALOG_DATA. Includes a title (the name of the genre, director, etc.) and content (the detailed description).

    dialogRef: MatDialogRef<MovieInfoComponent>

    Reference to the dialog instance, allowing the component to interact with the dialog.

    Methods

    • Lifecycle hook that is called after Angular has initialized all data-bound properties.

      Returns void