openvidu-components: Updated ports and configured urls
This commit is contained in:
parent
d4271544d3
commit
3b69def2ef
File diff suppressed because it is too large
Load Diff
@ -2,11 +2,10 @@
|
|||||||
"name": "openvidu-additional-panels",
|
"name": "openvidu-additional-panels",
|
||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"start": "ng serve",
|
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -9,7 +9,6 @@ import {
|
|||||||
ApiDirectiveModule,
|
ApiDirectiveModule,
|
||||||
OpenViduAngularDirectiveModule,
|
OpenViduAngularDirectiveModule,
|
||||||
} from 'openvidu-angular';
|
} from 'openvidu-angular';
|
||||||
import { environment } from 'src/environments/environment';
|
|
||||||
|
|
||||||
import { MatIcon } from '@angular/material/icon';
|
import { MatIcon } from '@angular/material/icon';
|
||||||
import { MatIconButton } from '@angular/material/button';
|
import { MatIconButton } from '@angular/material/button';
|
||||||
@ -63,9 +62,10 @@ import { CommonModule } from '@angular/common';
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
// Define the URL of the application server
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = '';
|
||||||
|
|
||||||
// Define the name of the room and initialize the token variable
|
// Define the name of the room and initialize the token variable
|
||||||
roomName = 'additional-panels';
|
roomName = 'additional-panels';
|
||||||
@ -78,12 +78,35 @@ export class AppComponent {
|
|||||||
constructor(
|
constructor(
|
||||||
private httpClient: HttpClient,
|
private httpClient: HttpClient,
|
||||||
private panelService: PanelService
|
private panelService: PanelService
|
||||||
) {}
|
) {
|
||||||
|
this.configureUrls();
|
||||||
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
this.subscribeToPanelToggling();
|
this.subscribeToPanelToggling();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private 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/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Function to request a token when a participant joins the room
|
// Function to request a token when a participant joins the room
|
||||||
async onTokenRequested(participantName: any) {
|
async onTokenRequested(participantName: any) {
|
||||||
const { token } = await this.getToken(this.roomName, participantName);
|
const { token } = await this.getToken(this.roomName, participantName);
|
||||||
@ -108,10 +131,10 @@ export class AppComponent {
|
|||||||
try {
|
try {
|
||||||
// Send a POST request to the server to obtain a token
|
// Send a POST request to the server to obtain a token
|
||||||
return lastValueFrom(
|
return lastValueFrom(
|
||||||
this.httpClient.post<any>(
|
this.httpClient.post<any>(this.APPLICATION_SERVER_URL + 'token', {
|
||||||
this.APPLICATION_SERVER_URL + 'token',
|
roomName,
|
||||||
{ roomName, participantName }
|
participantName,
|
||||||
)
|
})
|
||||||
);
|
);
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
// Handle errors, e.g., if the server is not reachable
|
// Handle errors, e.g., if the server is not reachable
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -4,8 +4,6 @@
|
|||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -3,10 +3,10 @@
|
|||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -3,10 +3,10 @@
|
|||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -1,40 +1,70 @@
|
|||||||
import { HttpClient } from "@angular/common/http";
|
import { HttpClient } from '@angular/common/http';
|
||||||
import { Component } from "@angular/core";
|
import { Component } from '@angular/core';
|
||||||
import { lastValueFrom } from "rxjs";
|
import { lastValueFrom } from 'rxjs';
|
||||||
import { environment } from 'src/environments/environment';
|
import { environment } from 'src/environments/environment';
|
||||||
import { OpenViduAngularModule, ApiDirectiveModule, OpenViduAngularDirectiveModule } from "openvidu-angular";
|
import {
|
||||||
|
OpenViduAngularModule,
|
||||||
|
ApiDirectiveModule,
|
||||||
|
OpenViduAngularDirectiveModule,
|
||||||
|
} from 'openvidu-angular';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: "app-root",
|
selector: 'app-root',
|
||||||
template: `
|
template: `
|
||||||
<ov-videoconference
|
<ov-videoconference
|
||||||
[token]="token"
|
[token]="token"
|
||||||
[livekitUrl]="LIVEKIT_URL"
|
[livekitUrl]="LIVEKIT_URL"
|
||||||
[toolbarRecordingButton]="false"
|
[toolbarRecordingButton]="false"
|
||||||
[toolbarDisplayRoomName]="false"
|
[toolbarDisplayRoomName]="false"
|
||||||
(onTokenRequested)="onTokenRequested($event)">
|
(onTokenRequested)="onTokenRequested($event)"
|
||||||
|
>
|
||||||
<!-- Custom activities panel -->
|
<!-- Custom activities panel -->
|
||||||
<div *ovActivitiesPanel id="my-panel">
|
<div *ovActivitiesPanel id="my-panel">
|
||||||
<h3>ACTIVITIES</h3>
|
<h3>ACTIVITIES</h3>
|
||||||
<div>
|
<div>CUSTOM ACTIVITIES</div>
|
||||||
CUSTOM ACTIVITIES
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</ov-videoconference>
|
</ov-videoconference>
|
||||||
`,
|
`,
|
||||||
styleUrls: ['./app.component.scss'],
|
styleUrls: ['./app.component.scss'],
|
||||||
standalone: true,
|
standalone: true,
|
||||||
imports: [OpenViduAngularModule, ApiDirectiveModule, OpenViduAngularDirectiveModule]
|
imports: [
|
||||||
|
OpenViduAngularModule,
|
||||||
|
ApiDirectiveModule,
|
||||||
|
OpenViduAngularDirectiveModule,
|
||||||
|
],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
APPLICATION_SERVER_URL = '';
|
||||||
roomName = "custom-activities-panel";
|
LIVEKIT_URL = '';
|
||||||
|
roomName = 'custom-activities-panel';
|
||||||
token!: string;
|
token!: string;
|
||||||
|
|
||||||
constructor(private httpClient: HttpClient) { }
|
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) {
|
async onTokenRequested(participantName: string) {
|
||||||
const { token } = await this.getToken(this.roomName, participantName);
|
const { token } = await this.getToken(this.roomName, participantName);
|
||||||
@ -43,10 +73,18 @@ export class AppComponent {
|
|||||||
|
|
||||||
getToken(roomName: string, participantName: string): Promise<any> {
|
getToken(roomName: string, participantName: string): Promise<any> {
|
||||||
try {
|
try {
|
||||||
return lastValueFrom(this.httpClient.post<any>(this.APPLICATION_SERVER_URL + 'token', { roomName, participantName }));
|
return lastValueFrom(
|
||||||
|
this.httpClient.post<any>(this.APPLICATION_SERVER_URL + 'token', {
|
||||||
|
roomName,
|
||||||
|
participantName,
|
||||||
|
})
|
||||||
|
);
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
if (error.status === 404) {
|
if (error.status === 404) {
|
||||||
throw { status: error.status, message: 'Cannot connect with backend. ' + error.url + ' not found' };
|
throw {
|
||||||
|
status: error.status,
|
||||||
|
message: 'Cannot connect with backend. ' + error.url + ' not found',
|
||||||
|
};
|
||||||
}
|
}
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
livekitUrl: ''
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,18 +1,3 @@
|
|||||||
// This file can be replaced during build by using the `fileReplacements` array.
|
|
||||||
// `ng build` replaces `environment.ts` with `environment.prod.ts`.
|
|
||||||
// The list of file replacements can be found in `angular.json`.
|
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/'
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* For easier debugging in development mode, you can import the following file
|
|
||||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
||||||
*
|
|
||||||
* This import should be commented out in production mode because it will have a negative impact
|
|
||||||
* on performance if an error is thrown.
|
|
||||||
*/
|
|
||||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -3,10 +3,10 @@
|
|||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -51,9 +51,10 @@ import { environment } from 'src/environments/environment';
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
// Define the URL of the application server
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = '';
|
||||||
|
|
||||||
// Define the name of the room and initialize the token variable
|
// Define the name of the room and initialize the token variable
|
||||||
roomName = 'chat-panel-directive-example';
|
roomName = 'chat-panel-directive-example';
|
||||||
@ -63,7 +64,30 @@ export class AppComponent {
|
|||||||
constructor(
|
constructor(
|
||||||
private httpClient: HttpClient,
|
private httpClient: HttpClient,
|
||||||
private participantService: ParticipantService
|
private participantService: ParticipantService
|
||||||
) {}
|
) {
|
||||||
|
this.configureUrls();
|
||||||
|
}
|
||||||
|
|
||||||
|
private 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/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Function to request a token when a participant joins the room
|
// Function to request a token when a participant joins the room
|
||||||
async onTokenRequested(participantName: string) {
|
async onTokenRequested(participantName: string) {
|
||||||
@ -105,13 +129,10 @@ export class AppComponent {
|
|||||||
try {
|
try {
|
||||||
// Send a POST request to the server to obtain a token
|
// Send a POST request to the server to obtain a token
|
||||||
return lastValueFrom(
|
return lastValueFrom(
|
||||||
this.httpClient.post<any>(
|
this.httpClient.post<any>(this.APPLICATION_SERVER_URL + 'token', {
|
||||||
this.APPLICATION_SERVER_URL + 'token',
|
|
||||||
{
|
|
||||||
roomName,
|
roomName,
|
||||||
participantName,
|
participantName,
|
||||||
}
|
})
|
||||||
)
|
|
||||||
);
|
);
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
// Handle errors, e.g., if the server is not reachable
|
// Handle errors, e.g., if the server is not reachable
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
livekitUrl: '',
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,18 +1,3 @@
|
|||||||
// This file can be replaced during build by using the `fileReplacements` array.
|
|
||||||
// `ng build` replaces `environment.ts` with `environment.prod.ts`.
|
|
||||||
// The list of file replacements can be found in `angular.json`.
|
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* For easier debugging in development mode, you can import the following file
|
|
||||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
||||||
*
|
|
||||||
* This import should be commented out in production mode because it will have a negative impact
|
|
||||||
* on performance if an error is thrown.
|
|
||||||
*/
|
|
||||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -3,10 +3,10 @@
|
|||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -62,9 +62,10 @@ import { NgClass } from '@angular/common';
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class AppComponent implements OnInit, OnDestroy {
|
export class AppComponent implements OnInit, OnDestroy {
|
||||||
// Define the URL of the application server
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = '';
|
||||||
|
|
||||||
// Define the name of the room and initialize the token variable
|
// Define the name of the room and initialize the token variable
|
||||||
roomName = 'custom-layout';
|
roomName = 'custom-layout';
|
||||||
@ -79,7 +80,30 @@ export class AppComponent implements OnInit, OnDestroy {
|
|||||||
constructor(
|
constructor(
|
||||||
private httpClient: HttpClient,
|
private httpClient: HttpClient,
|
||||||
private participantService: ParticipantService
|
private participantService: ParticipantService
|
||||||
) {}
|
) {
|
||||||
|
this.configureUrls();
|
||||||
|
}
|
||||||
|
|
||||||
|
private 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/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
// Subscribe to participants' updates
|
// Subscribe to participants' updates
|
||||||
@ -118,13 +142,10 @@ export class AppComponent implements OnInit, OnDestroy {
|
|||||||
try {
|
try {
|
||||||
// Send a POST request to the server to obtain a token
|
// Send a POST request to the server to obtain a token
|
||||||
return lastValueFrom(
|
return lastValueFrom(
|
||||||
this.httpClient.post<any>(
|
this.httpClient.post<any>(this.APPLICATION_SERVER_URL + 'token', {
|
||||||
this.APPLICATION_SERVER_URL + 'token',
|
|
||||||
{
|
|
||||||
roomName,
|
roomName,
|
||||||
participantName,
|
participantName,
|
||||||
}
|
})
|
||||||
)
|
|
||||||
);
|
);
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
// Handle errors, e.g., if the server is not reachable
|
// Handle errors, e.g., if the server is not reachable
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
livekitUrl: '',
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,18 +1,3 @@
|
|||||||
// This file can be replaced during build by using the `fileReplacements` array.
|
|
||||||
// `ng build` replaces `environment.ts` with `environment.prod.ts`.
|
|
||||||
// The list of file replacements can be found in `angular.json`.
|
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* For easier debugging in development mode, you can import the following file
|
|
||||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
||||||
*
|
|
||||||
* This import should be commented out in production mode because it will have a negative impact
|
|
||||||
* on performance if an error is thrown.
|
|
||||||
*/
|
|
||||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -3,10 +3,10 @@
|
|||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -44,15 +44,39 @@ import {
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
// Define the URL of the application server
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = '';
|
||||||
|
|
||||||
// Define the name of the room and initialize the token variable
|
// Define the name of the room and initialize the token variable
|
||||||
roomName = 'custom-panels';
|
roomName = 'custom-panels';
|
||||||
token!: string;
|
token!: string;
|
||||||
|
|
||||||
constructor(private httpClient: HttpClient) {}
|
constructor(private httpClient: HttpClient) {
|
||||||
|
this.configureUrls();
|
||||||
|
}
|
||||||
|
|
||||||
|
private 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/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Function to request a token when a participant joins the room
|
// Function to request a token when a participant joins the room
|
||||||
async onTokenRequested(participantName: string) {
|
async onTokenRequested(participantName: string) {
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
livekitUrl: '',
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,18 +1,3 @@
|
|||||||
// This file can be replaced during build by using the `fileReplacements` array.
|
|
||||||
// `ng build` replaces `environment.ts` with `environment.prod.ts`.
|
|
||||||
// The list of file replacements can be found in `angular.json`.
|
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* For easier debugging in development mode, you can import the following file
|
|
||||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
||||||
*
|
|
||||||
* This import should be commented out in production mode because it will have a negative impact
|
|
||||||
* on performance if an error is thrown.
|
|
||||||
*/
|
|
||||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -3,10 +3,10 @@
|
|||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -45,9 +45,10 @@ import { environment } from 'src/environments/environment';
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
// Define the URL of the application server
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = '';
|
||||||
|
|
||||||
// Define the name of the room and initialize the token variable
|
// Define the name of the room and initialize the token variable
|
||||||
roomName = 'participant-panel-item-elements';
|
roomName = 'participant-panel-item-elements';
|
||||||
@ -59,7 +60,30 @@ export class AppComponent {
|
|||||||
constructor(
|
constructor(
|
||||||
private httpClient: HttpClient,
|
private httpClient: HttpClient,
|
||||||
private openviduService: OpenViduService
|
private openviduService: OpenViduService
|
||||||
) {}
|
) {
|
||||||
|
this.configureUrls();
|
||||||
|
}
|
||||||
|
|
||||||
|
private 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/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Function to request a token when a participant joins the room
|
// Function to request a token when a participant joins the room
|
||||||
async onTokenRequested(participantName: string) {
|
async onTokenRequested(participantName: string) {
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
livekitUrl: '',
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,18 +1,3 @@
|
|||||||
// This file can be replaced during build by using the `fileReplacements` array.
|
|
||||||
// `ng build` replaces `environment.ts` with `environment.prod.ts`.
|
|
||||||
// The list of file replacements can be found in `angular.json`.
|
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* For easier debugging in development mode, you can import the following file
|
|
||||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
||||||
*
|
|
||||||
* This import should be commented out in production mode because it will have a negative impact
|
|
||||||
* on performance if an error is thrown.
|
|
||||||
*/
|
|
||||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -3,10 +3,10 @@
|
|||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -52,15 +52,39 @@ import {
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
// Define the URL of the application server
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = '';
|
||||||
|
|
||||||
// Define the name of the room and initialize the token variable
|
// Define the name of the room and initialize the token variable
|
||||||
roomName = 'participant-panel-item';
|
roomName = 'participant-panel-item';
|
||||||
token!: string;
|
token!: string;
|
||||||
|
|
||||||
constructor(private httpClient: HttpClient) {}
|
constructor(private httpClient: HttpClient) {
|
||||||
|
this.configureUrls();
|
||||||
|
}
|
||||||
|
|
||||||
|
private 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/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Function to request a token when a participant joins the room
|
// Function to request a token when a participant joins the room
|
||||||
async onTokenRequested(participantName: string) {
|
async onTokenRequested(participantName: string) {
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
livekitUrl: '',
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,18 +1,3 @@
|
|||||||
// This file can be replaced during build by using the `fileReplacements` array.
|
|
||||||
// `ng build` replaces `environment.ts` with `environment.prod.ts`.
|
|
||||||
// The list of file replacements can be found in `angular.json`.
|
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* For easier debugging in development mode, you can import the following file
|
|
||||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
||||||
*
|
|
||||||
* This import should be commented out in production mode because it will have a negative impact
|
|
||||||
* on performance if an error is thrown.
|
|
||||||
*/
|
|
||||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -3,10 +3,10 @@
|
|||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -42,9 +42,10 @@ import { environment } from 'src/environments/environment';
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class AppComponent implements OnInit, OnDestroy {
|
export class AppComponent implements OnInit, OnDestroy {
|
||||||
// Define the URL of the application server
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = '';
|
||||||
|
|
||||||
// Define the name of the room and initialize the token variable
|
// Define the name of the room and initialize the token variable
|
||||||
roomName = 'custom-participants-panel';
|
roomName = 'custom-participants-panel';
|
||||||
@ -59,7 +60,30 @@ export class AppComponent implements OnInit, OnDestroy {
|
|||||||
constructor(
|
constructor(
|
||||||
private httpClient: HttpClient,
|
private httpClient: HttpClient,
|
||||||
private participantService: ParticipantService
|
private participantService: ParticipantService
|
||||||
) {}
|
) {
|
||||||
|
this.configureUrls();
|
||||||
|
}
|
||||||
|
|
||||||
|
private 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/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Subscribes to updates for local and remote participants.
|
// Subscribes to updates for local and remote participants.
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
livekitUrl: '',
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,18 +1,3 @@
|
|||||||
// This file can be replaced during build by using the `fileReplacements` array.
|
|
||||||
// `ng build` replaces `environment.ts` with `environment.prod.ts`.
|
|
||||||
// The list of file replacements can be found in `angular.json`.
|
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* For easier debugging in development mode, you can import the following file
|
|
||||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
||||||
*
|
|
||||||
* This import should be commented out in production mode because it will have a negative impact
|
|
||||||
* on performance if an error is thrown.
|
|
||||||
*/
|
|
||||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -3,10 +3,10 @@
|
|||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -2,7 +2,6 @@ import { HttpClient } from '@angular/common/http';
|
|||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
import { lastValueFrom } from 'rxjs';
|
import { lastValueFrom } from 'rxjs';
|
||||||
|
|
||||||
import { environment } from 'src/environments/environment';
|
|
||||||
import {
|
import {
|
||||||
OpenViduAngularModule,
|
OpenViduAngularModule,
|
||||||
ApiDirectiveModule,
|
ApiDirectiveModule,
|
||||||
@ -37,15 +36,39 @@ import {
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
// Define the URL of the application server
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = '';
|
||||||
|
|
||||||
// Define the name of the room and initialize the token variable
|
// Define the name of the room and initialize the token variable
|
||||||
roomName = 'custom-stream';
|
roomName = 'custom-stream';
|
||||||
token!: string;
|
token!: string;
|
||||||
|
|
||||||
constructor(private httpClient: HttpClient) {}
|
constructor(private httpClient: HttpClient) {
|
||||||
|
this.configureUrls();
|
||||||
|
}
|
||||||
|
|
||||||
|
private 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/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Function to request a token when a participant joins the room
|
// Function to request a token when a participant joins the room
|
||||||
async onTokenRequested(participantName: string) {
|
async onTokenRequested(participantName: string) {
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
livekitUrl: '',
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,18 +1,3 @@
|
|||||||
// This file can be replaced during build by using the `fileReplacements` array.
|
|
||||||
// `ng build` replaces `environment.ts` with `environment.prod.ts`.
|
|
||||||
// The list of file replacements can be found in `angular.json`.
|
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* For easier debugging in development mode, you can import the following file
|
|
||||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
||||||
*
|
|
||||||
* This import should be commented out in production mode because it will have a negative impact
|
|
||||||
* on performance if an error is thrown.
|
|
||||||
*/
|
|
||||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -3,10 +3,10 @@
|
|||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -32,9 +32,11 @@ import { environment } from 'src/environments/environment';
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
// The URL of the application server.
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
|
||||||
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = '';
|
||||||
// The name of the room.
|
// The name of the room.
|
||||||
roomName = 'custom-toolbar';
|
roomName = 'custom-toolbar';
|
||||||
|
|
||||||
@ -44,7 +46,30 @@ export class AppComponent {
|
|||||||
constructor(
|
constructor(
|
||||||
private httpClient: HttpClient,
|
private httpClient: HttpClient,
|
||||||
private participantService: ParticipantService
|
private participantService: ParticipantService
|
||||||
) {}
|
) {
|
||||||
|
this.configureUrls();
|
||||||
|
}
|
||||||
|
|
||||||
|
private 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/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Called when a token is requested for a participant.
|
// Called when a token is requested for a participant.
|
||||||
async onTokenRequested(participantName: string) {
|
async onTokenRequested(participantName: string) {
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
livekitUrl: '',
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,18 +1,3 @@
|
|||||||
// This file can be replaced during build by using the `fileReplacements` array.
|
|
||||||
// `ng build` replaces `environment.ts` with `environment.prod.ts`.
|
|
||||||
// The list of file replacements can be found in `angular.json`.
|
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* For easier debugging in development mode, you can import the following file
|
|
||||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
||||||
*
|
|
||||||
* This import should be commented out in production mode because it will have a negative impact
|
|
||||||
* on performance if an error is thrown.
|
|
||||||
*/
|
|
||||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
|
||||||
|
|||||||
848
openvidu-components/openvidu-custom-ui/package-lock.json
generated
848
openvidu-components/openvidu-custom-ui/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -3,10 +3,10 @@
|
|||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -2,7 +2,6 @@ import { HttpClient } from '@angular/common/http';
|
|||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
import { lastValueFrom } from 'rxjs';
|
import { lastValueFrom } from 'rxjs';
|
||||||
|
|
||||||
import { environment } from 'src/environments/environment';
|
|
||||||
import { OpenViduAngularModule, ApiDirectiveModule } from 'openvidu-angular';
|
import { OpenViduAngularModule, ApiDirectiveModule } from 'openvidu-angular';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -14,9 +13,11 @@ import { OpenViduAngularModule, ApiDirectiveModule } from 'openvidu-angular';
|
|||||||
imports: [OpenViduAngularModule, ApiDirectiveModule],
|
imports: [OpenViduAngularModule, ApiDirectiveModule],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
// The URL of the application server.
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
|
||||||
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = '';
|
||||||
|
|
||||||
// The name of the room to join.
|
// The name of the room to join.
|
||||||
roomName = 'openvidu-custom-ui';
|
roomName = 'openvidu-custom-ui';
|
||||||
@ -25,7 +26,30 @@ export class AppComponent {
|
|||||||
token!: string;
|
token!: string;
|
||||||
|
|
||||||
// Creates a new instance of the AppComponent class.
|
// Creates a new instance of the AppComponent class.
|
||||||
constructor(private httpClient: HttpClient) {}
|
constructor(private httpClient: HttpClient) {
|
||||||
|
this.configureUrls();
|
||||||
|
}
|
||||||
|
|
||||||
|
private 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/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Requests a token to join the room with the given participant name.
|
// Requests a token to join the room with the given participant name.
|
||||||
async onTokenRequested(participantName: string) {
|
async onTokenRequested(participantName: string) {
|
||||||
|
|||||||
@ -0,0 +1,55 @@
|
|||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import { Component } from '@angular/core';
|
||||||
|
import { lastValueFrom } from 'rxjs';
|
||||||
|
|
||||||
|
import { environment } from 'src/environments/environment';
|
||||||
|
import { OpenViduAngularModule, ApiDirectiveModule } from 'openvidu-angular';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-root',
|
||||||
|
template:
|
||||||
|
'<ov-videoconference [token]="token" [livekitUrl]="LIVEKIT_URL" (onTokenRequested)="onTokenRequested($event)"></ov-videoconference>',
|
||||||
|
styles: [''],
|
||||||
|
standalone: true,
|
||||||
|
imports: [OpenViduAngularModule, ApiDirectiveModule],
|
||||||
|
})
|
||||||
|
export class AppComponent {
|
||||||
|
// The URL of the application server.
|
||||||
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = environment.livekitUrl;
|
||||||
|
|
||||||
|
// The name of the room to join.
|
||||||
|
roomName = 'openvidu-custom-ui';
|
||||||
|
|
||||||
|
// The token used to join the room.
|
||||||
|
token!: string;
|
||||||
|
|
||||||
|
// Creates a new instance of the AppComponent class.
|
||||||
|
constructor(private httpClient: HttpClient) {}
|
||||||
|
|
||||||
|
// Requests a token to join the room with the given participant name.
|
||||||
|
async onTokenRequested(participantName: string) {
|
||||||
|
const { token } = await this.getToken(this.roomName, participantName);
|
||||||
|
this.token = token;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Retrieves a token to join the room with the given name and participant name.
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,5 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
livekitUrl: '',
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,18 +1,3 @@
|
|||||||
// This file can be replaced during build by using the `fileReplacements` array.
|
|
||||||
// `ng build` replaces `environment.ts` with `environment.prod.ts`.
|
|
||||||
// The list of file replacements can be found in `angular.json`.
|
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* For easier debugging in development mode, you can import the following file
|
|
||||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
||||||
*
|
|
||||||
* This import should be commented out in production mode because it will have a negative impact
|
|
||||||
* on performance if an error is thrown.
|
|
||||||
*/
|
|
||||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
|
||||||
|
|||||||
1030
openvidu-components/openvidu-toggle-hand/package-lock.json
generated
1030
openvidu-components/openvidu-toggle-hand/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -2,10 +2,9 @@
|
|||||||
"name": "openvidu-toggle-hand",
|
"name": "openvidu-toggle-hand",
|
||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"start": "ng serve --configuration development",
|
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -45,9 +45,11 @@ enum DataTopicApp {
|
|||||||
imports: [OpenViduAngularModule, ApiDirectiveModule, OpenViduAngularDirectiveModule, MatIconButton, MatIcon]
|
imports: [OpenViduAngularModule, ApiDirectiveModule, OpenViduAngularDirectiveModule, MatIconButton, MatIcon]
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
// The URL of the application server.
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
|
||||||
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = '';
|
||||||
|
|
||||||
// The token used to connect to the OpenVidu session.
|
// The token used to connect to the OpenVidu session.
|
||||||
token!: string;
|
token!: string;
|
||||||
@ -58,7 +60,29 @@ export class AppComponent {
|
|||||||
// The name of the OpenVidu room.
|
// The name of the OpenVidu room.
|
||||||
private roomName = 'openvidu-toggle-hand';
|
private roomName = 'openvidu-toggle-hand';
|
||||||
|
|
||||||
constructor(private httpClient: HttpClient, private participantService: ParticipantService) {}
|
constructor(private httpClient: HttpClient, private participantService: ParticipantService) {
|
||||||
|
this.configureUrls();
|
||||||
|
}
|
||||||
|
|
||||||
|
private 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/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Requests a token from the application server for the given participant name.
|
// Requests a token from the application server for the given participant name.
|
||||||
async onTokenRequested(participantName: string) {
|
async onTokenRequested(participantName: string) {
|
||||||
|
|||||||
@ -0,0 +1,113 @@
|
|||||||
|
import { animate, style, transition, trigger } from '@angular/animations';
|
||||||
|
import { HttpClient } from '@angular/common/http';
|
||||||
|
import { Component } from '@angular/core';
|
||||||
|
import { lastValueFrom } from 'rxjs';
|
||||||
|
|
||||||
|
import {
|
||||||
|
DataPacket_Kind,
|
||||||
|
DataPublishOptions,
|
||||||
|
ParticipantService,
|
||||||
|
RemoteParticipant,
|
||||||
|
Room,
|
||||||
|
RoomEvent,
|
||||||
|
OpenViduAngularModule,
|
||||||
|
ApiDirectiveModule,
|
||||||
|
OpenViduAngularDirectiveModule
|
||||||
|
} from 'openvidu-angular';
|
||||||
|
import { ParticipantAppModel } from './models/participant-app.model';
|
||||||
|
|
||||||
|
import { environment } from 'src/environments/environment';
|
||||||
|
|
||||||
|
import { MatIcon } from '@angular/material/icon';
|
||||||
|
import { MatIconButton } from '@angular/material/button';
|
||||||
|
|
||||||
|
enum DataTopicApp {
|
||||||
|
HAND_TOGGLE = 'handToggle'
|
||||||
|
}
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-root',
|
||||||
|
templateUrl: './app.component.html',
|
||||||
|
styleUrls: ['./app.component.css'],
|
||||||
|
animations: [
|
||||||
|
trigger('inOutHandAnimation', [
|
||||||
|
transition(':enter', [
|
||||||
|
style({ opacity: 0, transform: 'translateY(-100%)' }),
|
||||||
|
animate('300ms ease-in-out', style({ opacity: 1, transform: 'translateY(0)' }))
|
||||||
|
]),
|
||||||
|
transition(':leave', [
|
||||||
|
style({ opacity: 1, transform: 'translateY(0)' }),
|
||||||
|
animate('300ms ease-in-out', style({ opacity: 0, transform: 'translateY(-100%)' }))
|
||||||
|
])
|
||||||
|
])
|
||||||
|
],
|
||||||
|
standalone: true,
|
||||||
|
imports: [OpenViduAngularModule, ApiDirectiveModule, OpenViduAngularDirectiveModule, MatIconButton, MatIcon]
|
||||||
|
})
|
||||||
|
export class AppComponent {
|
||||||
|
// The URL of the application server.
|
||||||
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = environment.livekitUrl;
|
||||||
|
|
||||||
|
// The token used to connect to the OpenVidu session.
|
||||||
|
token!: string;
|
||||||
|
|
||||||
|
// Whether the local participant has raised their hand.
|
||||||
|
hasHandRaised: boolean = false;
|
||||||
|
|
||||||
|
// The name of the OpenVidu room.
|
||||||
|
private roomName = 'openvidu-toggle-hand';
|
||||||
|
|
||||||
|
constructor(private httpClient: HttpClient, private participantService: ParticipantService) {}
|
||||||
|
|
||||||
|
// Requests a token from the application server for the given participant name.
|
||||||
|
async onTokenRequested(participantName: string) {
|
||||||
|
const { token } = await this.getToken(this.roomName, participantName);
|
||||||
|
this.token = token;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handles the reception of a remote hand-raising event.
|
||||||
|
handleRemoteHand(room: Room) {
|
||||||
|
// Subscribe to hand toggling events from other participants
|
||||||
|
room.on(RoomEvent.DataReceived, (payload: Uint8Array, participant?: RemoteParticipant, _?: DataPacket_Kind, topic?: string) => {
|
||||||
|
if (topic === DataTopicApp.HAND_TOGGLE) {
|
||||||
|
const p = this.participantService.getRemoteParticipantBySid(participant.sid);
|
||||||
|
if (p) {
|
||||||
|
(<ParticipantAppModel>p).toggleHandRaised();
|
||||||
|
}
|
||||||
|
this.participantService.updateRemoteParticipants();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handles the local hand-raising event.
|
||||||
|
async handleLocalHand() {
|
||||||
|
// Get local participant with ParticipantService
|
||||||
|
const participant = <ParticipantAppModel>this.participantService.getLocalParticipant();
|
||||||
|
|
||||||
|
// Toggle the participant hand with the method we wil add in our ParticipantAppModel
|
||||||
|
participant.toggleHandRaised();
|
||||||
|
|
||||||
|
// Refresh the local participant object for others component and services
|
||||||
|
this.participantService.updateLocalParticipant();
|
||||||
|
|
||||||
|
// Send a signal with the new value to others participant using the openvidu-browser signal
|
||||||
|
const strData = JSON.stringify({});
|
||||||
|
const data: Uint8Array = new TextEncoder().encode(strData);
|
||||||
|
const options: DataPublishOptions = { topic: DataTopicApp.HAND_TOGGLE };
|
||||||
|
|
||||||
|
await this.participantService.publishData(data, options);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Requests a token from the application server for the given room and participant names.
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,5 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
livekitUrl: ''
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,18 +1,3 @@
|
|||||||
// This file can be replaced during build by using the `fileReplacements` array.
|
|
||||||
// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
|
|
||||||
// The list of file replacements can be found in `angular.json`.
|
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/'
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* For easier debugging in development mode, you can import the following file
|
|
||||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
||||||
*
|
|
||||||
* This import should be commented out in production mode because it will have a negative impact
|
|
||||||
* on performance if an error is thrown.
|
|
||||||
*/
|
|
||||||
// import 'zone.js/dist/zone-error'; // Included with Angular CLI.
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -2,11 +2,10 @@
|
|||||||
"name": "openvidu-toolbar-buttons",
|
"name": "openvidu-toolbar-buttons",
|
||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"start": "ng serve",
|
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -41,9 +41,11 @@ import { MatIconButton } from '@angular/material/button';
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
// The URL of the application server.
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
|
||||||
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = '';
|
||||||
|
|
||||||
// The name of the room for the video conference.
|
// The name of the room for the video conference.
|
||||||
roomName = 'toolbar-additionalbtn';
|
roomName = 'toolbar-additionalbtn';
|
||||||
@ -54,7 +56,30 @@ export class AppComponent {
|
|||||||
constructor(
|
constructor(
|
||||||
private httpClient: HttpClient,
|
private httpClient: HttpClient,
|
||||||
private participantService: ParticipantService
|
private participantService: ParticipantService
|
||||||
) {}
|
) {
|
||||||
|
this.configureUrls();
|
||||||
|
}
|
||||||
|
|
||||||
|
private 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/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Called when the token is requested.
|
// Called when the token is requested.
|
||||||
async onTokenRequested(participantName: string) {
|
async onTokenRequested(participantName: string) {
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
livekitUrl: '',
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,18 +1,3 @@
|
|||||||
// This file can be replaced during build by using the `fileReplacements` array.
|
|
||||||
// `ng build` replaces `environment.ts` with `environment.prod.ts`.
|
|
||||||
// The list of file replacements can be found in `angular.json`.
|
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* For easier debugging in development mode, you can import the following file
|
|
||||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
||||||
*
|
|
||||||
* This import should be commented out in production mode because it will have a negative impact
|
|
||||||
* on performance if an error is thrown.
|
|
||||||
*/
|
|
||||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -2,11 +2,10 @@
|
|||||||
"name": "openvidu-toolbar-panel-buttons",
|
"name": "openvidu-toolbar-panel-buttons",
|
||||||
"version": "2.27.0",
|
"version": "2.27.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"start": "ng serve --port=5080 --host=0.0.0.0",
|
||||||
"start": "ng serve",
|
|
||||||
"build": "ng build",
|
"build": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"build:prod": "./node_modules/@angular/cli/bin/ng.js build --output-path ./openvidu-basic-node/public/ --configuration production"
|
"build:prod": "ng build --output-path ./openvidu-basic-node/public/ --configuration production"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -32,9 +32,11 @@ import {
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent {
|
||||||
// Set the application server URL from the environment variables
|
// For local development, leave these variables empty
|
||||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
// For production, configure them with correct URLs depending on your deployment
|
||||||
LIVEKIT_URL = environment.livekitUrl;
|
|
||||||
|
APPLICATION_SERVER_URL = '';
|
||||||
|
LIVEKIT_URL = '';
|
||||||
|
|
||||||
// Set the room name
|
// Set the room name
|
||||||
roomName = 'toolbar-additional-panel-btn';
|
roomName = 'toolbar-additional-panel-btn';
|
||||||
@ -42,7 +44,30 @@ export class AppComponent {
|
|||||||
// Initialize the token variable
|
// Initialize the token variable
|
||||||
token!: string;
|
token!: string;
|
||||||
|
|
||||||
constructor(private httpClient: HttpClient) {}
|
constructor(private httpClient: HttpClient) {
|
||||||
|
this.configureUrls();
|
||||||
|
}
|
||||||
|
|
||||||
|
private 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/';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Method to request a token for a participant
|
// Method to request a token for a participant
|
||||||
async onTokenRequested(participantName: string) {
|
async onTokenRequested(participantName: string) {
|
||||||
|
|||||||
@ -1,5 +1,3 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
applicationServerUrl: '',
|
|
||||||
livekitUrl: '',
|
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,18 +1,3 @@
|
|||||||
// This file can be replaced during build by using the `fileReplacements` array.
|
|
||||||
// `ng build` replaces `environment.ts` with `environment.prod.ts`.
|
|
||||||
// The list of file replacements can be found in `angular.json`.
|
|
||||||
|
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: false,
|
production: false,
|
||||||
applicationServerUrl: 'http://localhost:6080/',
|
|
||||||
livekitUrl: 'http://localhost:7880/',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* For easier debugging in development mode, you can import the following file
|
|
||||||
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
|
||||||
*
|
|
||||||
* This import should be commented out in production mode because it will have a negative impact
|
|
||||||
* on performance if an error is thrown.
|
|
||||||
*/
|
|
||||||
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user