File

projects/openvidu-components-angular/src/lib/directives/template/openvidu-components-angular.directive.ts

Description

The *ovActivitiesPanel directive empowers you to effortlessly substitute the default activities panel template with a custom one.

In the example below, we showcase how to replace the activities template with a custom one.

Example :
import { HttpClient } from '@angular/common/http';
import { Component } from '@angular/core';
import { lastValueFrom } from 'rxjs';
import { OpenViduComponentsModule } from 'openvidu-components-angular';

@Component({
    selector: 'app-root',
    template: `
        <ov-videoconference
            [token]="token"
            [livekitUrl]="LIVEKIT_URL"
            (onTokenRequested)="onTokenRequested($event)"
        >
            <!-- Custom activities panel -->
            <div *ovActivitiesPanel id="my-panel">
                <h3>ACTIVITIES</h3>
                <div>CUSTOM ACTIVITIES</div>
            </div>
        </ov-videoconference>
    `,
    styles: `
        #my-panel {
            background: #aafffc;
            height: 100%;
            overflow: hidden;
            text-align: center;
        }
    `,
    standalone: true,
    imports: [OpenViduComponentsModule],
})
export class AppComponent {
    // For local development, leave these variables empty
    // For production, configure them with correct URLs depending on your deployment
    APPLICATION_SERVER_URL = '';
    LIVEKIT_URL = '';
    roomName = 'custom-activities-panel';
    token!: string;

    constructor(private httpClient: HttpClient) {
        this.configureUrls();
    }

    configureUrls() {
        // If APPLICATION_SERVER_URL is not configured, use default value from local development
        if (!this.APPLICATION_SERVER_URL) {
            if (window.location.hostname === 'localhost') {
                this.APPLICATION_SERVER_URL = 'http://localhost:6080/';
            } else {
                this.APPLICATION_SERVER_URL =
                    'https://' + window.location.hostname + ':6443/';
            }
        }

        // If LIVEKIT_URL is not configured, use default value from local development
        if (!this.LIVEKIT_URL) {
            if (window.location.hostname === 'localhost') {
                this.LIVEKIT_URL = 'ws://localhost:7880/';
            } else {
                this.LIVEKIT_URL = 'wss://' + window.location.hostname + ':7443/';
            }
        }
    }

    async onTokenRequested(participantName: string) {
        const { token } = await this.getToken(this.roomName, participantName);
        this.token = token;
    }

    getToken(roomName: string, participantName: string): Promise<any> {
        try {
            return lastValueFrom(
                this.httpClient.post<any>(this.APPLICATION_SERVER_URL + 'token', {
                    roomName,
                    participantName,
                })
            );
        } catch (error: any) {
            if (error.status === 404) {
                throw {
                    status: error.status,
                    message: 'Cannot connect with backend. ' + error.url + ' not found',
                };
            }
            throw error;
        }
    }
}

For a step-by-step tutorial on how to replace the activities template with just a few lines of code, check out our comprehensive guide: Customizing the Activities Panel.

Metadata

Index

Properties

Constructor

constructor(template: TemplateRef, viewContainer: ViewContainerRef)
Parameters :
Name Type Optional
template TemplateRef<any> No
viewContainer ViewContainerRef No

Properties

Public template
Type : TemplateRef<any>
Public viewContainer
Type : ViewContainerRef

results matching ""

    No results matching ""