AlchemyCMS/alchemy_cms

View on GitHub
app/models/alchemy/ingredients/video.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module Alchemy
  module Ingredients
    # A video attachment
    #
    class Video < Alchemy::Ingredient
      store_accessor :data,
        :allow_fullscreen,
        :autoplay,
        :controls,
        :height,
        :loop,
        :muted,
        :playsinline,
        :preload,
        :width

      allow_settings %i[except only]

      related_object_alias :attachment, class_name: "Alchemy::Attachment"

      delegate :name, to: :attachment, allow_nil: true

      # The first 30 characters of the attachments name
      #
      # Used by the Element#preview_text method.
      #
      # @param [Integer] max_length (30)
      #
      def preview_text(max_length = 30)
        name.to_s[0..max_length - 1]
      end

      %i[
        autoplay
        controls
        loop
        muted
        playsinline
      ].each do |method|
        define_method(:"#{method}=") do |value|
          super(ActiveModel::Type::Boolean.new.cast(value))
        end
      end
    end
  end
end