Sha256: ad13faac716981d499c24c89db42116ff00dca2160936781e00d3bced59b16a4

Contents?: true

Size: 1.66 KB

Versions: 1

Compression:

Stored size: 1.66 KB

Contents

module Souls
  class Generate < Thor
    desc "job_rbs [CLASS_NAME]", "Generate SOULs Job Mutation RBS Template"
    def job_rbs(class_name)
      file_path = ""
      worker_name = FileUtils.pwd.split("/").last
      Dir.chdir(Souls.get_mother_path.to_s) do
        singularized_class_name = class_name.underscore.singularize
        file_dir = "./sig/#{worker_name}/app/graphql/queries/"
        FileUtils.mkdir_p(file_dir) unless Dir.exist?(file_dir)
        file_path = "#{file_dir}#{singularized_class_name}.rbs"
        type_file_path = "./sig/#{worker_name}/app/graphql/types/#{singularized_class_name}_type.rbs"
        File.open(file_path, "w") do |f|
          f.write(<<~TEXT)
            module Queries
              String: String
              class #{singularized_class_name.camelize} < BaseQuery
                def self.description: (String) -> untyped
                def self.field: (:response, String, null: false) -> untyped
                def self.type: (untyped, null: false) -> untyped
              end
            end
          TEXT
        end
        File.open(type_file_path, "w") do |f|
          f.write(<<~TEXT)
            module Types
              class #{singularized_class_name.camelize}Type < BaseObject
                def self.field: (:response, String, null: true) -> untyped
              end
            end
          TEXT
        end
        puts(Paint % ["Created file! : %{white_text}", :green, { white_text: [file_path.to_s, :white] }])
        puts(Paint % ["Created file! : %{white_text}", :green, { white_text: [type_file_path.to_s, :white] }])
      end
      file_path
    rescue Thor::Error => e
      raise(Thor::Error, e)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
souls-1.7.9 lib/souls/cli/generate/job_rbs.rb