2018-09-04 18:03:28 +00:00
|
|
|
<!-- <button id="test-btn" class="btn btn-primary">Test Connection</button> -->
|
2018-09-06 10:47:18 +00:00
|
|
|
<% params["action"] = "call" %>
|
2018-08-31 20:24:38 +00:00
|
|
|
<div id="join-btn" data-room="<%= @chat_room.id %>"></div>
|
2018-08-31 19:47:33 +00:00
|
|
|
|
2018-08-30 02:00:09 +00:00
|
|
|
<div id="chatroom-hook" data-chatroom-id='<%= @chat_room.id %>'></div>
|
|
|
|
|
2018-09-05 17:17:13 +00:00
|
|
|
|
2018-09-06 00:59:16 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="call-container">
|
|
|
|
<div class="col-xs-12 col-sm-6 col-lg-4">
|
|
|
|
<div id="remote-video-container">
|
|
|
|
<div id="video_overlays">
|
|
|
|
<video id="local-video" autoplay muted></video>
|
|
|
|
</div>
|
|
|
|
<video id="remote-video" autoplay></video>
|
|
|
|
<i class="far fa-hand-paper hand"></i>
|
|
|
|
<!-- <i class="far fa-phone-slash hand"></i> -->
|
|
|
|
</div>
|
2018-08-30 17:42:42 +00:00
|
|
|
</div>
|
2018-09-06 00:59:16 +00:00
|
|
|
<div class="col-xs-12 col-sm-6 col-lg-4 no-padding">
|
|
|
|
<div class="messages-container-container">
|
|
|
|
<div id="messages-container">
|
2018-09-06 11:45:57 +00:00
|
|
|
<div class="hover-notice">
|
|
|
|
<span class="text-center"><small>Hover to see the original message</small></span>
|
|
|
|
</div>
|
2018-09-06 00:59:16 +00:00
|
|
|
</div>
|
|
|
|
<div class="chat">
|
|
|
|
<div class="input-group">
|
|
|
|
<select id="language-1" class="form-control no-radius">
|
|
|
|
<% @languages.each do |language| %>
|
|
|
|
<option value="<%= language.code %>"><%= language.name %></option>
|
|
|
|
<% end %>
|
|
|
|
</select>
|
2018-09-06 11:49:02 +00:00
|
|
|
|
2018-09-06 11:33:22 +00:00
|
|
|
<form class="form-inline" id="chat-form">
|
|
|
|
<span class="input-group-addon" style="width:0px; padding-left:0px; padding-right:0px; border:none;"></span>
|
2018-09-06 11:49:02 +00:00
|
|
|
<input type="text" class="form-control input-transparent" name="chat-input" id="chat-input" value="" placeholder="Type something...">
|
2018-09-06 11:33:22 +00:00
|
|
|
<span class="input-group-btn">
|
2018-09-06 11:49:02 +00:00
|
|
|
<button class="form-control send-button" id="send-btn" type="submit" remote: true>
|
|
|
|
<i class="fas fa-paper-plane"></i>
|
|
|
|
</button>
|
2018-09-06 11:33:22 +00:00
|
|
|
</span>
|
|
|
|
</form>
|
2018-09-06 11:49:02 +00:00
|
|
|
|
2018-09-06 00:59:16 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-09-05 22:23:10 +00:00
|
|
|
</div>
|
2018-09-04 18:03:28 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-08-30 17:42:42 +00:00
|
|
|
</div>
|
|
|
|
|
2018-09-06 00:59:16 +00:00
|
|
|
|
|
|
|
|
2018-08-31 20:38:48 +00:00
|
|
|
<div><span id="current-user" class="text-color" style="display:none"><%= current_user.id %></span></div>
|
2018-08-30 17:42:42 +00:00
|
|
|
|
2018-08-31 19:47:33 +00:00
|
|
|
<%= javascript_pack_tag 'chatrooms' %>
|
|
|
|
<%= javascript_pack_tag 'webrtc' %>
|
2018-09-04 18:03:28 +00:00
|
|
|
<%= javascript_pack_tag 'translate' %>
|
2018-08-31 05:02:24 +00:00
|
|
|
|