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
f50d5507
Commit
f50d5507
authored
Nov 25, 2015
by
Sam Saccone
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1530 from dmethvin/kjs-require
knockoutjs_require: Cancel edits using Escape key
parents
77201888
d9abbdbd
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
23 deletions
+35
-23
examples/knockoutjs_require/index.html
examples/knockoutjs_require/index.html
+1
-1
examples/knockoutjs_require/js/config/global.js
examples/knockoutjs_require/js/config/global.js
+1
-0
examples/knockoutjs_require/js/extends/handlers.js
examples/knockoutjs_require/js/extends/handlers.js
+23
-20
examples/knockoutjs_require/js/viewmodels/todo.js
examples/knockoutjs_require/js/viewmodels/todo.js
+10
-2
No files found.
examples/knockoutjs_require/index.html
View file @
f50d5507
...
...
@@ -22,7 +22,7 @@
<label
data-bind=
"text: title, event: { dblclick: $root.editItem }"
></label>
<button
class=
"destroy"
data-bind=
"click: $root.remove"
></button>
</div>
<input
class=
"edit"
data-bind=
"value: title, valueUpdate: 'afterkeydown', enterKey: $root.stopEditing, selectAndFocus: editing, event: { blur: $root.stopEditing }"
>
<input
class=
"edit"
data-bind=
"value: title, valueUpdate: 'afterkeydown', enterKey: $root.stopEditing,
escapeKey: $root.cancelEditing,
selectAndFocus: editing, event: { blur: $root.stopEditing }"
>
</li>
</ul>
</section>
...
...
examples/knockoutjs_require/js/config/global.js
View file @
f50d5507
...
...
@@ -4,5 +4,6 @@
define
({
ENTER_KEY
:
13
,
ESCAPE_KEY
:
27
,
localStorageItem
:
'
todos-knockout-require
'
});
examples/knockoutjs_require/js/extends/handlers.js
View file @
f50d5507
...
...
@@ -6,15 +6,14 @@ define([
],
function
(
ko
,
g
)
{
'
use strict
'
;
// a custom binding to handle the enter key (could go in a separate library)
ko
.
bindingHandlers
.
enterKey
=
{
function
keyupBindingFactory
(
keyCode
)
{
return
{
init
:
function
(
element
,
valueAccessor
,
allBindingsAccessor
,
data
,
bindingContext
)
{
var
wrappedHandler
;
var
newValueAccessor
;
var
wrappedHandler
,
newValueAccessor
;
// wrap the handler with a check for the enter key
wrappedHandler
=
function
(
data
,
event
)
{
if
(
event
.
keyCode
===
g
.
ENTER_KEY
)
{
if
(
event
.
keyCode
===
keyCode
)
{
valueAccessor
().
call
(
this
,
data
,
event
);
}
};
...
...
@@ -30,6 +29,10 @@ define([
ko
.
bindingHandlers
.
event
.
init
(
element
,
newValueAccessor
,
allBindingsAccessor
,
data
,
bindingContext
);
}
};
}
ko
.
bindingHandlers
.
enterKey
=
keyupBindingFactory
(
g
.
ENTER_KEY
);
ko
.
bindingHandlers
.
escapeKey
=
keyupBindingFactory
(
g
.
ESCAPE_KEY
);
// wrapper to hasfocus that also selects text and applies focus async
ko
.
bindingHandlers
.
selectAndFocus
=
{
...
...
examples/knockoutjs_require/js/viewmodels/todo.js
View file @
f50d5507
...
...
@@ -44,6 +44,7 @@ define([
// edit an item
self
.
editItem
=
function
(
item
)
{
item
.
editing
(
true
);
item
.
previousTitle
=
item
.
title
();
};
// stop editing an item. Remove the item, if it is now empty
...
...
@@ -54,7 +55,7 @@ define([
var
trimmedTitle
=
title
.
trim
();
// Observable value changes are not triggered if they're consisting of whitespaces only
// Therefore
we've to compare untrimmed version with a trimmed one to chech
whether anything changed
// Therefore
, compare untrimmed version with a trimmed one to check
whether anything changed
// And if yes, we've to set the new value manually
if
(
title
!==
trimmedTitle
)
{
item
.
title
(
trimmedTitle
);
...
...
@@ -65,6 +66,12 @@ define([
}
};
// cancel editing an item and revert to the previous content
self
.
cancelEditing
=
function
(
item
)
{
item
.
editing
(
false
);
item
.
title
(
item
.
previousTitle
);
};
// count of all completed todos
self
.
completedCount
=
ko
.
computed
(
function
()
{
return
ko
.
utils
.
arrayFilter
(
self
.
todos
(),
function
(
todo
)
{
...
...
@@ -99,7 +106,8 @@ define([
// internal computed observable that fires whenever anything changes in our todos
ko
.
computed
(
function
()
{
// store a clean copy to local storage, which also creates a dependency on the observableArray and all observables in each item
// store a clean copy to local storage, which also creates a dependency
// on the observableArray and all observables in each item
window
.
localStorage
.
setItem
(
g
.
localStorageItem
,
ko
.
toJSON
(
self
.
todos
));
}).
extend
({
rateLimit
:
{
timeout
:
500
,
method
:
'
notifyWhenChangesStop
'
}
...
...
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