# frozen_string_literal: true
module Onebox
module Mixins
module TwitchOnebox
def self.included(klass)
klass.include(Onebox::Engine)
klass.matches_regexp(klass.twitch_regexp)
klass.include(InstanceMethods)
end
module InstanceMethods
def twitch_id
@url.match(self.class.twitch_regexp)[1]
end
def base_url
"player.twitch.tv/?"
end
def placeholder_html
""
end
def to_html
""
end
end
end
end
end