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

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

Constant Summary

Constants included from Format

Format::TEMPLATE_DIR

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

Methods included from AdvancedApi

#attachment, #ensure_set, #stage_method

Methods included from Format

#all_set_format_mod!, #before, #define_on_format, #format, #register_set_format, #view, #view_for_override

Methods included from Inheritance

#include_set, #include_set_formats

Methods included from Basket

#abstract_basket, #add_to_basket, #basket

Methods included from Card::Set::Trait

#card_accessor, #card_reader, #card_writer

Methods included from Event::Api

#event

Class Method Details

.member_namesObject



6
7
8
9
10
11
12
13
14
15
# File 'tmpsets/set/mod012-settings/type/setting.rb', line 6

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

Instance Method Details

#set_classes_with_rulesObject



26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'tmpsets/set/mod012-settings/type/setting.rb', line 26

def set_classes_with_rules
  Card.set_patterns.reverse.map do |set_class|
    wql = { left:  { type: Card::SetID },
            right: id,
            # sort:  'content',

            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