├── .eslintrc.js ├── .gitignore ├── Jenkinsfile ├── LICENSE ├── README.md ├── babel.config.js ├── development.Dockerfile ├── docker-compose.yml ├── etc └── nginx │ └── locations │ ├── https-available │ └── wazo-webrtc-demo │ └── https-enabled │ └── wazo-webrtc-demo ├── favicon.ico ├── img ├── back.jpeg ├── dawn.jpg ├── dawn.svg ├── day.jpg ├── day.svg ├── flying.png ├── icons │ ├── expand-or.svg │ ├── expand-white.svg │ ├── hangup-red.svg │ ├── hangup-white.svg │ ├── hold-blue.svg │ ├── hold-white.svg │ ├── indi-white.svg │ ├── logout-white.svg │ ├── mic-blue.svg │ ├── mic-white.svg │ ├── mute-red.svg │ ├── mute-white.svg │ ├── phone-waz.svg │ ├── phone-white.svg │ ├── reduce-or.svg │ ├── reduce-white.svg │ ├── transfer-white.svg │ ├── unhold-blue.svg │ ├── unhold-white.svg │ ├── video-waz.svg │ └── video-white.svg ├── logo-drawing.PNG ├── logo.svg ├── quote.PNG ├── wazo-logo.svg ├── wazo-platform-logo.png ├── wazo-platform-logo.svg ├── wazo-platform-square-white.png └── white-logo.svg ├── index.html ├── package.json ├── production.Dockerfile ├── screenshots └── screen1.png ├── src ├── authentication.js ├── dialer.js └── utils.js ├── styles.css ├── wazo ├── plugin.yml └── rules └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | launch.json 3 | .vscode -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/babel.config.js -------------------------------------------------------------------------------- /development.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/development.Dockerfile -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /etc/nginx/locations/https-available/wazo-webrtc-demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/etc/nginx/locations/https-available/wazo-webrtc-demo -------------------------------------------------------------------------------- /etc/nginx/locations/https-enabled/wazo-webrtc-demo: -------------------------------------------------------------------------------- 1 | ../https-available/wazo-webrtc-demo -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/back.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/back.jpeg -------------------------------------------------------------------------------- /img/dawn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/dawn.jpg -------------------------------------------------------------------------------- /img/dawn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/dawn.svg -------------------------------------------------------------------------------- /img/day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/day.jpg -------------------------------------------------------------------------------- /img/day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/day.svg -------------------------------------------------------------------------------- /img/flying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/flying.png -------------------------------------------------------------------------------- /img/icons/expand-or.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/expand-or.svg -------------------------------------------------------------------------------- /img/icons/expand-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/expand-white.svg -------------------------------------------------------------------------------- /img/icons/hangup-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/hangup-red.svg -------------------------------------------------------------------------------- /img/icons/hangup-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/hangup-white.svg -------------------------------------------------------------------------------- /img/icons/hold-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/hold-blue.svg -------------------------------------------------------------------------------- /img/icons/hold-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/hold-white.svg -------------------------------------------------------------------------------- /img/icons/indi-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/indi-white.svg -------------------------------------------------------------------------------- /img/icons/logout-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/logout-white.svg -------------------------------------------------------------------------------- /img/icons/mic-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/mic-blue.svg -------------------------------------------------------------------------------- /img/icons/mic-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/mic-white.svg -------------------------------------------------------------------------------- /img/icons/mute-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/mute-red.svg -------------------------------------------------------------------------------- /img/icons/mute-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/mute-white.svg -------------------------------------------------------------------------------- /img/icons/phone-waz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/phone-waz.svg -------------------------------------------------------------------------------- /img/icons/phone-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/phone-white.svg -------------------------------------------------------------------------------- /img/icons/reduce-or.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/reduce-or.svg -------------------------------------------------------------------------------- /img/icons/reduce-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/reduce-white.svg -------------------------------------------------------------------------------- /img/icons/transfer-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/transfer-white.svg -------------------------------------------------------------------------------- /img/icons/unhold-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/unhold-blue.svg -------------------------------------------------------------------------------- /img/icons/unhold-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/unhold-white.svg -------------------------------------------------------------------------------- /img/icons/video-waz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/video-waz.svg -------------------------------------------------------------------------------- /img/icons/video-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/icons/video-white.svg -------------------------------------------------------------------------------- /img/logo-drawing.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/logo-drawing.PNG -------------------------------------------------------------------------------- /img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/logo.svg -------------------------------------------------------------------------------- /img/quote.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/quote.PNG -------------------------------------------------------------------------------- /img/wazo-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/wazo-logo.svg -------------------------------------------------------------------------------- /img/wazo-platform-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/wazo-platform-logo.png -------------------------------------------------------------------------------- /img/wazo-platform-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/wazo-platform-logo.svg -------------------------------------------------------------------------------- /img/wazo-platform-square-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/wazo-platform-square-white.png -------------------------------------------------------------------------------- /img/white-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/img/white-logo.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/package.json -------------------------------------------------------------------------------- /production.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/production.Dockerfile -------------------------------------------------------------------------------- /screenshots/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/screenshots/screen1.png -------------------------------------------------------------------------------- /src/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/src/authentication.js -------------------------------------------------------------------------------- /src/dialer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/src/dialer.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/src/utils.js -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/styles.css -------------------------------------------------------------------------------- /wazo/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/wazo/plugin.yml -------------------------------------------------------------------------------- /wazo/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/wazo/rules -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wazo-platform/wazo-webrtc-demo/HEAD/yarn.lock --------------------------------------------------------------------------------