Sha256: 918be2f37c9662f79668fa562c40fc3fcb303b622d2ef16a3b4606052b6b9e12
Contents?: true
Size: 1.75 KB
Versions: 207
Compression:
Stored size: 1.75 KB
Contents
module Souls class Update < Thor desc "type [CLASS_NAME]", "Update GraphQL Type from schema.rb" def type(class_name) singularized_class_name = class_name.singularize.underscore new_cols = Souls.get_columns_num(class_name: singularized_class_name) dir_name = "./app/graphql/types" new_file_path = "tmp/create_type.rb" file_path = "#{dir_name}/#{singularized_class_name}_type.rb" argument = false File.open(file_path) do |f| File.open(new_file_path, "w") do |new_line| f.each_line do |line| new_line.write(line) next unless line.include?("field") && !argument new_cols.each do |col| type = Souls.get_type(col[:type]) type = "[#{type}]" if col[:array] args = check_type_argument(class_name: class_name) unless args.include?(col[:column_name]) new_line.write(" field :#{col[:column_name]}, #{type}, null: true\n") end end argument = true end end end FileUtils.rm(file_path) FileUtils.mv(new_file_path, file_path) puts(Paint % ["Updated file! : %{white_text}", :green, { white_text: [file_path.to_s, :white] }]) rescue Thor::Error => e raise(Thor::Error, e) end private def check_type_argument(class_name: "user") singularized_class_name = class_name.singularize.underscore dir_name = "./app/graphql/types" file_path = "#{dir_name}/#{singularized_class_name}_type.rb" args = [] File.open(file_path) do |f| f.each_line do |line| args << line.split(",")[0].gsub("field :", "").strip if line.include?(" field :") end end args end end end
Version data entries
207 entries across 207 versions & 1 rubygems