2014-07-21 22:39:32 -04:00
|
|
|
# name: lazyYT
|
|
|
|
# about: Uses the lazyYT plugin to lazy load Youtube videos
|
2015-01-27 07:30:07 -05:00
|
|
|
# version: 1.0.1
|
2014-07-21 22:39:32 -04:00
|
|
|
# authors: Arpit Jalan
|
2015-02-06 18:08:57 -05:00
|
|
|
# url: https://github.com/discourse/discourse/tree/master/plugins/lazyYT
|
2014-07-21 22:39:32 -04:00
|
|
|
|
2018-05-15 11:25:43 -04:00
|
|
|
hide_plugin if self.respond_to?(:hide_plugin)
|
|
|
|
|
2014-07-21 22:39:32 -04:00
|
|
|
# javascript
|
|
|
|
register_asset "javascripts/lazyYT.js"
|
|
|
|
|
|
|
|
# stylesheet
|
|
|
|
register_asset "stylesheets/lazyYT.css"
|
2014-07-28 02:20:08 -04:00
|
|
|
register_asset "stylesheets/lazyYT_mobile.scss", :mobile
|
2014-07-21 22:39:32 -04:00
|
|
|
|
|
|
|
# freedom patch YouTube Onebox
|
|
|
|
class Onebox::Engine::YoutubeOnebox
|
|
|
|
include Onebox::Engine
|
2015-08-18 05:17:39 -04:00
|
|
|
alias_method :yt_onebox_to_html, :to_html
|
2014-07-21 22:39:32 -04:00
|
|
|
|
|
|
|
def to_html
|
2015-12-03 21:46:00 -05:00
|
|
|
if video_id && !params['list']
|
2015-05-26 08:33:50 -04:00
|
|
|
video_width = (params['width'] && params['width'].to_i <= 695) ? params['width'] : 480 # embed width
|
|
|
|
video_height = (params['height'] && params['height'].to_i <= 500) ? params['height'] : 270 # embed height
|
2015-08-18 05:17:39 -04:00
|
|
|
|
2014-08-22 15:21:02 -04:00
|
|
|
# Put in the LazyYT div instead of the iframe
|
2016-01-30 06:32:48 -05:00
|
|
|
escaped_title = ERB::Util.html_escape(video_title)
|
|
|
|
"<div class=\"lazyYT\" data-youtube-id=\"#{video_id}\" data-youtube-title=\"#{escaped_title}\" data-width=\"#{video_width}\" data-height=\"#{video_height}\" data-parameters=\"#{embed_params}\"></div>"
|
2014-07-21 22:39:32 -04:00
|
|
|
else
|
2015-08-18 05:17:39 -04:00
|
|
|
yt_onebox_to_html
|
2014-07-21 22:39:32 -04:00
|
|
|
end
|
|
|
|
end
|
2014-07-26 09:11:21 -04:00
|
|
|
|
2014-07-21 22:39:32 -04:00
|
|
|
end
|
2014-08-21 06:54:05 -04:00
|
|
|
|
|
|
|
after_initialize do
|
|
|
|
|
2018-05-09 13:39:17 -04:00
|
|
|
on(:reduce_cooked) do |fragment|
|
|
|
|
fragment.css(".lazyYT").each do |yt|
|
2014-08-21 06:54:05 -04:00
|
|
|
begin
|
2018-05-09 13:39:17 -04:00
|
|
|
youtube_id = yt["data-youtube-id"]
|
|
|
|
parameters = yt["data-parameters"]
|
|
|
|
uri = URI("https://www.youtube.com/embed/#{youtube_id}?autoplay=1&#{parameters}")
|
|
|
|
yt.replace %{<p><a href="#{uri.to_s}">https://#{uri.host}#{uri.path}</a></p>}
|
2014-08-21 06:54:05 -04:00
|
|
|
rescue URI::InvalidURIError
|
2018-05-09 13:39:17 -04:00
|
|
|
# remove any invalid/weird URIs
|
|
|
|
yt.remove
|
2014-08-21 06:54:05 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-05-09 13:39:17 -04:00
|
|
|
|
2014-08-21 06:54:05 -04:00
|
|
|
end
|