Sha256: 087627683fce269cbb4d0a6f3d4afad6781f346fea337b1526725d87be7674f3

Contents?: true

Size: 1.51 KB

Versions: 4

Compression:

Stored size: 1.51 KB

Contents

# frozen_string_literal: true

module CKEditor5::Rails
  module Cdn
    class CKEditorBundle < Assets::AssetsBundle
      include Cdn::UrlGenerator

      attr_reader :version, :translations, :import_name

      def initialize(version, import_name, cdn: Engine.default_preset.cdn, translations: [])
        raise ArgumentError, 'version must be semver' unless version.is_a?(Semver)
        raise ArgumentError, 'import_name must be a string' unless import_name.is_a?(String)
        raise ArgumentError, 'translations must be an array' unless translations.is_a?(Array)

        super()

        @cdn = cdn
        @version = version
        @import_name = import_name
        @translations = translations
      end

      def scripts
        @scripts ||= [
          js_url_imports,
          *translations_js_url_imports
        ]
      end

      def stylesheets
        @stylesheets ||= [
          create_cdn_url(import_name, version, "#{import_name}.css")
        ]
      end

      private

      def js_url_imports
        Assets::JSUrlImportMeta.new(
          create_cdn_url(import_name, version, "#{import_name}.js"),
          import_name: import_name
        )
      end

      def translations_js_url_imports
        translations.map do |lang|
          url = create_cdn_url(import_name, version, "translations/#{lang}.js")

          Assets::JSUrlImportMeta.new(
            url,
            import_name: "#{import_name}/translations/#{lang}.js",
            translation: true
          )
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ckeditor5-1.17.2 lib/ckeditor5/rails/cdn/ckeditor_bundle.rb
ckeditor5-1.17.1 lib/ckeditor5/rails/cdn/ckeditor_bundle.rb
ckeditor5-1.17.0 lib/ckeditor5/rails/cdn/ckeditor_bundle.rb
ckeditor5-1.16.2 lib/ckeditor5/rails/cdn/ckeditor_bundle.rb