Sha256: 96293fe4d778afbe379d89892f113d50ab534f3b1354e39ce2f64a6ece9327f1
Contents?: true
Size: 987 Bytes
Versions: 2
Compression:
Stored size: 987 Bytes
Contents
module Faalis module Generators module Concerns # Using this **concern** module user can specify an array of tab objects # which each one has an `id` and `name` attribute. Tabs will be added to # **new** view of resource. Also this concern will a `tab` key to field # object. All the fields with same `id` as a tab will be grouped in that # tab module Tabs private # Process the user provided tabs # @return a Hash of tabs like def tabs if resource_data.include? "tabs" tabs = resource_data["tabs"] result = {} tabs.each do |tab| name = tab["name"] fields_list = fields_with("tab", tab["id"]) result[name] = fields_list end return result else {} end end def any_tabs? resource_data.include? "tabs" end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
faalis-0.26.2 | lib/faalis/generators/concerns/tabs.rb |
faalis-0.26.1 | lib/faalis/generators/concerns/tabs.rb |