added routes for call

This commit is contained in:
Beatrice Olivera 2018-08-28 18:26:33 +01:00
parent 3dfbc577b6
commit 4b1636ee78
6 changed files with 36 additions and 19 deletions

View File

@ -0,0 +1,13 @@
contactsVideo = document.getElementById("contacts-video");
try {
const stream = await navigator.mediaDevices.getUserMedia({
audio: false,
video: true
})
localstream = stream;
contactsVideo.srcObject = stream
contactsVideo.muted = true
} catch (e) {
console.error(e);
}

View File

@ -61,7 +61,7 @@ a:hover {
.video-content {
height: 485px;
background-color: black;
// background-color: black;
}
.half {

View File

@ -10,7 +10,8 @@
<%#= stylesheet_pack_tag 'application', media: 'all' %> <!-- Uncomment if you import CSS in app/javascript/packs/application.js -->
</head>
<body>
<%= render 'shared/navbar' unless params["action"] == "home"%>
<%= render 'shared/navbar' unless params["action"] == "home" || params["action"] == "new" %>
<%= render 'shared/flashes' %>
<%= yield %>
<%= javascript_include_tag 'application' %>

View File

@ -8,6 +8,7 @@
</div>
<div class="video-feed half">
<div class="video-content">
<video id="contacts-video" autoplay=""></video>
</div>
</div>
</div>

View File

@ -13,6 +13,8 @@ Rails.application.routes.draw do
root to: "pages#home"
end
get '/call', to: 'pages#call'
get '/contacts', to: 'pages#index'
post '/sessions', to: 'video_sessions#create'