Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
todomvc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eugene Shen
todomvc
Commits
8c48866b
Commit
8c48866b
authored
Aug 04, 2013
by
Pascal Hartig
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
firebase-angular: refactor controller
parent
20100b51
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
68 additions
and
65 deletions
+68
-65
labs/architecture-examples/firebase-angular/js/controllers/todoCtrl.js
...ture-examples/firebase-angular/js/controllers/todoCtrl.js
+68
-65
No files found.
labs/architecture-examples/firebase-angular/js/controllers/todoCtrl.js
View file @
8c48866b
/*global todomvc, angular */
/*global todomvc, angular
, Firebase
*/
'
use strict
'
;
'
use strict
'
;
/**
/**
...
@@ -7,28 +7,15 @@
...
@@ -7,28 +7,15 @@
* - exposes the model to the template and provides event handlers
* - exposes the model to the template and provides event handlers
*/
*/
todomvc
.
controller
(
'
TodoCtrl
'
,
function
TodoCtrl
(
$scope
,
$location
,
angularFire
)
{
todomvc
.
controller
(
'
TodoCtrl
'
,
function
TodoCtrl
(
$scope
,
$location
,
angularFire
)
{
var
url
=
'
https://todomvc-angular.firebaseio.com/
'
;
this
.
onDataLoaded
=
function
onDataLoaded
(
$scope
,
$location
,
url
)
{
$scope
.
newTodo
=
''
;
$scope
.
editedTodo
=
null
;
if
(
$location
.
path
()
===
''
)
{
$location
.
path
(
'
/
'
);
}
$scope
.
location
=
$location
;
angularFire
(
url
,
$scope
,
'
todos
'
,
{}).
then
(
function
()
{
onDataLoaded
(
$scope
,
$location
,
url
);
});
});
function
onDataLoaded
(
$scope
,
$location
,
url
)
{
$scope
.
$watch
(
'
todos
'
,
function
()
{
$scope
.
$watch
(
'
todos
'
,
function
()
{
var
total
=
0
;
var
total
=
0
;
var
remaining
=
0
;
var
remaining
=
0
;
angular
.
forEach
(
$scope
.
todos
,
function
(
todo
)
{
angular
.
forEach
(
$scope
.
todos
,
function
(
todo
)
{
total
++
;
total
++
;
if
(
todo
.
completed
===
false
)
remaining
++
;
if
(
todo
.
completed
===
false
)
{
remaining
++
;
}
});
});
$scope
.
remainingCount
=
remaining
;
$scope
.
remainingCount
=
remaining
;
$scope
.
completedCount
=
total
-
remaining
;
$scope
.
completedCount
=
total
-
remaining
;
...
@@ -72,7 +59,9 @@ function onDataLoaded($scope, $location, url) {
...
@@ -72,7 +59,9 @@ function onDataLoaded($scope, $location, url) {
$scope
.
clearCompletedTodos
=
function
()
{
$scope
.
clearCompletedTodos
=
function
()
{
var
notCompleted
=
{};
var
notCompleted
=
{};
angular
.
forEach
(
$scope
.
todos
,
function
(
todo
,
id
)
{
angular
.
forEach
(
$scope
.
todos
,
function
(
todo
,
id
)
{
if
(
!
todo
.
completed
)
notCompleted
[
id
]
=
todo
;
if
(
!
todo
.
completed
)
{
notCompleted
[
id
]
=
todo
;
}
});
});
$scope
.
todos
=
notCompleted
;
$scope
.
todos
=
notCompleted
;
};
};
...
@@ -82,4 +71,18 @@ function onDataLoaded($scope, $location, url) {
...
@@ -82,4 +71,18 @@ function onDataLoaded($scope, $location, url) {
todo
.
completed
=
completed
;
todo
.
completed
=
completed
;
});
});
};
};
}
};
\ No newline at end of file
var
url
=
'
https://todomvc-angular.firebaseio.com/
'
;
$scope
.
newTodo
=
''
;
$scope
.
editedTodo
=
null
;
if
(
$location
.
path
()
===
''
)
{
$location
.
path
(
'
/
'
);
}
$scope
.
location
=
$location
;
angularFire
(
url
,
$scope
,
'
todos
'
,
{}).
then
(
function
()
{
this
.
onDataLoaded
(
$scope
,
$location
,
url
);
}.
bind
(
this
));
});
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