Class: Dry::Schema::MessageCompiler Private
- Inherits:
-
Object
- Object
- Dry::Schema::MessageCompiler
- Extended by:
- Initializer
- Defined in:
- lib/dry/schema/message_compiler.rb,
lib/dry/schema/message_compiler/visitor_opts.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Defined Under Namespace
Classes: VisitorOpts
Constant Summary collapse
- DEFAULT_PREDICATE_RESOLVERS =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
Hash .new(resolve_predicate).update(key?: resolve_key_predicate).freeze
- EMPTY_OPTS =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
VisitorOpts.new
Constants included from Extensions::Hints::MessageCompilerMethods
Extensions::Hints::MessageCompilerMethods::HINT_OTHER_EXCLUSION, Extensions::Hints::MessageCompilerMethods::HINT_TYPE_EXCLUSION
Instance Attribute Summary collapse
- #default_lookup_options ⇒ Object readonly private
- #options ⇒ Object readonly private
Attributes included from Extensions::Hints::MessageCompilerMethods
Instance Method Summary collapse
- #call(ast) ⇒ Object private
-
#initialize(messages, options = EMPTY_HASH) ⇒ MessageCompiler
constructor
private
A new instance of MessageCompiler.
- #lookup_options(arg_vals:, input:) ⇒ Object private
- #message_text(template, tokens, options) ⇒ Object private
- #message_tokens(args) ⇒ Object private
- #message_type ⇒ Object private
- #visit(node, opts = EMPTY_OPTS.dup) ⇒ Object private
- #visit_and(node, opts) ⇒ Object private
- #visit_failure(node, opts) ⇒ Object private
- #visit_hint ⇒ Object private
- #visit_implication(node, *args) ⇒ Object private
- #visit_key(node, opts) ⇒ Object private
- #visit_namespace(node, opts) ⇒ Object private
- #visit_not(node, opts) ⇒ Object private
- #visit_or(node, opts) ⇒ Object private
- #visit_predicate(node, opts) ⇒ Object private
- #visit_set(node, opts) ⇒ Object private
- #visit_xor(node, opts) ⇒ Object private
- #with(new_options) ⇒ Object private
Methods included from Extensions::Hints::MessageCompilerMethods
#exclude?, #filter, #hints?, #visit_each
Constructor Details
#initialize(messages, options = EMPTY_HASH) ⇒ MessageCompiler
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of MessageCompiler.
43 44 45 46 47 |
# File 'lib/dry/schema/message_compiler.rb', line 43 def initialize(, = EMPTY_HASH) super @options = @default_lookup_options = [:locale] ? { locale: locale } : EMPTY_HASH end |
Instance Attribute Details
#default_lookup_options ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
40 41 42 |
# File 'lib/dry/schema/message_compiler.rb', line 40 def @default_lookup_options end |
#options ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
38 39 40 |
# File 'lib/dry/schema/message_compiler.rb', line 38 def @options end |
Instance Method Details
#call(ast) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
57 58 59 60 61 62 |
# File 'lib/dry/schema/message_compiler.rb', line 57 def call(ast) = EMPTY_ARRAY.dup = ast.map { |node| visit(node, EMPTY_OPTS.dup()) } MessageSet[, failures: .fetch(:failures, true)] end |
#lookup_options(arg_vals:, input:) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
166 167 168 169 170 171 |
# File 'lib/dry/schema/message_compiler.rb', line 166 def (arg_vals:, input:) .merge( arg_type: arg_vals.size == 1 && arg_vals[0].class, val_type: input.equal?(Undefined) ? NilClass : input.class ) end |
#message_text(template, tokens, options) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
174 175 176 177 178 179 180 181 |
# File 'lib/dry/schema/message_compiler.rb', line 174 def (template, tokens, ) text = template[template.data(tokens)] return text unless full rule = [:path] "#{.rule(rule, ) || rule} #{text}" end |
#message_tokens(args) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
184 185 186 187 188 189 190 191 192 193 194 195 196 |
# File 'lib/dry/schema/message_compiler.rb', line 184 def (args) args.each_with_object({}) do |arg, hash| case arg[1] when Array hash[arg[0]] = arg[1].join(LIST_SEPARATOR) when Range hash["#{arg[0]}_left".to_sym] = arg[1].first hash["#{arg[0]}_right".to_sym] = arg[1].last else hash[arg[0]] = arg[1] end end end |
#message_type ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
138 139 140 |
# File 'lib/dry/schema/message_compiler.rb', line 138 def (*) Message end |
#visit(node, opts = EMPTY_OPTS.dup) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
65 66 67 |
# File 'lib/dry/schema/message_compiler.rb', line 65 def visit(node, opts = EMPTY_OPTS.dup) __send__(:"visit_#{node[0]}", node[1], opts) end |
#visit_and(node, opts) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
86 87 88 89 90 91 92 93 94 |
# File 'lib/dry/schema/message_compiler.rb', line 86 def visit_and(node, opts) left, right = node.map { |n| visit(n, opts) } if right [left, right] else left end end |
#visit_failure(node, opts) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
70 71 72 73 |
# File 'lib/dry/schema/message_compiler.rb', line 70 def visit_failure(node, opts) rule, other = node visit(other, opts.(rule: rule)) end |
#visit_hint ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
76 77 78 |
# File 'lib/dry/schema/message_compiler.rb', line 76 def visit_hint(*) nil end |
#visit_implication(node, *args) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
154 155 156 157 |
# File 'lib/dry/schema/message_compiler.rb', line 154 def visit_implication(node, *args) _, right = node visit(right, *args) end |
#visit_key(node, opts) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
143 144 145 146 |
# File 'lib/dry/schema/message_compiler.rb', line 143 def visit_key(node, opts) name, other = node visit(other, opts.(path: name)) end |
#visit_namespace(node, opts) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
110 111 112 113 |
# File 'lib/dry/schema/message_compiler.rb', line 110 def visit_namespace(node, opts) ns, rest = node self.class.new(.namespaced(ns), ).visit(rest, opts) end |
#visit_not(node, opts) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
81 82 83 |
# File 'lib/dry/schema/message_compiler.rb', line 81 def visit_not(node, opts) visit(node, opts.(not: true)) end |
#visit_or(node, opts) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
97 98 99 100 101 102 103 104 105 106 107 |
# File 'lib/dry/schema/message_compiler.rb', line 97 def visit_or(node, opts) left, right = node.map { |n| visit(n, opts) } if [left, right].flatten.map(&:path).uniq.size == 1 Message::Or.new(left, right, proc { |k| .translate(k, ) }) elsif right.is_a?(Array) right else [left, right].flatten.max end end |
#visit_predicate(node, opts) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
# File 'lib/dry/schema/message_compiler.rb', line 116 def visit_predicate(node, opts) predicate, args = node tokens = (args) path, *arg_vals, input = predicate_resolvers[predicate].(args, opts) = opts.dup.update( path: path.last, **tokens, **(arg_vals: arg_vals, input: input) ).to_h template = [predicate, ] || raise(MissingMessageError, path) text = (template, tokens, ) ()[ predicate, path, text, args: arg_vals, input: input ] end |
#visit_set(node, opts) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
149 150 151 |
# File 'lib/dry/schema/message_compiler.rb', line 149 def visit_set(node, opts) node.map { |el| visit(el, opts) } end |
#visit_xor(node, opts) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
160 161 162 163 |
# File 'lib/dry/schema/message_compiler.rb', line 160 def visit_xor(node, opts) left, right = node [visit(left, opts), visit(right, opts)].uniq end |
#with(new_options) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
50 51 52 53 54 |
# File 'lib/dry/schema/message_compiler.rb', line 50 def with() return self if .empty? self.class.new(, .merge()) end |