Module: Card::Set::Type::Setting

Extended by:
Card::Set
Defined in:
tmpsets/set/mod015-settings/type/setting.rb

Overview

Set: All "Setting" cards

Defined Under Namespace

Modules: DataFormat, HtmlFormat, JsonFormat

Class Method Summary collapse

Instance Method Summary collapse

Methods included from I18nScope

#mod_name, #scope

Methods included from Loader

#clean_empty_module_from_hash, #clean_empty_modules, #extended, #process_base_modules, #register_set

Methods included from Helpers

#abstract_set?, #all_set?, #num_set_parts, #shortname, #underscore

Methods included from AdvancedApi

#attachment, #ensure_set, #stage_method

Methods included from Format

#before, #format, layout_method_name, #view, view_method_name, view_setting_method_name, wrapper_method_name

Methods included from Inheritance

#include_set, #include_set_formats

Methods included from Basket

#abstract_basket, #add_to_basket, #basket, #unshift_basket

Methods included from Card::Set::Trait

#card_accessor, #card_reader, #card_writer, #require_field

Methods included from Event::Api

#event

Class Method Details

.member_namesObject



10
11
12
13
14
15
16
17
18
19
# File 'tmpsets/set/mod015-settings/type/setting.rb', line 10

def self.member_names
  @@member_names ||= begin
    Card.search(
      { type_id: SettingID, return: "key" },
      "all setting cards"
    ).each_with_object({}) do |card_key, hash|
      hash[card_key] = true
    end
  end
end

.source_locationObject



7
# File 'tmpsets/set/mod015-settings/type/setting.rb', line 7

def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/settings/set/type/setting.rb"; end

Instance Method Details

#set_classes_with_rulesObject



30
31
32
33
34
35
36
37
38
39
40
41
# File 'tmpsets/set/mod015-settings/type/setting.rb', line 30

def set_classes_with_rules
  Card.set_patterns.reverse.map do |set_class|
    wql = { left: { type: Card::SetID },
            right: id,
            sort: %w[content name],
            limit: 0 }
    wql[:left][(set_class.anchorless? ? :id : :right_id)] = set_class.pattern_id

    rules = Card.search wql
    [set_class, rules] unless rules.empty?
  end.compact
end