Skip to content

Commit

Permalink
updated to version 3.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tommygaessler committed Apr 15, 2024
1 parent de96446 commit f2b6a9c
Show file tree
Hide file tree
Showing 7 changed files with 118 additions and 161 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,29 @@ This repo is an [Angular](https://angular.io/) app generated via the [Angular CL

To get started, clone the repo:

`$ git clone https://github.com/zoom/meetingsdk-sample-angular.git`
`$ git clone https://github.com/zoom/meetingsdk-angular-sample.git`

> To setup and run the app you will need the [Angular CLI](https://cli.angular.io).
## Setup

1. Once cloned, navigate to the `meetingsdk-sample-angular` directory:
1. Once cloned, navigate to the `meetingsdk-angular-sample` directory:

`$ cd meetingsdk-sample-angular`
`$ cd meetingsdk-angular-sample`

1. Then install the dependencies:

`$ npm install`

1. Open the `meetingsdk-sample-angular` directory in your code editor.
1. Open the `meetingsdk-angular-sample` directory in your code editor.

1. Open the `src/app/app.component.ts` file, and enter values for the variables:

**NEW:** To use the [Component View](https://developers.zoom.us/docs/meeting-sdk/web/component-view/), replace `app.component.ts` with `app-new.component.ts`. (The `leaveUrl` is not needed). Also, remove the Client View CSS styles on lines 27 and 28 in in `angular.json`.

| Variable | Description |
| -----------------------|-------------|
| authEndpoint | Required, your Meeting SDK auth endpoint that secuerly generates a Meeting SDK JWT. [Get a Meeting SDK auth endpoint here.](https://github.com/zoom/meetingsdk-sample-signature-node.js) |
| authEndpoint | Required, your Meeting SDK auth endpoint that securely generates a Meeting SDK JWT. [Get a Meeting SDK auth endpoint here.](https://github.com/zoom/meetingsdk-sample-signature-node.js) |
| sdkKey | Required, your Zoom Meeting SDK Key or Client ID for Meeting SDK app type's created after February 11, 2023. [You can get yours here](https://developers.zoom.us/docs/meeting-sdk/developer-accounts/#get-meeting-sdk-credentials). |
| meetingNumber | Required, the Zoom Meeting or webinar number. |
| passWord | Optional, meeting password. Leave as empty string if the meeting does not require a password. |
Expand Down
14 changes: 7 additions & 7 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"meetingsdk-sample-angular": {
"meetingsdk-angular-sample": {
"projectType": "application",
"schematics": {},
"root": "",
Expand Down Expand Up @@ -65,18 +65,18 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "meetingsdk-sample-angular:build"
"browserTarget": "meetingsdk-angular-sample:build"
},
"configurations": {
"production": {
"browserTarget": "meetingsdk-sample-angular:build:production"
"browserTarget": "meetingsdk-angular-sample:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "meetingsdk-sample-angular:build"
"browserTarget": "meetingsdk-angular-sample:build"
}
},
"test": {
Expand Down Expand Up @@ -113,15 +113,15 @@
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "meetingsdk-sample-angular:serve"
"devServerTarget": "meetingsdk-angular-sample:serve"
},
"configurations": {
"production": {
"devServerTarget": "meetingsdk-sample-angular:serve:production"
"devServerTarget": "meetingsdk-angular-sample:serve:production"
}
}
}
}
}},
"defaultProject": "meetingsdk-sample-angular"
"defaultProject": "meetingsdk-angular-sample"
}
2 changes: 1 addition & 1 deletion e2e/src/app.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('workspace-project App', () => {

it('should display welcome message', () => {
page.navigateTo();
expect(page.getTitleText()).toEqual('meetingsdk-sample-angular app is running!');
expect(page.getTitleText()).toEqual('meetingsdk-angular-sample app is running!');
});

afterEach(async () => {
Expand Down
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = function (config) {
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter: {
dir: require('path').join(__dirname, './coverage/meetingsdk-sample-angular'),
dir: require('path').join(__dirname, './coverage/meetingsdk-angular-sample'),
reports: ['html', 'lcovonly', 'text-summary'],
fixWebpackSourcePaths: true
},
Expand Down
Loading

0 comments on commit f2b6a9c

Please sign in to comment.