3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
# File 'lib/reader_admin_ui.rb', line 3
def self.included(base)
base.class_eval do
attr_accessor :reader, :message, :group, :reader_configuration, :account
alias_method :readers, :reader
alias_method :messages, :message
alias_method :groups, :group
alias_method :accounts, :account
def load_reader_extension_regions
@reader = load_default_reader_regions
@message = load_default_message_regions
@group = load_default_group_regions
@reader_configuration = load_default_reader_configuration_regions
@account = load_default_account_regions
end
def load_default_regions_with_reader
load_default_regions_without_reader
load_reader_extension_regions
end
alias_method_chain :load_default_regions, :reader
protected
def load_default_reader_regions
OpenStruct.new.tap do |reader|
reader.edit = Radiant::AdminUI::RegionSet.new do |edit|
edit.main.concat %w{edit_header edit_form}
edit.form.concat %w{edit_name edit_email edit_nickname edit_password edit_dob reader_groups edit_address edit_phone edit_description edit_notes}
edit.form_bottom.concat %w{edit_timestamp edit_buttons}
end
reader.index = Radiant::AdminUI::RegionSet.new do |index|
index.thead.concat %w{title_header email_header groups_header description_header modify_header}
index.tbody.concat %w{title_cell email_cell groups_cell description_cell modify_cell}
index.bottom.concat %w{buttons}
end
reader.remove = reader.index
reader.new = reader.edit
end
end
def load_default_reader_configuration_regions
OpenStruct.new.tap do |reader_configuration|
reader_configuration.show = Radiant::AdminUI::RegionSet.new do |show|
show.settings.concat %w{administration}
show.messages.concat %w{administration}
end
reader_configuration.edit = Radiant::AdminUI::RegionSet.new do |edit|
edit.main.concat %w{edit_header edit_form}
edit.form.concat %w{edit_registration edit_sender}
edit.form_bottom.concat %w{edit_buttons}
end
end
end
def load_default_message_regions
OpenStruct.new.tap do |message|
message.edit = Radiant::AdminUI::RegionSet.new do |edit|
edit.main.concat %w{edit_header edit_form edit_popups}
edit.form.concat %w{edit_subject edit_body edit_function edit_groups}
edit.form_bottom.concat %w{edit_timestamp edit_buttons}
end
message.index = Radiant::AdminUI::RegionSet.new do |index|
index.thead.concat %w{subject_header function_header groups_header sent_header modify_header}
index.tbody.concat %w{subject_cell function_cell groups_cell sent_cell modify_cell}
index.bottom.concat %w{buttons}
end
message.show = Radiant::AdminUI::RegionSet.new do |show|
show..concat %w{title}
show.preview.concat %w{headers body buttons}
show.delivery.concat %w{function options}
show..concat %w{notes}
end
message.new = message.edit
end
end
def load_default_group_regions
OpenStruct.new.tap do |group|
group.edit = Radiant::AdminUI::RegionSet.new do |edit|
edit.main.concat %w{edit_header edit_form}
edit.form.concat %w{edit_group edit_timestamp edit_buttons}
end
group.show = Radiant::AdminUI::RegionSet.new do |show|
show..concat %w{title}
show.main.concat %w{messages pages members}
show..concat %w{notes javascript}
end
group.index = Radiant::AdminUI::RegionSet.new do |index|
index.thead.concat %w{name_header home_header members_header pages_header modify_header}
index.tbody.concat %w{name_cell home_cell members_cell pages_cell modify_cell}
index.bottom.concat %w{buttons}
end
group.remove = group.index
group.new = group.edit
end
end
end
def load_default_account_regions
OpenStruct.new.tap do |account|
account.dashboard = Radiant::AdminUI::RegionSet.new do |dashboard|
dashboard.main.concat %w{dashboard/welcome dashboard/groups}
dashboard..concat %w{dashboard/profile dashboard/messages}
end
account.index = Radiant::AdminUI::RegionSet.new do |index|
index.main.concat %w{readers/directory}
end
account.show = Radiant::AdminUI::RegionSet.new do |show|
show.main.concat %w{readers/memberships readers/description}
show..concat %w{readers/profile}
end
account.edit = Radiant::AdminUI::RegionSet.new do |edit|
edit.main.concat %w{preamble form gravatar}
edit.form.concat %w{edit_name edit_email edit_password buttons}
end
account.edit_profile = Radiant::AdminUI::RegionSet.new do |edit_profile|
edit_profile.main.concat %w{preamble profile_form gravatar}
edit_profile.profile_form.concat %w{edit_honorific edit_name edit_dob edit_phone edit_mobile edit_address edit_shareability buttons}
end
account.new = account.edit
end
end
end
|