+'use strict';
+
(() => {
const io = require('socket.io-client');
+ const Peers = require('./peers');
+ const Media = require('./media');
const internals = {
async joinAudioCall(data) {
+ internals.tada = data.tada; // Keeping for fun
+
try {
- const mediaStream = await navigator.mediaDevices.getUserMedia({ audio: true });
+ const mediaStream = await Media.start();
internals.socket = io(internals.kSocketUrl, {
transports: ['websocket']
internals.socket.on('addPeer', function(data) {
console.log(data);
- internals.peers++;
- console.log(`There are now ${internals.peers} participants`);
+ Peers.add('id-'+Peers.count(), internals.tada);
+ console.log(`There are now ${Peers.count()} participants`);
});
internals.socket.on('removePeer', function() {
- internals.peers--;
- console.log(`There are now ${internals.peers} participants`);
+ Peers.remove('id-'+(Peers.count() - 1)); // This is only for testing, don't use count to remove ids.
+ console.log(`There are now ${Peers.count()} participants`);
});
-
- internals.createAudioElement(data.tada);
}
catch (err) {
action: 'error'
});
internals.port.disconnect();
- internals.createAudioElement(data.tada);
}
},
hangUp() {
- document.querySelectorAll('.junction-call-audio').forEach((audioElement) => audioElement.remove());
+
+ Peers.reset();
+ Media.stop();
internals.socket.close();
internals.port.disconnect();
- },
-
- createAudioElement(source, type = 'audio/wav') {
-
- const audioElement = document.createElement('audio');
- audioElement.setAttribute('class', 'junction-call-audio');
- audioElement.src = source;
- audioElement.autoplay = 'autoplay';
- audioElement.type = type;
- document.querySelector('body').appendChild(audioElement);
}
};