line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package RapidApp::Module::Tree; |
2
|
|
|
|
|
|
|
|
3
|
4
|
|
|
4
|
|
2049
|
use strict; |
|
4
|
|
|
|
|
13
|
|
|
4
|
|
|
|
|
106
|
|
4
|
4
|
|
|
4
|
|
19
|
use warnings; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
93
|
|
5
|
|
|
|
|
|
|
|
6
|
4
|
|
|
4
|
|
19
|
use Moose; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
25
|
|
7
|
|
|
|
|
|
|
extends 'RapidApp::Module::ExtComponent'; |
8
|
|
|
|
|
|
|
|
9
|
4
|
|
|
4
|
|
21397
|
use RapidApp::Util qw(:all); |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
10434
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
has 'add_button_text' => ( is => 'ro', isa => 'Str', default => 'Add' ); |
13
|
|
|
|
|
|
|
has 'add_button_iconCls' => ( is => 'ro', isa => 'Str', default => 'ra-icon-add' ); |
14
|
|
|
|
|
|
|
has 'delete_button_text' => ( is => 'ro', isa => 'Str', default => 'Delete' ); |
15
|
|
|
|
|
|
|
has 'delete_button_iconCls' => ( is => 'ro', isa => 'Str', default => 'ra-icon-delete' ); |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
has 'use_contextmenu' => ( is => 'ro', isa => 'Bool', default => 0 ); |
18
|
|
|
|
|
|
|
has 'no_dragdrop_menu' => ( is => 'ro', isa => 'Bool', default => 0 ); |
19
|
|
|
|
|
|
|
has 'setup_tbar' => ( is => 'ro', isa => 'Bool', default => 0 ); |
20
|
|
|
|
|
|
|
has 'no_recursive_delete' => ( is => 'ro', isa => 'Bool', default => 1 ); |
21
|
|
|
|
|
|
|
has 'no_recursive_copy' => ( is => 'ro', isa => 'Bool', default => 1 ); |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
# Double-pane tree - useful for drag/drop |
24
|
|
|
|
|
|
|
has 'double_tree' => ( is => 'ro', isa => 'Bool', default => 0 ); |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
#Controls if nodes can drag/drop between nodes as well as into (append) nodes |
27
|
|
|
|
|
|
|
has 'ddAppendOnly' => ( is => 'ro', isa => 'Bool', default => 1 ); |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
has 'extra_node_actions' => ( is => 'ro', isa => 'Maybe[ArrayRef]', lazy => 1, default => undef ); |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
has 'node_types', is => 'ro', isa => 'Maybe[ArrayRef[HashRef]]', default => undef, traits => ['ExtProp']; |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
sub BUILD { |
35
|
4
|
|
|
4
|
0
|
12
|
my $self = shift; |
36
|
4
|
50
|
|
|
|
123
|
$self->apply_extconfig( |
|
|
50
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
37
|
|
|
|
|
|
|
xtype => 'apptree', |
38
|
|
|
|
|
|
|
border => \0, |
39
|
|
|
|
|
|
|
layout => 'fit', |
40
|
|
|
|
|
|
|
#containerScroll => \1, |
41
|
|
|
|
|
|
|
#autoScroll => \1, |
42
|
|
|
|
|
|
|
animate => \1, |
43
|
|
|
|
|
|
|
useArrows => \1, |
44
|
|
|
|
|
|
|
use_contextmenu => jstrue($self->use_contextmenu) ? \1 : \0, |
45
|
|
|
|
|
|
|
no_dragdrop_menu => jstrue($self->no_dragdrop_menu) ? \1 : \0, |
46
|
|
|
|
|
|
|
setup_tbar => jstrue($self->setup_tbar) ? \1 : \0, |
47
|
|
|
|
|
|
|
no_recursive_delete => jstrue($self->no_recursive_delete) ? \1 : \0, |
48
|
|
|
|
|
|
|
no_recursive_copy => jstrue($self->no_recursive_copy) ? \1 : \0, |
49
|
|
|
|
|
|
|
double_tree => jstrue($self->double_tree) ? \1 : \0, |
50
|
|
|
|
|
|
|
ddAppendOnly => jstrue($self->ddAppendOnly) ? \1 : \0, |
51
|
|
|
|
|
|
|
); |
52
|
|
|
|
|
|
|
|
53
|
4
|
50
|
|
|
|
132
|
$self->apply_extconfig( extra_node_actions => $self->extra_node_actions ) if ($self->extra_node_actions); |
54
|
|
|
|
|
|
|
|
55
|
4
|
|
|
|
|
123
|
$self->apply_extconfig( |
56
|
|
|
|
|
|
|
add_node_text => $self->add_button_text, |
57
|
|
|
|
|
|
|
add_node_iconCls => $self->add_button_iconCls, |
58
|
|
|
|
|
|
|
delete_node_text => $self->delete_button_text, |
59
|
|
|
|
|
|
|
delete_node_iconCls => $self->delete_button_iconCls |
60
|
|
|
|
|
|
|
); |
61
|
|
|
|
|
|
|
|
62
|
4
|
|
|
|
|
154
|
$self->apply_actions( nodes => 'call_fetch_nodes' ); |
63
|
4
|
50
|
|
|
|
60
|
$self->apply_actions( node => 'call_fetch_node' ) if ($self->can('fetch_node')); |
64
|
|
|
|
|
|
|
|
65
|
4
|
50
|
|
|
|
31
|
if($self->op_available('add_node')) { |
66
|
0
|
|
|
|
|
0
|
$self->apply_actions( add => 'call_add_node' ); |
67
|
0
|
|
|
|
|
0
|
$self->apply_extconfig( add_node_url => $self->suburl('add') ); |
68
|
|
|
|
|
|
|
} |
69
|
|
|
|
|
|
|
|
70
|
4
|
50
|
|
|
|
15
|
if($self->op_available('delete_node')) { |
71
|
0
|
|
|
|
|
0
|
$self->apply_actions( delete => 'call_delete_node' ); |
72
|
0
|
|
|
|
|
0
|
$self->apply_extconfig( delete_node_url => $self->suburl('delete') ); |
73
|
|
|
|
|
|
|
} |
74
|
|
|
|
|
|
|
|
75
|
4
|
50
|
|
|
|
15
|
if($self->op_available('rename_node')) { |
76
|
0
|
|
|
|
|
0
|
$self->apply_actions( rename => 'call_rename_node' ); |
77
|
0
|
|
|
|
|
0
|
$self->apply_extconfig( rename_node_url => $self->suburl('rename') ); |
78
|
|
|
|
|
|
|
} |
79
|
|
|
|
|
|
|
|
80
|
4
|
50
|
|
|
|
15
|
if($self->op_available('copy_node')) { |
81
|
0
|
|
|
|
|
0
|
$self->apply_actions( copy => 'call_copy_node' ); |
82
|
0
|
|
|
|
|
0
|
$self->apply_extconfig( copy_node_url => $self->suburl('copy') ); |
83
|
|
|
|
|
|
|
} |
84
|
|
|
|
|
|
|
|
85
|
4
|
50
|
|
|
|
18
|
if($self->op_available('move_node')) { |
86
|
0
|
|
|
|
|
0
|
$self->apply_actions( move => 'call_move_node' ); |
87
|
0
|
|
|
|
|
0
|
$self->apply_extconfig( move_node_url => $self->suburl('move') ); |
88
|
|
|
|
|
|
|
} |
89
|
|
|
|
|
|
|
|
90
|
4
|
50
|
|
|
|
16
|
if($self->op_available('expand_node')) { |
91
|
0
|
|
|
|
|
0
|
$self->apply_actions( expand => 'call_expand_node' ); |
92
|
0
|
|
|
|
|
0
|
$self->apply_extconfig( expand_node_url => $self->suburl('expand') ); |
93
|
|
|
|
|
|
|
} |
94
|
|
|
|
|
|
|
|
95
|
4
|
|
|
|
|
45
|
$self->add_ONREQUEST_calls('init_onreq'); |
96
|
|
|
|
|
|
|
} |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
# New: this method is provided so subclass can hook/override |
99
|
|
|
|
|
|
|
sub op_available { |
100
|
24
|
|
|
24
|
0
|
43
|
my ($self, $op_name) = @_; |
101
|
24
|
|
|
|
|
165
|
$self->can($op_name) |
102
|
|
|
|
|
|
|
} |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
around 'content' => sub { |
106
|
|
|
|
|
|
|
my $orig = shift; |
107
|
|
|
|
|
|
|
my $self = shift; |
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
my $content = $self->$orig(@_); |
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
return $content unless ($self->double_tree); |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
my $cfg = { |
114
|
|
|
|
|
|
|
xtype => 'container', |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
#Emulate border layout: |
117
|
|
|
|
|
|
|
style => { 'background-color' => '#f0f0f0' }, |
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
layout => 'hbox', |
120
|
|
|
|
|
|
|
layoutConfig => { |
121
|
|
|
|
|
|
|
align => 'stretch', |
122
|
|
|
|
|
|
|
pack => 'start' |
123
|
|
|
|
|
|
|
}, |
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
items => [ |
126
|
|
|
|
|
|
|
{ |
127
|
|
|
|
|
|
|
%$content, |
128
|
|
|
|
|
|
|
flex => \1, |
129
|
|
|
|
|
|
|
hideBorders => \1, |
130
|
|
|
|
|
|
|
margins => { |
131
|
|
|
|
|
|
|
top => 0, |
132
|
|
|
|
|
|
|
right => 5, |
133
|
|
|
|
|
|
|
bottom => 0, |
134
|
|
|
|
|
|
|
left => 0 |
135
|
|
|
|
|
|
|
}, |
136
|
|
|
|
|
|
|
}, |
137
|
|
|
|
|
|
|
{ |
138
|
|
|
|
|
|
|
%$content, |
139
|
|
|
|
|
|
|
id => $content->{id} . '2', |
140
|
|
|
|
|
|
|
flex => \1, |
141
|
|
|
|
|
|
|
hideBorders => \1, |
142
|
|
|
|
|
|
|
} |
143
|
|
|
|
|
|
|
] |
144
|
|
|
|
|
|
|
}; |
145
|
|
|
|
|
|
|
|
146
|
|
|
|
|
|
|
my @p = qw/tabTitle tabIconCls/; |
147
|
|
|
|
|
|
|
$content->{$_} and $cfg->{$_} = $content->{$_} for (@p); |
148
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
return $cfg |
150
|
|
|
|
|
|
|
}; |
151
|
|
|
|
|
|
|
|
152
|
|
|
|
|
|
|
|
153
|
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
sub init_onreq { |
155
|
11
|
|
|
11
|
0
|
30
|
my $self = shift; |
156
|
|
|
|
|
|
|
|
157
|
11
|
50
|
|
|
|
275
|
$self->apply_extconfig( |
158
|
|
|
|
|
|
|
id => $self->instance_id, |
159
|
|
|
|
|
|
|
dataUrl => $self->suburl('/nodes'), |
160
|
|
|
|
|
|
|
rootVisible => $self->show_root_node ? \1 : \0, |
161
|
|
|
|
|
|
|
root => $self->root_node, |
162
|
|
|
|
|
|
|
tbar => $self->tbar, |
163
|
|
|
|
|
|
|
); |
164
|
|
|
|
|
|
|
|
165
|
11
|
100
|
|
|
|
64
|
my $node = $self->init_jump_to_node or return; |
166
|
|
|
|
|
|
|
|
167
|
1
|
|
|
|
|
32
|
$self->add_listener( |
168
|
|
|
|
|
|
|
afterrender => RapidApp::JSONFunc->new( raw => 1, func => |
169
|
|
|
|
|
|
|
'function(tree) {' . |
170
|
|
|
|
|
|
|
'Ext.ux.RapidApp.AppTree.jump_to_node_id(tree,"' . $node . '");' . |
171
|
|
|
|
|
|
|
'}' |
172
|
|
|
|
|
|
|
) |
173
|
|
|
|
|
|
|
); |
174
|
|
|
|
|
|
|
} |
175
|
|
|
|
|
|
|
|
176
|
|
|
|
|
|
|
|
177
|
|
|
|
|
|
|
sub init_jump_to_node { |
178
|
11
|
|
|
11
|
0
|
20
|
my $self = shift; |
179
|
|
|
|
|
|
|
|
180
|
11
|
|
|
|
|
20
|
my $node; |
181
|
11
|
50
|
|
|
|
271
|
$node = $self->root_node_name if ($self->show_root_node); |
182
|
11
|
100
|
|
|
|
39
|
$node = $self->c->req->params->{node} if ($self->c->req->params->{node}); |
183
|
|
|
|
|
|
|
|
184
|
11
|
|
|
|
|
944
|
return $node; |
185
|
|
|
|
|
|
|
} |
186
|
|
|
|
|
|
|
|
187
|
|
|
|
|
|
|
# If set to true, child nodes are automatically fetched recursively: |
188
|
|
|
|
|
|
|
has 'fetch_nodes_deep', is => 'ro', isa => 'Bool', default => 0; |
189
|
|
|
|
|
|
|
|
190
|
|
|
|
|
|
|
# Auto-sets 'expanded' on nodes with child nodes (only applies to children nodes |
191
|
|
|
|
|
|
|
# loaded within 'call_fetch_nodes' because of 'fetch_nodes_deep' being set to true) |
192
|
|
|
|
|
|
|
has 'default_expanded', is => 'ro', isa => 'Bool', default => 0; |
193
|
|
|
|
|
|
|
|
194
|
|
|
|
|
|
|
|
195
|
|
|
|
|
|
|
## |
196
|
|
|
|
|
|
|
## |
197
|
|
|
|
|
|
|
## fetch_nodes(node_path) [Required] |
198
|
|
|
|
|
|
|
## method to fetch the tree dataUrl, first argument is the node path |
199
|
|
|
|
|
|
|
has 'fetch_nodes' => ( is => 'ro', default => sub { return []; } ); |
200
|
|
|
|
|
|
|
## |
201
|
|
|
|
|
|
|
|
202
|
|
|
|
|
|
|
|
203
|
|
|
|
|
|
|
## |
204
|
|
|
|
|
|
|
## show_root_node |
205
|
|
|
|
|
|
|
## whether or not to show the root node |
206
|
|
|
|
|
|
|
has 'show_root_node' => ( is => 'ro', default => 0 ); |
207
|
|
|
|
|
|
|
## |
208
|
|
|
|
|
|
|
|
209
|
|
|
|
|
|
|
## |
210
|
|
|
|
|
|
|
## root_node_name |
211
|
|
|
|
|
|
|
## Name of the root node (default 'root') |
212
|
|
|
|
|
|
|
has 'root_node_name' => ( is => 'ro', default => 'root' ); |
213
|
|
|
|
|
|
|
## |
214
|
|
|
|
|
|
|
|
215
|
|
|
|
|
|
|
|
216
|
|
|
|
|
|
|
## |
217
|
|
|
|
|
|
|
## root_node_text |
218
|
|
|
|
|
|
|
## text of the root node |
219
|
|
|
|
|
|
|
has 'root_node_text' => ( is => 'ro', lazy => 1, default => sub { (shift)->root_node_name; } ); |
220
|
|
|
|
|
|
|
## |
221
|
|
|
|
|
|
|
|
222
|
|
|
|
|
|
|
## |
223
|
|
|
|
|
|
|
## add_nodes: define as a method to support adding to the tree |
224
|
|
|
|
|
|
|
## |
225
|
|
|
|
|
|
|
|
226
|
|
|
|
|
|
|
|
227
|
|
|
|
|
|
|
sub apply_path_specific_node_opts { |
228
|
1
|
|
|
1
|
0
|
3
|
my $self = shift; |
229
|
1
|
|
|
|
|
1
|
my $node = shift; #<-- path of a parent node |
230
|
1
|
|
|
|
|
2
|
my $n = shift; |
231
|
|
|
|
|
|
|
|
232
|
1
|
50
|
|
|
|
5
|
return undef unless (exists $n->{id}); |
233
|
|
|
|
|
|
|
|
234
|
|
|
|
|
|
|
die "Invalid node definition: id can't be the same as the parent node ($node): " . Dumper($n) |
235
|
1
|
50
|
|
|
|
3
|
if($n->{id} eq $node); |
236
|
|
|
|
|
|
|
|
237
|
|
|
|
|
|
|
# The id should be a fully qualified '/' delim path prefixed with the (parent) node |
238
|
|
|
|
|
|
|
# path ($node supplied to this function). If it is not, assume it is a relative path |
239
|
|
|
|
|
|
|
# and prefix it automatically: |
240
|
1
|
50
|
|
|
|
25
|
$n->{id} = $node . '/' . $n->{id} unless ($n->{id} =~ /^\Q${node}\E/); |
241
|
|
|
|
|
|
|
|
242
|
|
|
|
|
|
|
# This is (imo) an ExtJS bug. It fixes the problem where empty nodes are automatically |
243
|
|
|
|
|
|
|
# made "leaf" nodes and get a stupid, non-folder default icon |
244
|
|
|
|
|
|
|
# http://www.sencha.com/forum/showthread.php?92553-Async-tree-make-empty-nodes-appear-as-quot-nodes-quot-not-quot-leaves-quot&p=441294&viewfull=1#post441294 |
245
|
1
|
50
|
|
|
|
5
|
$n->{cls} = 'x-tree-node-collapsed' unless (exists $n->{cls}); |
246
|
|
|
|
|
|
|
|
247
|
|
|
|
|
|
|
# legacy: |
248
|
1
|
50
|
33
|
|
|
4
|
$n->{expanded} = \1 if ($n->{expand} and ! exists $n->{expanded}); |
249
|
|
|
|
|
|
|
|
250
|
1
|
50
|
33
|
|
|
6
|
$n->{leaf} = \1 if (exists $n->{allowChildren} and ! jstrue($n->{allowChildren})); |
251
|
|
|
|
|
|
|
|
252
|
1
|
50
|
33
|
|
|
3
|
$n->{loaded} = \1 if(jstrue($n->{leaf}) and ! exists $n->{loaded}); |
253
|
|
|
|
|
|
|
|
254
|
1
|
|
|
|
|
4
|
return $n; |
255
|
|
|
|
|
|
|
} |
256
|
|
|
|
|
|
|
|
257
|
|
|
|
|
|
|
# Absolute maximum levels deep the whole tree can be |
258
|
|
|
|
|
|
|
has 'max_node_path_depth', is => 'ro', isa => 'Int', default => 100; |
259
|
|
|
|
|
|
|
|
260
|
|
|
|
|
|
|
# Max nested/recursive *single request* fetch depth that will be allowed. The tree can possibly |
261
|
|
|
|
|
|
|
# be deeper than this value, but it wouldn't be fetch-able in a single request |
262
|
|
|
|
|
|
|
has 'max_recursive_fetch_depth', is => 'ro', isa => 'Int', default => 3; |
263
|
|
|
|
|
|
|
|
264
|
|
|
|
|
|
|
our $DEEP_FETCH_DEPTH = 0; |
265
|
|
|
|
|
|
|
|
266
|
|
|
|
|
|
|
sub call_fetch_nodes { |
267
|
1
|
|
|
1
|
0
|
2
|
my $self = shift; |
268
|
1
|
|
33
|
|
|
7
|
my $node = shift || $self->c->req->params->{node}; |
269
|
|
|
|
|
|
|
|
270
|
1
|
|
|
|
|
72
|
my @node_pth = split(/\//,$node); |
271
|
1
|
50
|
|
|
|
30
|
die usererr "max_node_path_depth (" . $self->max_node_path_depth . ") exceeded ($node)" |
272
|
|
|
|
|
|
|
if (scalar(@node_pth) > $self->max_node_path_depth); |
273
|
|
|
|
|
|
|
|
274
|
|
|
|
|
|
|
#Track recursive depth: |
275
|
1
|
|
|
|
|
2
|
local $DEEP_FETCH_DEPTH = $DEEP_FETCH_DEPTH + 1; |
276
|
|
|
|
|
|
|
|
277
|
|
|
|
|
|
|
# It shouldn't be possible to exceed 'max_recursive_fetch_depth': |
278
|
1
|
50
|
|
|
|
48
|
die "call_fetch_nodes deep recursion stopped at depth $DEEP_FETCH_DEPTH ($node)!!" |
279
|
|
|
|
|
|
|
if($DEEP_FETCH_DEPTH > $self->max_recursive_fetch_depth); |
280
|
|
|
|
|
|
|
|
281
|
|
|
|
|
|
|
|
282
|
|
|
|
|
|
|
###### |
283
|
|
|
|
|
|
|
###### |
284
|
1
|
|
|
|
|
7
|
my $nodes = clone($self->fetch_nodes($node)); |
285
|
|
|
|
|
|
|
###### |
286
|
|
|
|
|
|
|
###### |
287
|
|
|
|
|
|
|
|
288
|
1
|
|
|
|
|
10
|
$nodes = $self->filter_nodes_recursive($nodes); |
289
|
|
|
|
|
|
|
|
290
|
1
|
50
|
|
|
|
5
|
die "Error: 'fetch_nodes()' was supposed to return an ArrayRef, but instead it returned: " . Dumper($nodes) |
291
|
|
|
|
|
|
|
unless (ref($nodes) eq 'ARRAY'); |
292
|
|
|
|
|
|
|
|
293
|
1
|
|
|
|
|
3
|
my %seen_id = (); |
294
|
|
|
|
|
|
|
|
295
|
1
|
|
|
|
|
3
|
foreach my $n (@$nodes) { |
296
|
|
|
|
|
|
|
die "Invalid node definition: duplicate id ($n->{id}): " . Dumper($n) |
297
|
1
|
50
|
33
|
|
|
8
|
if($n->{id} && $seen_id{$n->{id}}++); |
298
|
|
|
|
|
|
|
|
299
|
1
|
|
|
|
|
9
|
$self->prepare_node($n,$node); |
300
|
|
|
|
|
|
|
} |
301
|
|
|
|
|
|
|
|
302
|
1
|
|
|
|
|
14
|
return $nodes; |
303
|
|
|
|
|
|
|
} |
304
|
|
|
|
|
|
|
|
305
|
|
|
|
|
|
|
sub node_allowed { |
306
|
12
|
|
|
12
|
0
|
16
|
my $self = shift; |
307
|
12
|
50
|
|
|
|
19
|
my $node = shift or return 0; |
308
|
|
|
|
|
|
|
|
309
|
|
|
|
|
|
|
( $self->role_checker |
310
|
|
|
|
|
|
|
&& $node->{require_role} |
311
|
|
|
|
|
|
|
&& ! $self->role_checker->($self->c,$_->{require_role}) |
312
|
12
|
50
|
33
|
|
|
274
|
) ? 0 : 1 |
313
|
|
|
|
|
|
|
} |
314
|
|
|
|
|
|
|
|
315
|
|
|
|
|
|
|
sub filter_nodes_recursive { |
316
|
25
|
|
|
25
|
0
|
29
|
my $self = shift; |
317
|
25
|
|
|
|
|
27
|
my $nodes = shift; |
318
|
25
|
100
|
50
|
|
|
56
|
if((ref($nodes)||'') eq 'HASH') { |
|
|
50
|
50
|
|
|
|
|
319
|
12
|
50
|
|
|
|
20
|
if($nodes->{children}) { |
320
|
12
|
|
|
|
|
16
|
$nodes->{children} = $self->filter_nodes_recursive($nodes->{children}); |
321
|
|
|
|
|
|
|
} |
322
|
12
|
|
|
|
|
21
|
return $nodes; |
323
|
|
|
|
|
|
|
} |
324
|
|
|
|
|
|
|
elsif((ref($nodes)||'') eq 'ARRAY') { |
325
|
|
|
|
|
|
|
@$nodes = |
326
|
12
|
|
|
|
|
17
|
map { $self->filter_nodes_recursive($_) } |
327
|
13
|
|
|
|
|
16
|
grep { $self->node_allowed($_) } |
|
12
|
|
|
|
|
21
|
|
328
|
|
|
|
|
|
|
@$nodes; |
329
|
13
|
|
|
|
|
20
|
return $nodes; |
330
|
|
|
|
|
|
|
} |
331
|
|
|
|
|
|
|
else { |
332
|
0
|
|
|
|
|
0
|
return $nodes |
333
|
|
|
|
|
|
|
} |
334
|
|
|
|
|
|
|
} |
335
|
|
|
|
|
|
|
|
336
|
|
|
|
|
|
|
sub prepare_node { |
337
|
1
|
|
|
1
|
0
|
2
|
my ($self, $n, $parent) = @_; |
338
|
|
|
|
|
|
|
|
339
|
1
|
50
|
33
|
|
|
8
|
if (jstrue($n->{leaf}) or (exists $n->{allowChildren} and ! jstrue($n->{allowChildren}))) { |
|
|
|
33
|
|
|
|
|
340
|
0
|
0
|
|
|
|
0
|
$n->{loaded} = \1 unless (exists $n->{loaded}); |
341
|
0
|
|
|
|
|
0
|
return $n; |
342
|
|
|
|
|
|
|
} |
343
|
|
|
|
|
|
|
|
344
|
1
|
50
|
|
|
|
4
|
if($parent) { |
345
|
1
|
50
|
|
|
|
6
|
$self->apply_path_specific_node_opts($parent,$n) or return $n; |
346
|
|
|
|
|
|
|
} |
347
|
|
|
|
|
|
|
|
348
|
|
|
|
|
|
|
## If we've gotten this far, it means the current node can contain child nodes |
349
|
|
|
|
|
|
|
|
350
|
1
|
|
|
|
|
2
|
my $recurse = 0; |
351
|
|
|
|
|
|
|
$recurse = 1 if ( |
352
|
|
|
|
|
|
|
( $self->fetch_nodes_deep or jstrue($n->{expanded}) ) |
353
|
|
|
|
|
|
|
and ! exists $n->{children} |
354
|
|
|
|
|
|
|
and ! jstrue($n->{loaded}) |
355
|
1
|
0
|
33
|
|
|
33
|
and $DEEP_FETCH_DEPTH < $self->max_recursive_fetch_depth |
|
|
|
33
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
33
|
|
|
|
|
356
|
|
|
|
|
|
|
); |
357
|
|
|
|
|
|
|
|
358
|
1
|
50
|
|
|
|
4
|
if($recurse) { # Pre-fetch child nodes automatically: |
359
|
0
|
|
|
|
|
0
|
my $children = $self->call_fetch_nodes($n->{id}); |
360
|
0
|
0
|
|
|
|
0
|
if(@$children > 0) { |
361
|
0
|
|
|
|
|
0
|
$n->{children} = $children; |
362
|
0
|
0
|
0
|
|
|
0
|
$n->{expanded} = \1 if ($self->default_expanded and ! exists $n->{expanded}); |
363
|
|
|
|
|
|
|
} |
364
|
|
|
|
|
|
|
else { |
365
|
|
|
|
|
|
|
# Set loaded to true if this node is empty (prevents being initialized with a +/- toggle): |
366
|
0
|
0
|
|
|
|
0
|
$n->{loaded} = \1 unless (exists $n->{loaded}); |
367
|
|
|
|
|
|
|
} |
368
|
|
|
|
|
|
|
} |
369
|
|
|
|
|
|
|
|
370
|
|
|
|
|
|
|
# WARNING: note that setting 'children' of a node to an empty array will prevent subsequent |
371
|
|
|
|
|
|
|
# ajax loading of the node's children (should any exist later) |
372
|
|
|
|
|
|
|
|
373
|
|
|
|
|
|
|
$n |
374
|
1
|
|
|
|
|
3
|
} |
375
|
|
|
|
|
|
|
|
376
|
|
|
|
|
|
|
|
377
|
|
|
|
|
|
|
sub call_fetch_node { |
378
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
379
|
0
|
|
|
|
|
|
my $node = $self->c->req->params->{node}; |
380
|
0
|
|
|
|
|
|
my $n = $self->fetch_node($node); |
381
|
0
|
|
|
|
|
|
$self->prepare_node($n); |
382
|
0
|
|
|
|
|
|
$n |
383
|
|
|
|
|
|
|
} |
384
|
|
|
|
|
|
|
|
385
|
|
|
|
|
|
|
sub call_add_node { |
386
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
387
|
0
|
|
|
|
|
|
my $params = clone($self->c->req->params); |
388
|
0
|
|
|
|
|
|
my $name = $params->{name}; |
389
|
0
|
|
|
|
|
|
my $node = $params->{node}; |
390
|
0
|
|
|
|
|
|
my $data = $self->add_node($name,$node,$params); |
391
|
|
|
|
|
|
|
|
392
|
|
|
|
|
|
|
# The config/params of the created node should have been returned in the 'child' key: |
393
|
0
|
0
|
|
|
|
|
if ($data->{child}) { |
394
|
0
|
|
|
|
|
|
my $n = $data->{child}; |
395
|
0
|
0
|
|
|
|
|
die "id was not returned in 'child'" unless (exists $n->{id}); |
396
|
0
|
|
|
|
|
|
$self->apply_path_specific_node_opts($node,$n); |
397
|
|
|
|
|
|
|
|
398
|
|
|
|
|
|
|
# Assume the new node doesn't have any children yet and force to loaded/expanded: |
399
|
|
|
|
|
|
|
# (todo: it is conceivable that a new node might be created with children, add support for this in the future) |
400
|
0
|
|
|
|
|
|
$n->{loaded} = \1; |
401
|
0
|
|
|
|
|
|
$n->{expanded} = \1; |
402
|
|
|
|
|
|
|
} |
403
|
|
|
|
|
|
|
|
404
|
0
|
|
|
|
|
|
return $data; |
405
|
|
|
|
|
|
|
} |
406
|
|
|
|
|
|
|
|
407
|
|
|
|
|
|
|
sub call_delete_node { |
408
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
409
|
0
|
|
|
|
|
|
my $name = $self->c->req->params->{name}; |
410
|
0
|
|
|
|
|
|
my $node = $self->c->req->params->{node}; |
411
|
0
|
|
|
|
|
|
my $recursive = $self->c->req->params->{recursive}; |
412
|
0
|
|
|
|
|
|
return $self->delete_node($node,$recursive); |
413
|
|
|
|
|
|
|
} |
414
|
|
|
|
|
|
|
|
415
|
|
|
|
|
|
|
sub call_rename_node { |
416
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
417
|
0
|
|
|
|
|
|
my $params = clone($self->c->req->params); |
418
|
0
|
|
|
|
|
|
my $name = $params->{name}; |
419
|
0
|
|
|
|
|
|
my $node = $params->{node}; |
420
|
0
|
|
|
|
|
|
return $self->rename_node($node,$name,$params); |
421
|
|
|
|
|
|
|
} |
422
|
|
|
|
|
|
|
|
423
|
|
|
|
|
|
|
sub call_expand_node { |
424
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
425
|
0
|
0
|
|
|
|
|
my $node = shift; $node = $self->c->req->params->{node} unless (defined $node); |
|
0
|
|
|
|
|
|
|
426
|
0
|
0
|
|
|
|
|
my $expanded = shift; $expanded = $self->c->req->params->{expanded} unless (defined $expanded); |
|
0
|
|
|
|
|
|
|
427
|
|
|
|
|
|
|
|
428
|
|
|
|
|
|
|
# -- Handle optional batched updates: |
429
|
0
|
0
|
0
|
|
|
|
if (ref($node) eq 'ARRAY' or ref($expanded) eq 'ARRAY') { |
430
|
0
|
0
|
0
|
|
|
|
die "batch expand_node update data mismatch" unless ( |
|
|
|
0
|
|
|
|
|
431
|
|
|
|
|
|
|
ref($node) eq 'ARRAY' and |
432
|
|
|
|
|
|
|
ref($expanded) eq 'ARRAY' and |
433
|
|
|
|
|
|
|
scalar @$node == scalar @$expanded #<-- both should be arrays of equal length |
434
|
|
|
|
|
|
|
); |
435
|
|
|
|
|
|
|
|
436
|
0
|
|
|
|
|
|
my $num = scalar @$node; |
437
|
|
|
|
|
|
|
|
438
|
0
|
|
|
|
|
|
for(my $i = 0; $i < $num; $i++) { |
439
|
0
|
|
|
|
|
|
$self->call_expand_node($node->[$i],$expanded->[$i]); |
440
|
|
|
|
|
|
|
}; |
441
|
|
|
|
|
|
|
|
442
|
|
|
|
|
|
|
# Note: we don't actually check if this was successful on each call above... |
443
|
|
|
|
|
|
|
# Currently we can't really do anything about it if it didn't work, the info is |
444
|
|
|
|
|
|
|
# not important enough to subject the client to remediations/complexity. This should |
445
|
|
|
|
|
|
|
# probably be handled properly in the future, though |
446
|
|
|
|
|
|
|
return { |
447
|
0
|
|
|
|
|
|
msg => 'Set Expanded State of ' . $num . ' nodes', |
448
|
|
|
|
|
|
|
success => \1, |
449
|
|
|
|
|
|
|
}; |
450
|
|
|
|
|
|
|
} |
451
|
|
|
|
|
|
|
# -- |
452
|
|
|
|
|
|
|
|
453
|
0
|
0
|
0
|
|
|
|
$expanded = 0 if ($expanded eq '0' || $expanded eq 'false'); |
454
|
|
|
|
|
|
|
return { |
455
|
0
|
0
|
|
|
|
|
msg => 'Set Expanded', |
|
|
0
|
|
|
|
|
|
456
|
|
|
|
|
|
|
success => \1, |
457
|
|
|
|
|
|
|
} if ( $self->expand_node($node,$expanded ? 1 : 0) ); |
458
|
|
|
|
|
|
|
|
459
|
|
|
|
|
|
|
# Doesn't do anything, informational only: |
460
|
|
|
|
|
|
|
return { |
461
|
0
|
|
|
|
|
|
msg => 'note: expand_node did not return true', |
462
|
|
|
|
|
|
|
success => \0, |
463
|
|
|
|
|
|
|
} |
464
|
|
|
|
|
|
|
} |
465
|
|
|
|
|
|
|
|
466
|
|
|
|
|
|
|
sub call_copy_node { |
467
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
468
|
0
|
|
|
|
|
|
my $node = $self->c->req->params->{node}; |
469
|
0
|
|
|
|
|
|
my $target = $self->c->req->params->{target}; |
470
|
0
|
|
|
|
|
|
my $name = $self->c->req->params->{name}; |
471
|
|
|
|
|
|
|
|
472
|
|
|
|
|
|
|
# point and point_node will be defined for positional information, if |
473
|
|
|
|
|
|
|
# a node is dragged in-between 2 nodes (point above/below instead of append) |
474
|
|
|
|
|
|
|
# point_node is undef if point is append |
475
|
0
|
|
|
|
|
|
my $point_node = $self->c->req->params->{point_node}; |
476
|
0
|
|
|
|
|
|
my $point = $self->c->req->params->{point}; |
477
|
|
|
|
|
|
|
|
478
|
0
|
|
|
|
|
|
my $data = $self->copy_node($node,$target,$point,$point_node,$name); |
479
|
|
|
|
|
|
|
|
480
|
0
|
0
|
0
|
|
|
|
die "copy_node() returned invalid data" unless (ref($data) eq 'HASH' and $data->{child}); |
481
|
|
|
|
|
|
|
|
482
|
|
|
|
|
|
|
# The config/params of the created node should have been returned in the 'child' key: |
483
|
0
|
0
|
|
|
|
|
if ($data->{child}) { |
484
|
0
|
|
|
|
|
|
my $n = $data->{child}; |
485
|
0
|
0
|
|
|
|
|
die "id was not returned in 'child'" unless (exists $n->{id}); |
486
|
0
|
|
|
|
|
|
$self->apply_path_specific_node_opts($target,$n); |
487
|
|
|
|
|
|
|
|
488
|
|
|
|
|
|
|
## Assume the new node doesn't have any children yet and force to loaded/expanded: |
489
|
|
|
|
|
|
|
## (todo: it is conceivable that a new node might be created with children, add support for this in the future) |
490
|
|
|
|
|
|
|
#$n->{loaded} = \1; |
491
|
|
|
|
|
|
|
#$n->{expanded} = \1; |
492
|
|
|
|
|
|
|
} |
493
|
|
|
|
|
|
|
|
494
|
|
|
|
|
|
|
# Setting this so it can be picked up in javascript to add the new child next to |
495
|
|
|
|
|
|
|
# the copied node instead of within it (this logic was borrowed from add originally |
496
|
|
|
|
|
|
|
# and extended for copy) TODO: clean up this API |
497
|
0
|
|
|
|
|
|
$data->{child_after} = \1; |
498
|
|
|
|
|
|
|
|
499
|
0
|
|
|
|
|
|
return $data; |
500
|
|
|
|
|
|
|
} |
501
|
|
|
|
|
|
|
|
502
|
|
|
|
|
|
|
sub call_move_node { |
503
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
504
|
0
|
|
|
|
|
|
my $node = $self->c->req->params->{node}; |
505
|
0
|
|
|
|
|
|
my $target = $self->c->req->params->{target}; |
506
|
|
|
|
|
|
|
|
507
|
|
|
|
|
|
|
# point and point_node will be defined for positional information, if |
508
|
|
|
|
|
|
|
# a node is dragged in-between 2 nodes (point above/below instead of append) |
509
|
|
|
|
|
|
|
# point_node is undef if point is append |
510
|
0
|
|
|
|
|
|
my $point_node = $self->c->req->params->{point_node}; |
511
|
0
|
|
|
|
|
|
my $point = $self->c->req->params->{point}; |
512
|
|
|
|
|
|
|
|
513
|
|
|
|
|
|
|
return { |
514
|
0
|
0
|
|
|
|
|
msg => 'Moved', |
515
|
|
|
|
|
|
|
success => \1, |
516
|
|
|
|
|
|
|
} if ( $self->move_node($node,$target,$point,$point_node) ); |
517
|
|
|
|
|
|
|
|
518
|
0
|
|
|
|
|
|
die usererr "Move failed!"; |
519
|
|
|
|
|
|
|
} |
520
|
|
|
|
|
|
|
|
521
|
|
|
|
|
|
|
|
522
|
|
|
|
|
|
|
has 'root_node' => ( is => 'ro', lazy => 1, default => sub { |
523
|
|
|
|
|
|
|
my $self = shift; |
524
|
|
|
|
|
|
|
return { |
525
|
|
|
|
|
|
|
nodeType => 'async', |
526
|
|
|
|
|
|
|
id => $self->root_node_name, |
527
|
|
|
|
|
|
|
text => $self->root_node_text, |
528
|
|
|
|
|
|
|
draggable => \0 |
529
|
|
|
|
|
|
|
}; |
530
|
|
|
|
|
|
|
}); |
531
|
|
|
|
|
|
|
|
532
|
|
|
|
|
|
|
|
533
|
|
|
|
|
|
|
|
534
|
|
|
|
|
|
|
# Note: the client JavaScript (AppTree) handles setup of the tbar by default, however, |
535
|
|
|
|
|
|
|
# it can be overridden in the tbar attribute. The commented out lines are being left for reference |
536
|
|
|
|
|
|
|
has 'tbar', is => 'ro', lazy => 1, default => sub { undef }; |
537
|
|
|
|
|
|
|
|
538
|
|
|
|
|
|
|
#has 'tbar' => ( is => 'ro', lazy => 1, default => sub { |
539
|
|
|
|
|
|
|
# my $self = shift; |
540
|
|
|
|
|
|
|
# return undef; |
541
|
|
|
|
|
|
|
# return ['->']; |
542
|
|
|
|
|
|
|
# |
543
|
|
|
|
|
|
|
# my $tbar = []; |
544
|
|
|
|
|
|
|
# |
545
|
|
|
|
|
|
|
# push @$tbar, $self->delete_button if ($self->can('delete_node')); |
546
|
|
|
|
|
|
|
# push @$tbar, $self->add_button if ($self->can('add_node')); |
547
|
|
|
|
|
|
|
# |
548
|
|
|
|
|
|
|
# return undef unless (scalar @$tbar > 0); |
549
|
|
|
|
|
|
|
# |
550
|
|
|
|
|
|
|
# unshift @$tbar, '->'; |
551
|
|
|
|
|
|
|
# |
552
|
|
|
|
|
|
|
# return $tbar; |
553
|
|
|
|
|
|
|
#}); |
554
|
|
|
|
|
|
|
# |
555
|
|
|
|
|
|
|
# |
556
|
|
|
|
|
|
|
#sub add_button { |
557
|
|
|
|
|
|
|
# my $self = shift; |
558
|
|
|
|
|
|
|
# |
559
|
|
|
|
|
|
|
# return RapidApp::JSONFunc->new( |
560
|
|
|
|
|
|
|
# func => 'new Ext.Button', |
561
|
|
|
|
|
|
|
# parm => { |
562
|
|
|
|
|
|
|
# text => $self->add_button_text, |
563
|
|
|
|
|
|
|
# iconCls => $self->add_button_iconCls, |
564
|
|
|
|
|
|
|
# handler => RapidApp::JSONFunc->new( |
565
|
|
|
|
|
|
|
# raw => 1, |
566
|
|
|
|
|
|
|
# func => 'function(btn) { ' . |
567
|
|
|
|
|
|
|
# 'var tree = btn.ownerCt.ownerCt;'. |
568
|
|
|
|
|
|
|
# 'tree.nodeAdd();' . |
569
|
|
|
|
|
|
|
# #'tree.nodeAdd(tree.activeNonLeafNode());' . |
570
|
|
|
|
|
|
|
# '}' |
571
|
|
|
|
|
|
|
# ) |
572
|
|
|
|
|
|
|
# }); |
573
|
|
|
|
|
|
|
#} |
574
|
|
|
|
|
|
|
# |
575
|
|
|
|
|
|
|
# |
576
|
|
|
|
|
|
|
#sub delete_button { |
577
|
|
|
|
|
|
|
# my $self = shift; |
578
|
|
|
|
|
|
|
# |
579
|
|
|
|
|
|
|
# return RapidApp::JSONFunc->new( |
580
|
|
|
|
|
|
|
# func => 'new Ext.Button', |
581
|
|
|
|
|
|
|
# parm => { |
582
|
|
|
|
|
|
|
# tooltip => $self->delete_button_text, |
583
|
|
|
|
|
|
|
# iconCls => $self->delete_button_iconCls, |
584
|
|
|
|
|
|
|
# handler => RapidApp::JSONFunc->new( |
585
|
|
|
|
|
|
|
# raw => 1, |
586
|
|
|
|
|
|
|
# func => 'function(btn) { ' . |
587
|
|
|
|
|
|
|
# 'var tree = btn.ownerCt.ownerCt;'. |
588
|
|
|
|
|
|
|
# 'tree.nodeDelete(tree.getSelectionModel().getSelectedNode());' . |
589
|
|
|
|
|
|
|
# #'Ext.ux.RapidApp.AppTree.del(tree,"' . $self->suburl('/delete') . '");' . |
590
|
|
|
|
|
|
|
# |
591
|
|
|
|
|
|
|
# '}' |
592
|
|
|
|
|
|
|
# ) |
593
|
|
|
|
|
|
|
# }); |
594
|
|
|
|
|
|
|
#} |
595
|
|
|
|
|
|
|
# |
596
|
|
|
|
|
|
|
|
597
|
|
|
|
|
|
|
|
598
|
|
|
|
|
|
|
|
599
|
|
|
|
|
|
|
#### --------------------- #### |
600
|
|
|
|
|
|
|
|
601
|
|
|
|
|
|
|
|
602
|
|
|
|
|
|
|
#no Moose; |
603
|
|
|
|
|
|
|
#__PACKAGE__->meta->make_immutable; |
604
|
|
|
|
|
|
|
1; |