Last active
August 28, 2024 19:28
-
-
Save arronmabrey/185d042e5219be203578 to your computer and use it in GitHub Desktop.
explode_paths.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Inspiration: https://gist.github.com/potatosalad/760726 | |
def explode_paths(input, klass: Hash, key_delimiter: '__', key_transform: ->(key) { key.to_sym }) | |
recursive_hash = klass.new { |hash, key| hash[key] = klass.new(&hash.default_proc) } | |
result = input.to_h.reduce(recursive_hash) do |recursive_acc, (input_key_path, input_value)| | |
keys = input_key_path.to_s.split(key_delimiter).map(&key_transform) | |
tree = keys.map {|key| [:[], key] } | |
tree.push([:[]=, tree.pop[1], input_value]) | |
tree.reduce(recursive_acc) do |acc, tree_node| | |
acc.public_send(tree_node.shift, *tree_node) | |
end | |
recursive_acc | |
end | |
result.default = klass.new.default | |
result | |
end | |
# ===== Usage ===== | |
# | |
# hash_input = { | |
# foo__bar__a: :a, | |
# foo__bar__b: :b, | |
# foo__baz__c: :c, | |
# foo__baz__d: :d | |
# } | |
# | |
# explode_paths(hash_input) | |
# | |
# # Outputs: | |
# | |
# { | |
# foo: { | |
# bar: { | |
# a: :a, | |
# b: :b | |
# }, | |
# baz: { | |
# c: :c, | |
# d: :d | |
# } | |
# } | |
# } | |
# | |
# # OR | |
# | |
# array_input = [ | |
# [:foo__bar__a, :a], | |
# [:foo__bar__b, :b], | |
# [:foo__baz__c, :c], | |
# [:foo__baz__d, :d], | |
# ] | |
# | |
# explode_paths(array_input) | |
# | |
# # Outputs: | |
# | |
# { | |
# foo: { | |
# bar: { | |
# a: :a, | |
# b: :b | |
# }, | |
# baz: { | |
# c: :c, | |
# d: :d | |
# } | |
# } | |
# } | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!