Sha256: d510cc947ee56f3bd237d697419330f0ffe6dc473a0f10a0b6e5c9bfbe3748bd
Contents?: true
Size: 989 Bytes
Versions: 9
Compression:
Stored size: 989 Bytes
Contents
<% url = component[:attributes].dig(:url, :value)&.to_s autoplay = component[:attributes].dig(:autoplay, :value) if 'vimeo'.in? url video_id = url.gsub(/\A(?:https?:)?\/\/(?:(?:www|player)\.)?vimeo\.com\/(?:video\/)?(\d+).*?\z/, '\1') iframe_src = "https://player.vimeo.com/video/#{video_id}?color=ffffff&title=0&byline=0&portrait=0" iframe_src += "&loop=1&autoplay=1&autopause=0&muted=1" if autoplay elsif 'youtube'.in? url video_id = url.split('watch?v=').last iframe_src = "https://www.youtube.com/embed/#{video_id}" iframe_src += "?autoplay=1&mute=1&loop=1" if autoplay else iframe_src = url end %> <div class="<%= promethee_class_for component %>"> <div class="embed-responsive embed-responsive-16by9"> <% if iframe_src.present? %> <iframe frameborder="0" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="allowfullscreen" src="<%= iframe_src %>"></iframe> <% end %> </div> </div>
Version data entries
9 entries across 9 versions & 1 rubygems