Sha256: 179052f2431f589d2ece31e5ee7934fe2b45115b9205d8edae963b472f94e867
Contents?: true
Size: 1.33 KB
Versions: 2
Compression:
Stored size: 1.33 KB
Contents
require 'shopify_cli' module ShopifyCli module Commands class Create < ShopifyCli::Command def self.call(args, command_name) ProjectType.load_type(args[0]) unless args.empty? super end def call(args, command_name) unless args.empty? @ctx.puts(@ctx.message('core.create.error.invalid_app_type', args[0])) return @ctx.puts(self.class.help) end type_name = CLI::UI::Prompt.ask(@ctx.message('core.create.project_type_select')) do |handler| self.class.all_visible_type.each do |type| handler.option(type.project_name) { type.project_type } end end klass = ProjectType.load_type(type_name).create_command klass.ctx = @ctx klass.call(args, command_name, 'create') end def self.all_visible_type ProjectType .load_all .select { |type| !type.hidden? } end def self.help project_types = all_visible_type.map(&:project_type).join(" | ") ShopifyCli::Context.message('core.create.help', ShopifyCli::TOOL_NAME, project_types) end def self.extended_help <<~HELP #{ all_visible_type.map do |type| type.create_command.help end.join("\n") } HELP end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
shopify-cli-1.0.4 | lib/shopify-cli/commands/create.rb |
shopify-cli-1.0.3 | lib/shopify-cli/commands/create.rb |