Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
565ee8ef
authored
Apr 26, 2013
by
Bence Dányi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
firewall_gui: generic list controller for any list
parent
30a6c788
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
75 deletions
+36
-75
firewall_gui/static/js/project.js
+36
-75
No files found.
firewall_gui/static/js/project.js
View file @
565ee8ef
...
...
@@ -2,10 +2,10 @@ var module = angular.module('firewall', []).config(
[
'$routeProvider'
,
function
(
$routeProvider
)
{
$routeProvider
.
when
(
'/rules/'
,
{
templateUrl
:
'/static/partials/rule-list.html'
,
controller
:
RuleListCtrl
controller
:
ListController
(
'/firewall/rules/'
)
}).
when
(
'/hosts/'
,
{
templateUrl
:
'/static/partials/host-list.html'
,
controller
:
HostListCtrl
controller
:
ListController
(
'/firewall/hosts/'
)
}).
otherwise
({
redirectTo
:
'/rules/'
...
...
@@ -30,80 +30,41 @@ function matchAnything(obj, query) {
return
false
;
}
function
RuleListCtrl
(
$scope
,
$http
)
{
$scope
.
page
=
1
;
var
rules
=
[];
var
pageSize
=
10
;
var
itemCount
=
0
;
$scope
.
getPage
=
function
()
{
var
res
=
[];
if
(
$scope
.
query
)
{
for
(
var
i
in
rules
)
{
var
rule
=
rules
[
i
];
if
(
matchAnything
(
rule
,
$scope
.
query
))
{
res
.
push
(
rule
);
function
ListController
(
url
)
{
return
function
(
$scope
,
$http
)
{
$scope
.
page
=
1
;
var
rules
=
[];
var
pageSize
=
10
;
var
itemCount
=
0
;
$scope
.
getPage
=
function
()
{
var
res
=
[];
if
(
$scope
.
query
)
{
for
(
var
i
in
rules
)
{
var
rule
=
rules
[
i
];
if
(
matchAnything
(
rule
,
$scope
.
query
))
{
res
.
push
(
rule
);
}
}
}
}
else
{
res
=
rules
;
}
$scope
.
pages
=
range
(
1
,
Math
.
ceil
(
res
.
length
/
pageSize
));
$scope
.
page
=
Math
.
min
(
$scope
.
page
,
$scope
.
pages
.
length
);
return
res
.
slice
((
$scope
.
page
-
1
)
*
pageSize
,
$scope
.
page
*
pageSize
);
};
$scope
.
setPage
=
function
(
page
)
{
$scope
.
page
=
page
;
};
$scope
.
nextPage
=
function
()
{
$scope
.
page
=
Math
.
min
(
$scope
.
page
+
1
,
$scope
.
pages
.
length
);
};
$scope
.
prevPage
=
function
()
{
$scope
.
page
=
Math
.
max
(
$scope
.
page
-
1
,
1
);
};
$http
.
get
(
'/firewall/rules/'
).
success
(
function
success
(
data
)
{
console
.
log
(
'foo'
);
rules
=
data
;
$scope
.
pages
=
range
(
1
,
Math
.
ceil
(
data
.
length
/
pageSize
));
console
.
log
(
$scope
.
pages
);
});
}
function
HostListCtrl
(
$scope
,
$http
)
{
$scope
.
page
=
1
;
var
rules
=
[];
var
pageSize
=
10
;
var
itemCount
=
0
;
$scope
.
getPage
=
function
()
{
var
res
=
[];
if
(
$scope
.
query
)
{
for
(
var
i
in
rules
)
{
var
rule
=
rules
[
i
];
if
(
matchAnything
(
rule
,
$scope
.
query
))
{
res
.
push
(
rule
);
}
}
else
{
res
=
rules
;
}
}
else
{
res
=
rules
;
}
$scope
.
pages
=
range
(
1
,
Math
.
ceil
(
res
.
length
/
pageSize
));
$scope
.
page
=
Math
.
min
(
$scope
.
page
,
$scope
.
pages
.
length
);
return
res
.
slice
((
$scope
.
page
-
1
)
*
pageSize
,
$scope
.
page
*
pageSize
);
};
$scope
.
setPage
=
function
(
page
)
{
$scope
.
page
=
page
;
};
$scope
.
nextPage
=
function
()
{
$scope
.
page
=
Math
.
min
(
$scope
.
page
+
1
,
$scope
.
pages
.
length
);
};
$scope
.
prevPage
=
function
()
{
$scope
.
page
=
Math
.
max
(
$scope
.
page
-
1
,
1
);
};
$http
.
get
(
'/firewall/hosts/'
).
success
(
function
success
(
data
)
{
console
.
log
(
'foo'
);
rules
=
data
;
$scope
.
pages
=
range
(
1
,
Math
.
ceil
(
data
.
length
/
pageSize
));
console
.
log
(
$scope
.
pages
);
});
$scope
.
pages
=
range
(
1
,
Math
.
ceil
(
res
.
length
/
pageSize
));
$scope
.
page
=
Math
.
min
(
$scope
.
page
,
$scope
.
pages
.
length
);
return
res
.
slice
((
$scope
.
page
-
1
)
*
pageSize
,
$scope
.
page
*
pageSize
);
};
$scope
.
setPage
=
function
(
page
)
{
$scope
.
page
=
page
;
};
$scope
.
nextPage
=
function
()
{
$scope
.
page
=
Math
.
min
(
$scope
.
page
+
1
,
$scope
.
pages
.
length
);
};
$scope
.
prevPage
=
function
()
{
$scope
.
page
=
Math
.
max
(
$scope
.
page
-
1
,
1
);
};
$http
.
get
(
url
).
success
(
function
success
(
data
)
{
rules
=
data
;
$scope
.
pages
=
range
(
1
,
Math
.
ceil
(
data
.
length
/
pageSize
));
});
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment