Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/bower_components/
/nbproject/
/node_modules/
45 changes: 45 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);

directoryConfiguration = {
target: 'dist'
};

grunt.initConfig({
dir: directoryConfiguration,
pkg: grunt.file.readJSON('package.json'),
banner: '/*\n' +
' * Knockout Observable Dictionary\n' +
' * (c) James Foster\n' +
' * License: MIT (http://www.opensource.org/licenses/mit-license.php)\n' +
' * <%= grunt.template.today("yyyy-mm-dd") %>\n' +
' */',
clean: {
dist: '<%= dir.target %>',
},
concat: {
options: {
separator: ';'
},
js: {
src: ['<%= pkg.name %>.js'],
dest: '<%= dir.target %>/<%= pkg.name %>.js'
}
},
uglify: {
dist: {
options: {
banner: '<%= banner %>',
sourceMap: true
},
files: {
'<%= dir.target %>/<%= pkg.name %>.min.js': ['<%= concat.js.dest %>']
}
}
}
});

grunt.registerTask('build', ['clean', 'concat:js']);
grunt.registerTask('minify', ['build', 'uglify']);
grunt.registerTask('default', ['minify']);
};
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ To loop over the items in the dictionary simply data bind to the items property.

<ul data-bind="foreach: person.items">
<li>
<span data-bind="key"></span>
<span data-bind="value"></span>
<span data-bind="text: key"></span>
<span data-bind="text: value"></span>
</li>
</ul>

Expand Down
24 changes: 24 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "knockout-observable-dictionary",
"description": "Implementation of an obversable dictionary for Knockout.",
"main": "dist/ko.observableDictionary.js",
"authors": [
{
"name": "James Foster",
"email": "[email protected]"
}
],
"ignore": [
"*.html",
"bower.json",
"Gruntfile.js",
"package.json"
],
"dependencies": {
"knockout": "~3"
},
"repository": {
"type": "git",
"url": "git://github.com/jamesfoster/knockout.observableDictionary.git"
}
}
224 changes: 224 additions & 0 deletions dist/ko.observableDictionary.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,224 @@
// Knockout Observable Dictionary
// (c) James Foster
// License: MIT (http://www.opensource.org/licenses/mit-license.php)

(function () {
function DictionaryItem(key, value, dictionary) {
var observableKey = new ko.observable(key);

this.value = new ko.observable(value);
this.key = new ko.computed({
read: observableKey,
write: function (newKey) {
var current = observableKey();

if (current == newKey) return;

// no two items are allowed to share the same key.
dictionary.remove(newKey);

observableKey(newKey);
}
});
}

ko.observableDictionary = function (dictionary, keySelector, valueSelector) {
var result = {};

result.items = new ko.observableArray();

result._wrappers = {};
result._keySelector = keySelector || function (value, key) { return key; };
result._valueSelector = valueSelector || function (value) { return value; };

if (typeof keySelector == 'string') result._keySelector = function (value) { return value[keySelector]; };
if (typeof valueSelector == 'string') result._valueSelector = function (value) { return value[valueSelector]; };

ko.utils.extend(result, ko.observableDictionary['fn']);

result.pushAll(dictionary);

return result;
};

ko.observableDictionary['fn'] = {
remove: function (valueOrPredicate) {
var predicate = valueOrPredicate;

if (valueOrPredicate instanceof DictionaryItem) {
predicate = function (item) {
return item.key() === valueOrPredicate.key();
};
}
else if (typeof valueOrPredicate != "function") {
predicate = function (item) {
return item.key() === valueOrPredicate;
};
}

ko.observableArray['fn'].remove.call(this.items, predicate);
},

push: function (key, value) {
var item = null;

if (key instanceof DictionaryItem) {
// handle the case where only a DictionaryItem is passed in
item = key;
value = key.value();
key = key.key();
}

if (value === undefined) {
value = this._valueSelector(key);
key = this._keySelector(value);
}
else {
value = this._valueSelector(value);
}

var current = this.get(key, false);
if (current) {
// update existing value
current(value);
return current;
}

if (!item) {
item = new DictionaryItem(key, value, this);
}

ko.observableArray['fn'].push.call(this.items, item);

return value;
},

pushAll: function (dictionary) {
var self = this;
var items = self.items();

if (dictionary instanceof Array) {
$.each(dictionary, function (index, item) {
var key = self._keySelector(item, index);
var value = self._valueSelector(item);
items.push(new DictionaryItem(key, value, self));
});
}
else {
for (var prop in dictionary) {
if (dictionary.hasOwnProperty(prop)) {
var item = dictionary[prop];
var key = self._keySelector(item, prop);
var value = self._valueSelector(item);
items.push(new DictionaryItem(key, value, self));
}
}
}

self.items.valueHasMutated();
},

sort: function (method) {
if (method === undefined) {
method = function (a, b) {
return defaultComparison(a.key(), b.key());
};
}

return ko.observableArray['fn'].sort.call(this.items, method);
},

indexOf: function (key) {
if (key instanceof DictionaryItem) {
return ko.observableArray['fn'].indexOf.call(this.items, key);
}

var underlyingArray = this.items();
for (var index = 0; index < underlyingArray.length; index++) {
if (underlyingArray[index].key() == key)
return index;
}
return -1;
},

get: function (key, wrap) {
if (wrap == false)
return getValue(key, this.items());

var wrapper = this._wrappers[key];

if (wrapper == null) {
wrapper = this._wrappers[key] = new ko.computed({
read: function () {
var value = getValue(key, this.items());
return value ? value() : null;
},
write: function (newValue) {
var value = getValue(key, this.items());

if (value)
value(newValue);
else
this.push(key, newValue);
}
}, this);
}

return wrapper;
},

set: function (key, value) {
return this.push(key, value);
},

keys: function () {
return ko.utils.arrayMap(this.items(), function (item) { return item.key(); });
},

values: function () {
return ko.utils.arrayMap(this.items(), function (item) { return item.value(); });
},

removeAll: function () {
this.items.removeAll();
},

toJSON: function () {
var result = {};
var items = ko.utils.unwrapObservable(this.items);

ko.utils.arrayForEach(items, function (item) {
var key = ko.utils.unwrapObservable(item.key);
var value = ko.utils.unwrapObservable(item.value);

result[key] = value;
});

return result;
}
};

function getValue(key, items) {
var found = ko.utils.arrayFirst(items, function (item) {
return item.key() == key;
});
return found ? found.value : null;
}
})();


// Utility methods
// ---------------------------------------------
function isNumeric(n) {
return !isNaN(parseFloat(n)) && isFinite(n);
}

function defaultComparison(a, b) {
if (isNumeric(a) && isNumeric(b)) return a - b;

a = a.toString();
b = b.toString();

return a == b ? 0 : (a < b ? -1 : 1);
}
// ---------------------------------------------
8 changes: 8 additions & 0 deletions dist/ko.observableDictionary.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/ko.observableDictionary.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 47 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8" />
<script src="bower_components/knockout/dist/knockout.js"></script>
<script src="ko.observableDictionary.js"></script>
</head>
<body>
<div id="view">
<ul data-bind="foreach: person.items">
<li>
<span data-bind="text: 'Key: '+key()+' Value: '+value()"></span>
</li>
</ul>
</div>
<script>
console.group('Testing: ko.observableDictionary.js');

var logValue = function(key) {
console.group(key);
console.log('Key: ' + key);
console.log('Type: ' + typeof viewModel.person.get(key)());
console.log('Value: ' + viewModel.person.get(key)());
console.groupEnd();
};

var dictionary = {
name: 'Joe Bloggs',
height: 180,
'hair colour': 'brown'
};

var viewModel = {
person: new ko.observableDictionary(dictionary)
};

ko.applyBindings(viewModel, document.getElementById('view'));

logValue('name');
logValue('height');
logValue('hair colour');

console.groupEnd();
</script>
</body>
</html>
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "knockout-observable-dictionary",
"devDependencies": {
"grunt": "~0",
"grunt-contrib-clean": "~0",
"grunt-contrib-concat": "~0",
"grunt-contrib-less": "~0",
"grunt-contrib-uglify": "*",
"load-grunt-tasks": "*"
}
}