Sha256: 936bd28b556f6c9e3c3638887a80b5a9b6c0d8e56558bba804839e3dacbaf108

Contents?: true

Size: 1.51 KB

Versions: 5

Compression:

Stored size: 1.51 KB

Contents

require "rails/generators"

module ReactOnRails
  module Generators
    class ReactWithReduxGenerator < Rails::Generators::Base
      Rails::Generators.hide_namespace(namespace)
      source_root(File.expand_path("../templates", __FILE__))

      def create_redux_directories
        dirs = %w(actions constants reducers store)
        dirs.each { |name| empty_directory("client/app/bundles/HelloWorld/#{name}") }
      end

      def copy_base_redux_files
        base_path = "redux/base/"
        %w(client/app/bundles/HelloWorld/actions/helloWorldActionCreators.jsx
           client/app/bundles/HelloWorld/containers/HelloWorldContainer.jsx
           client/app/bundles/HelloWorld/constants/helloWorldConstants.jsx
           client/app/bundles/HelloWorld/reducers/helloWorldReducer.jsx
           client/app/bundles/HelloWorld/store/helloWorldStore.jsx
           client/app/bundles/HelloWorld/startup/HelloWorldApp.jsx).each do |file|
             copy_file(base_path + file, file)
           end
      end

      def create_appropriate_templates
        base_path = "base/base/"
        location = "client/app/bundles/HelloWorld/"
        source = base_path + location
        config = {
          component_name: "HelloWorldApp",
          app_relative_path: "./HelloWorldApp"
        }
        template("#{source}/startup/registration.jsx.tt", "#{location}/startup/registration.jsx", config)
        template("#{base_path}app/views/hello_world/index.html.erb.tt", "app/views/hello_world/index.html.erb", config)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
react_on_rails-6.3.4 lib/generators/react_on_rails/react_with_redux_generator.rb
react_on_rails-6.3.3 lib/generators/react_on_rails/react_with_redux_generator.rb
react_on_rails-6.3.2 lib/generators/react_on_rails/react_with_redux_generator.rb
react_on_rails-6.3.1 lib/generators/react_on_rails/react_with_redux_generator.rb
react_on_rails-6.3.0 lib/generators/react_on_rails/react_with_redux_generator.rb