20 lines
586 B
Plaintext
20 lines
586 B
Plaintext
<%= turbo_stream_from @room %>
|
|
<%= turbo_stream_from @client.id %>
|
|
|
|
<article
|
|
class="room"
|
|
data-controller="room"
|
|
data-room-id-value="<%= @room.id %>"
|
|
data-room-client-id-value="<%= @client.id %>"
|
|
>
|
|
<div class="media" id="media">
|
|
<div class="medium medium--local" data-controller="medium">
|
|
<video data-room-target="localMedium" data-medium-target="mediaElement" muted autoplay playsinline></video>
|
|
|
|
<div class="medium-actions">
|
|
<%= button_tag 'Enter', data: { room_target: 'enter', action: 'room#enter' } %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</article>
|