mirror of
https://gitlab.silvrtree.co.uk/martind2000/SODashServer.git
synced 2025-01-10 20:45:08 +00:00
init
This commit is contained in:
commit
d93ebb4466
35
.gitignore
vendored
Normal file
35
.gitignore
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
lib-cov
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage
|
||||
|
||||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
||||
.grunt
|
||||
|
||||
# node-waf configuration
|
||||
.lock-wscript
|
||||
|
||||
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Dependency directory
|
||||
node_modules
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
.idea
|
146
app.js
Normal file
146
app.js
Normal file
@ -0,0 +1,146 @@
|
||||
/**
|
||||
* Created by Martin on 08/02/2016.
|
||||
*/
|
||||
"use strict";
|
||||
var express = require('express'), path = require('path'), http = require('http'), ejs = require('ejs'), morgan = require('morgan'), cookieparser = require('cookie-parser'), session = require('express-session');
|
||||
var methodoverride = require('method-override'), bodyparser = require('body-parser'), errorhandler = require('errorhandler');
|
||||
var mqttConnect = require('./lib/mqtt/mqttConnect');
|
||||
var log4js = require('log4js');
|
||||
var logger = log4js.getLogger();
|
||||
|
||||
var WebSocketServer = require('websocket').server;
|
||||
|
||||
var EventEmitter = require('events');
|
||||
var lighting_v1 = require('./routes/lighting_v1'), heating_v1 = require('./routes/heating_v1'), projector_v1 = require('./routes/projector_v1');
|
||||
|
||||
var busEmitter = new EventEmitter();
|
||||
|
||||
mqttConnect.setEmitter(busEmitter);
|
||||
mqttConnect.doConnection();
|
||||
|
||||
var app = express();
|
||||
|
||||
app.set('port', process.env.PORT || 4545);
|
||||
app.set('views', __dirname + '/views');
|
||||
app.set('view engine', 'ejs');
|
||||
app.use(morgan('combined'));
|
||||
app.use(cookieparser('your secret here'));
|
||||
app.use(session({
|
||||
secret: '1234567890QWERTY', resave: false,
|
||||
saveUninitialized: false
|
||||
}));
|
||||
/* 'default', 'short', 'tiny', 'dev' */
|
||||
app.use(methodoverride());
|
||||
|
||||
app.use(bodyparser.urlencoded({extended: false}));
|
||||
|
||||
// parse application/json
|
||||
app.use(bodyparser.json());
|
||||
|
||||
app.use(function (req, res, next) {
|
||||
res.header("Access-Control-Allow-Origin", "*");
|
||||
res.header("Access-Control-Allow-Headers", "X-Requested-With");
|
||||
next();
|
||||
});
|
||||
// app.use(app.router);
|
||||
app.use(express.static(path.join(__dirname, 'app')));
|
||||
app.use(errorhandler({dumpExceptions: true, showStack: true}));
|
||||
|
||||
lighting_v1.use(mqttConnect);
|
||||
heating_v1.use(mqttConnect);
|
||||
projector_v1.use(mqttConnect);
|
||||
|
||||
busEmitter.on('clientConnected', (socketSet) => {
|
||||
console.log(socketSet.getClientStatus());
|
||||
heating_v1.setsocket(socketSet).subscribe();
|
||||
lighting_v1.setsocket(socketSet).subscribe();
|
||||
projector_v1.setsocket(socketSet).subscribe();
|
||||
});
|
||||
|
||||
|
||||
busEmitter.on('clientStatusUpdated', (v) => {
|
||||
console.log(v);
|
||||
});
|
||||
|
||||
|
||||
logger.info('Configuring WebSocket Listener...');
|
||||
var server = http.createServer(function (request, response) {
|
||||
console.log((new Date()) + ' Received request for ' + request.url);
|
||||
response.writeHead(404);
|
||||
response.end();
|
||||
});
|
||||
server.listen(8080, function () {
|
||||
console.log((new Date()) + ' Server is listening on port 8080');
|
||||
});
|
||||
var wsServer = new WebSocketServer({
|
||||
httpServer: server,
|
||||
// You should not use autoAcceptConnections for production
|
||||
// applications, as it defeats all standard cross-origin protection
|
||||
// facilities built into the protocol and the browser. You should
|
||||
// *always* verify the connection's origin and decide whether or not
|
||||
// to accept it.
|
||||
autoAcceptConnections: false
|
||||
});
|
||||
|
||||
function originIsAllowed(origin) {
|
||||
// put logic here to detect whether the specified origin is allowed.
|
||||
return true;
|
||||
}
|
||||
|
||||
wsServer.on('request', function (request) {
|
||||
|
||||
if (!originIsAllowed(request.origin)) {
|
||||
// Make sure we only accept requests from an allowed origin
|
||||
request.reject();
|
||||
console.log((new Date()) + ' Connection from origin ' + request.origin + ' rejected.');
|
||||
return;
|
||||
}
|
||||
|
||||
var connection = request.accept('stream', request.origin);
|
||||
console.log((new Date()) + ' Connection accepted.');
|
||||
|
||||
var sendSocketHandler = (obj) => {
|
||||
// logger.info('sendSocket: ' + JSON.stringify(obj));
|
||||
connection.sendUTF(JSON.stringify(obj));
|
||||
};
|
||||
|
||||
busEmitter.on('sendSocket', sendSocketHandler);
|
||||
|
||||
connection.on('message', function (message) {
|
||||
if (message.type === 'utf8') {
|
||||
console.log('Received Message: ' + message.utf8Data);
|
||||
connection.sendUTF(message.utf8Data);
|
||||
}
|
||||
else if (message.type === 'binary') {
|
||||
console.log('Received Binary Message of ' + message.binaryData.length + ' bytes');
|
||||
connection.sendBytes(message.binaryData);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
connection.on('close', function (reasonCode, description) {
|
||||
console.log((new Date()) + ' Peer ' + connection.remoteAddress + ' disconnected.');
|
||||
busEmitter.removeListener('sendSocket', sendSocketHandler);
|
||||
});
|
||||
});
|
||||
|
||||
mqttConnect.connectWS(function () {
|
||||
console.log('Ready to plug in sockets...');
|
||||
});
|
||||
|
||||
/*app.get('/', function( req, res) {
|
||||
res.render('index');
|
||||
});*/
|
||||
|
||||
app.post('/api/v1/lighting/off', lighting_v1.turnoff);
|
||||
app.post('/api/v1/lighting/on', lighting_v1.turnon);
|
||||
|
||||
app.post('/api/v1/heating/off', heating_v1.turnoff);
|
||||
app.post('/api/v1/heating/on', heating_v1.turnon);
|
||||
|
||||
app.post('/api/v1/projector/off', projector_v1.turnoff);
|
||||
app.post('/api/v1/projector/on', projector_v1.turnon);
|
||||
|
||||
app.listen(3000, function () {
|
||||
console.log('Express listening on 3000');
|
||||
});
|
3053
app/css/mui.css
Normal file
3053
app/css/mui.css
Normal file
File diff suppressed because it is too large
Load Diff
1
app/css/mui.min.css
vendored
Normal file
1
app/css/mui.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
221
app/index.html
Normal file
221
app/index.html
Normal file
@ -0,0 +1,221 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Console</title>
|
||||
<link rel="stylesheet" type="text/css" href="css/mui.css">
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/zepto/1.1.4/zepto.min.js"></script>
|
||||
<style>
|
||||
#lightR, #projR {color:red !important;}
|
||||
#lightG, #projG {color:green !important;}
|
||||
#lightB, #projB {color:blue !important;}
|
||||
#lightW, #projW {background-color: #aabbcc;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="mui-container">
|
||||
<div class="mui-panel" data-bind="with: viewLights">
|
||||
<div class="mui-row">
|
||||
<button id="frontLightOn">Front Light On</button>
|
||||
<button id="frontLightOff">Front Light Off</button>
|
||||
</div>
|
||||
<div class="mui-row">
|
||||
<button id="middleLightOn">Middle Light On</button>
|
||||
<button id="middleLightOff">Middle Light Off</button>
|
||||
</div>
|
||||
<div class="mui-row">
|
||||
<button id="backLightOn">Back Light On</button>
|
||||
<button id="backLightOff">Back Light Off</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="mui-panel" data-bind="with: viewHeat">
|
||||
<div class="mui-row">
|
||||
<button id="heatingOn">Heating On</button>
|
||||
<button id="heatingOff">Heating Off</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mui-panel" data-bind="with: viewProjector">
|
||||
<div class="mui-row">
|
||||
<button id="projectorOn">Projector On</button>
|
||||
<button id="projectorOff">Projector Off</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="mui-panel">
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-3"><span id="lightR">---</span></div>
|
||||
<div class="mui-col-md-3"><span id="lightG">---</span></div>
|
||||
<div class="mui-col-md-3"><span id="lightB">---</span></div>
|
||||
<div class="mui-col-md-3"><span id="lightW">---</span></div>
|
||||
|
||||
</div>
|
||||
<div class="mui-row">
|
||||
<div class="mui-col-md-3"><span id="projR">---</span></div>
|
||||
<div class="mui-col-md-3"><span id="projG">---</span></div>
|
||||
<div class="mui-col-md-3"><span id="projB">---</span></div>
|
||||
<div class="mui-col-md-3"><span id="projW">---</span></div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<script>
|
||||
|
||||
function turnOnLights(id) {
|
||||
console.log('turn on the lights');
|
||||
$.post('api/v1/lighting/on', {light: id}, function (repsonse) {
|
||||
console.log(repsonse);
|
||||
});
|
||||
}
|
||||
|
||||
function turnOffLights(id) {
|
||||
console.log('turn off the lights');
|
||||
$.post('api/v1/lighting/off', {light: id}, function (repsonse) {
|
||||
console.log(repsonse);
|
||||
});
|
||||
}
|
||||
|
||||
function turnOnHeating() {
|
||||
console.log('turn on the heating');
|
||||
$.post('api/v1/heating/on', {}, function (repsonse) {
|
||||
console.log(repsonse);
|
||||
});
|
||||
}
|
||||
|
||||
function turnOffHeating() {
|
||||
console.log('turn off the heating');
|
||||
$.post('api/v1/heating/off', {}, function (repsonse) {
|
||||
console.log(repsonse);
|
||||
});
|
||||
}
|
||||
|
||||
function turnOnProjector() {
|
||||
console.log('turn on the heating');
|
||||
$.post('api/v1/projector/on', {}, function (repsonse) {
|
||||
console.log(repsonse);
|
||||
});
|
||||
}
|
||||
|
||||
function turnOffProjector() {
|
||||
console.log('turn off the heating');
|
||||
$.post('api/v1/projector/off', {}, function (repsonse) {
|
||||
console.log(repsonse);
|
||||
});
|
||||
}
|
||||
|
||||
$('#projectorOn').on('click', function () {
|
||||
turnOnProjector();
|
||||
});
|
||||
|
||||
$('#projectorOff').on('click', function () {
|
||||
turnOffProjector();
|
||||
});
|
||||
|
||||
$('#heatingOn').on('click', function () {
|
||||
turnOnHeating();
|
||||
});
|
||||
|
||||
$('#heatingOff').on('click', function () {
|
||||
turnOffHeating();
|
||||
});
|
||||
|
||||
$('#frontLightOn').on('click', function () {
|
||||
turnOnLights(1);
|
||||
});
|
||||
|
||||
$('#middleLightOn').on('click', function () {
|
||||
turnOnLights(2);
|
||||
});
|
||||
|
||||
$('#backLightOn').on('click', function () {
|
||||
turnOnLights(3);
|
||||
});
|
||||
|
||||
$('#frontLightOff').on('click', function () {
|
||||
turnOffLights('a');
|
||||
});
|
||||
|
||||
$('#middleLightOff').on('click', function () {
|
||||
turnOffLights('b');
|
||||
});
|
||||
|
||||
$('#backLightOff').on('click', function () {
|
||||
turnOffLights('c');
|
||||
});
|
||||
|
||||
(function () {
|
||||
console.log('Starting socket?');
|
||||
var url = "ws://localhost:8080";
|
||||
|
||||
var wsCtor = window['MozWebSocket'] ? MozWebSocket : WebSocket;
|
||||
this.socket = new wsCtor(url, 'stream');
|
||||
|
||||
this.updateLighting = function(obj) {
|
||||
//console.log(obj);
|
||||
$('#lightR').text(obj.Red);
|
||||
$('#lightG').text(obj.Green);
|
||||
$('#lightB').text(obj.Blue);
|
||||
|
||||
var w = '#'+('0'+parseInt(obj.Red).toString(16)).substr(-2,2)+ ('0'+parseInt(obj.Green).toString(16)).substr(-2,2) + ('0'+parseInt(obj.Blue).toString(16)).substr(-2,2);
|
||||
|
||||
$('#lightW').text(w);
|
||||
$('#lightW').css('background-color', w);
|
||||
};
|
||||
|
||||
this.updateProj = function(obj) {
|
||||
//console.log(obj);
|
||||
$('#projR').text(obj.Red);
|
||||
$('#projG').text(obj.Green);
|
||||
$('#projB').text(obj.Blue);
|
||||
|
||||
var w = '#'+('0'+parseInt(obj.Red).toString(16)).substr(-2,2)+ ('0'+parseInt(obj.Green).toString(16)).substr(-2,2) + ('0'+parseInt(obj.Blue).toString(16)).substr(-2,2);
|
||||
|
||||
$('#projW').text(w);
|
||||
$('#projW').css('background-color', w);
|
||||
};
|
||||
|
||||
this.handleData = function(d) {
|
||||
switch(d.id) {
|
||||
case 'LightingDataReceived':
|
||||
this.updateLighting(d.sensorData.d);
|
||||
break;
|
||||
case 'ProjectorDataReceived':
|
||||
this.updateProj(d.sensorData.d);
|
||||
break;
|
||||
case 'HeatingDataReceived':
|
||||
break;
|
||||
default:
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
this.handleWebsocketMessage = function (message) {
|
||||
try {
|
||||
var command = JSON.parse(message.data);
|
||||
}
|
||||
catch (e) { /* do nothing */
|
||||
}
|
||||
|
||||
if (command) {
|
||||
//this.dispatchCommand(command);
|
||||
this.handleData(command);
|
||||
}
|
||||
};
|
||||
|
||||
this.handleWebsocketClose = function () {
|
||||
alert("WebSocket Connection Closed.");
|
||||
};
|
||||
|
||||
this.socket.onmessage = this.handleWebsocketMessage.bind(this);
|
||||
this.socket.onclose = this.handleWebsocketClose.bind(this);
|
||||
})();
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
5871
app/lib/knockout.debug.js
Normal file
5871
app/lib/knockout.debug.js
Normal file
File diff suppressed because it is too large
Load Diff
18
bower.json
Normal file
18
bower.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "sodashserver",
|
||||
"description": "Smart Office Dashboard Server",
|
||||
"main": "index.js",
|
||||
"authors": [
|
||||
"Martin Donnelly"
|
||||
],
|
||||
"license": "ISC",
|
||||
"homepage": "",
|
||||
"private": true,
|
||||
"ignore": [
|
||||
"**/.*",
|
||||
"node_modules",
|
||||
"bower_components",
|
||||
"test",
|
||||
"tests"
|
||||
]
|
||||
}
|
36
bower_components/knockout/.bower.json
vendored
Normal file
36
bower_components/knockout/.bower.json
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "knockout",
|
||||
"homepage": "http://knockoutjs.com/",
|
||||
"description": "Knockout makes it easier to create rich, responsive UIs with JavaScript",
|
||||
"main": "dist/knockout.js",
|
||||
"moduleType": [
|
||||
"amd",
|
||||
"globals",
|
||||
"node"
|
||||
],
|
||||
"keywords": [
|
||||
"knockout",
|
||||
"mvvm",
|
||||
"mvc",
|
||||
"spa"
|
||||
],
|
||||
"license": "MIT",
|
||||
"ignore": [
|
||||
"**/.*",
|
||||
"node_modules",
|
||||
"bower_components",
|
||||
"spec",
|
||||
"build/output"
|
||||
],
|
||||
"version": "3.4.0",
|
||||
"_release": "3.4.0",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "v3.4.0",
|
||||
"commit": "b294bf04260a4a2033f09868981e026f254a582a"
|
||||
},
|
||||
"_source": "https://github.com/SteveSanderson/knockout.git",
|
||||
"_target": "^3.4.0",
|
||||
"_originalSource": "knockout",
|
||||
"_direct": true
|
||||
}
|
174
bower_components/knockout/Gruntfile.js
vendored
Normal file
174
bower_components/knockout/Gruntfile.js
vendored
Normal file
@ -0,0 +1,174 @@
|
||||
/*global module:false*/
|
||||
module.exports = function(grunt) {
|
||||
var _ = grunt.util._;
|
||||
|
||||
// Project configuration
|
||||
grunt.initConfig({
|
||||
// Metadata
|
||||
pkg: grunt.file.readJSON('package.json'),
|
||||
fragments: './build/fragments/',
|
||||
banner: '/*!\n' +
|
||||
' * Knockout JavaScript library v<%= pkg.version %>\n' +
|
||||
' * (c) Steven Sanderson - <%= pkg.homepage %>\n' +
|
||||
' * License: <%= pkg.licenses[0].type %> (<%= pkg.licenses[0].url %>)\n' +
|
||||
' */\n\n',
|
||||
|
||||
checktrailingspaces: {
|
||||
main: {
|
||||
src: [
|
||||
"**/*.{js,html,css,bat,ps1,sh}",
|
||||
"!build/output/**",
|
||||
"!node_modules/**"
|
||||
],
|
||||
filter: 'isFile'
|
||||
}
|
||||
},
|
||||
build: {
|
||||
debug: './build/output/knockout-latest.debug.js',
|
||||
min: './build/output/knockout-latest.js'
|
||||
},
|
||||
dist: {
|
||||
debug: './dist/knockout.debug.js',
|
||||
min: './dist/knockout.js'
|
||||
},
|
||||
test: {
|
||||
phantomjs: 'spec/runner.phantom.js',
|
||||
node: 'spec/runner.node.js'
|
||||
}
|
||||
});
|
||||
|
||||
grunt.registerTask('clean', 'Clean up output files.', function (target) {
|
||||
var output = grunt.config('build');
|
||||
var files = [ output.debug, output.min ];
|
||||
var options = { force: (target == 'force') };
|
||||
_.forEach(files, function (file) {
|
||||
if (grunt.file.exists(file))
|
||||
grunt.file.delete(file, options);
|
||||
});
|
||||
return !this.errorCount;
|
||||
});
|
||||
|
||||
var trailingSpaceRegex = /[ ]$/;
|
||||
grunt.registerMultiTask('checktrailingspaces', 'checktrailingspaces', function() {
|
||||
var matches = [];
|
||||
this.files[0].src.forEach(function(filepath) {
|
||||
var content = grunt.file.read(filepath),
|
||||
lines = content.split(/\r*\n/);
|
||||
lines.forEach(function(line, index) {
|
||||
if (trailingSpaceRegex.test(line)) {
|
||||
matches.push([filepath, (index+1), line].join(':'));
|
||||
}
|
||||
});
|
||||
});
|
||||
if (matches.length) {
|
||||
grunt.log.error("The following files have trailing spaces that need to be cleaned up:");
|
||||
grunt.log.writeln(matches.join('\n'));
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
function getReferencedSources(sourceReferencesFilename) {
|
||||
// Returns the array of filenames referenced by a file like source-references.js
|
||||
var result;
|
||||
global.knockoutDebugCallback = function(sources) { result = sources; };
|
||||
eval(grunt.file.read(sourceReferencesFilename));
|
||||
return result;
|
||||
}
|
||||
|
||||
function getCombinedSources() {
|
||||
var fragments = grunt.config('fragments'),
|
||||
sourceFilenames = [
|
||||
fragments + 'extern-pre.js',
|
||||
fragments + 'amd-pre.js',
|
||||
getReferencedSources(fragments + 'source-references.js'),
|
||||
fragments + 'amd-post.js',
|
||||
fragments + 'extern-post.js'
|
||||
],
|
||||
flattenedSourceFilenames = Array.prototype.concat.apply([], sourceFilenames),
|
||||
combinedSources = flattenedSourceFilenames.map(function(filename) {
|
||||
return grunt.file.read('./' + filename);
|
||||
}).join('');
|
||||
|
||||
return combinedSources.replace('##VERSION##', grunt.config('pkg.version'));
|
||||
}
|
||||
|
||||
function buildDebug(output) {
|
||||
var source = [];
|
||||
source.push(grunt.config('banner'));
|
||||
source.push('(function(){\n');
|
||||
source.push('var DEBUG=true;\n');
|
||||
source.push(getCombinedSources());
|
||||
source.push('})();\n');
|
||||
grunt.file.write(output, source.join('').replace(/\r\n/g, '\n'));
|
||||
}
|
||||
|
||||
function buildMin(output, done) {
|
||||
var cc = require('closure-compiler');
|
||||
var options = {
|
||||
compilation_level: 'ADVANCED_OPTIMIZATIONS',
|
||||
output_wrapper: '(function() {%output%})();'
|
||||
};
|
||||
grunt.log.write('Compiling...');
|
||||
cc.compile('/**@const*/var DEBUG=false;' + getCombinedSources(), options, function (err, stdout, stderr) {
|
||||
if (err) {
|
||||
grunt.log.error(err);
|
||||
done(false);
|
||||
} else {
|
||||
grunt.log.ok();
|
||||
grunt.file.write(output, (grunt.config('banner') + stdout).replace(/\r\n/g, '\n'));
|
||||
done(true);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
grunt.registerMultiTask('build', 'Build', function() {
|
||||
if (!this.errorCount) {
|
||||
var output = this.data;
|
||||
if (this.target === 'debug') {
|
||||
buildDebug(output);
|
||||
} else if (this.target === 'min') {
|
||||
buildMin(output, this.async());
|
||||
}
|
||||
}
|
||||
return !this.errorCount;
|
||||
});
|
||||
|
||||
grunt.registerMultiTask('test', 'Run tests', function () {
|
||||
var done = this.async();
|
||||
grunt.util.spawn({ cmd: this.target, args: [this.data] },
|
||||
function (error, result, code) {
|
||||
if (code === 127 /*not found*/) {
|
||||
grunt.verbose.error(result.stderr);
|
||||
// ignore this error
|
||||
done(true);
|
||||
} else {
|
||||
grunt.log.writeln(result.stdout);
|
||||
if (error)
|
||||
grunt.log.error(result.stderr);
|
||||
done(!error);
|
||||
}
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
grunt.registerTask('dist', function() {
|
||||
var version = grunt.config('pkg.version'),
|
||||
buildConfig = grunt.config('build'),
|
||||
distConfig = grunt.config('dist');
|
||||
grunt.file.copy(buildConfig.debug, distConfig.debug);
|
||||
grunt.file.copy(buildConfig.min, distConfig.min);
|
||||
|
||||
console.log('To publish, run:');
|
||||
console.log(' git add bower.json');
|
||||
console.log(' git add -f ' + distConfig.debug);
|
||||
console.log(' git add -f ' + distConfig.min);
|
||||
console.log(' git checkout head');
|
||||
console.log(' git commit -m \'Version ' + version + ' for distribution\'');
|
||||
console.log(' git tag -a v' + version + ' -m \'Add tag v' + version + '\'');
|
||||
console.log(' git checkout master');
|
||||
console.log(' git push origin --tags');
|
||||
});
|
||||
|
||||
// Default task.
|
||||
grunt.registerTask('default', ['clean', 'checktrailingspaces', 'build', 'test']);
|
||||
};
|
22
bower_components/knockout/LICENSE
vendored
Normal file
22
bower_components/knockout/LICENSE
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
The MIT License (MIT) - http://www.opensource.org/licenses/mit-license.php
|
||||
|
||||
Copyright (c) Steven Sanderson, the Knockout.js team, and other contributors
|
||||
http://knockoutjs.com/
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
50
bower_components/knockout/README.md
vendored
Normal file
50
bower_components/knockout/README.md
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
**Knockout** is a JavaScript [MVVM](http://en.wikipedia.org/wiki/Model_View_ViewModel) (a modern variant of MVC) library that makes it easier to create rich, desktop-like user interfaces with JavaScript and HTML. It uses *observers* to make your UI automatically stay in sync with an underlying data model, along with a powerful and extensible set of *declarative bindings* to enable productive development.
|
||||
|
||||
##Getting started
|
||||
|
||||
[![Join the chat at https://gitter.im/knockout/knockout](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/knockout/knockout?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
|
||||
**Totally new to Knockout?** The most fun place to start is the [online interactive tutorials](http://learn.knockoutjs.com/).
|
||||
|
||||
For more details, see
|
||||
|
||||
* Documentation on [the project's website](http://knockoutjs.com/documentation/introduction.html)
|
||||
* Online examples at [http://knockoutjs.com/examples/](http://knockoutjs.com/examples/)
|
||||
|
||||
##Downloading Knockout
|
||||
|
||||
You can [download released versions of Knockout](http://knockoutjs.com/downloads/) from the project's website.
|
||||
|
||||
For Node.js developers, Knockout is also available from [npm](https://npmjs.org/) - just run `npm install knockout`.
|
||||
|
||||
##Building Knockout from sources
|
||||
|
||||
If you prefer to build the library yourself:
|
||||
|
||||
1. **Clone the repo from GitHub**
|
||||
|
||||
git clone https://github.com/knockout/knockout.git
|
||||
cd knockout
|
||||
|
||||
2. **Acquire build dependencies.** Make sure you have [Node.js](http://nodejs.org/) installed on your workstation. This is only needed to _build_ Knockout from sources. Knockout itself has no dependency on Node.js once it is built (it works with any server technology or none). Now run:
|
||||
|
||||
npm install -g grunt-cli
|
||||
npm install
|
||||
|
||||
The first `npm` command sets up the popular [Grunt](http://gruntjs.com/) build tool. You might need to run this command with `sudo` if you're on Linux or Mac OS X, or in an Administrator command prompt on Windows. The second `npm` command fetches the remaining build dependencies.
|
||||
|
||||
3. **Run the build tool**
|
||||
|
||||
grunt
|
||||
|
||||
Now you'll find the built files in `build/output/`.
|
||||
|
||||
## Running the tests
|
||||
|
||||
If you have [phantomjs](http://phantomjs.org/download.html) installed, then the `grunt` script will automatically run the specification suite and report its results.
|
||||
|
||||
Or, if you want to run the specs in a browser (e.g., for debugging), simply open `spec/runner.html` in your browser.
|
||||
|
||||
##License
|
||||
|
||||
MIT license - [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php)
|
25
bower_components/knockout/bower.json
vendored
Normal file
25
bower_components/knockout/bower.json
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "knockout",
|
||||
"homepage": "http://knockoutjs.com/",
|
||||
"description": "Knockout makes it easier to create rich, responsive UIs with JavaScript",
|
||||
"main": "dist/knockout.js",
|
||||
"moduleType": [
|
||||
"amd",
|
||||
"globals",
|
||||
"node"
|
||||
],
|
||||
"keywords": [
|
||||
"knockout",
|
||||
"mvvm",
|
||||
"mvc",
|
||||
"spa"
|
||||
],
|
||||
"license": "MIT",
|
||||
"ignore": [
|
||||
"**/.*",
|
||||
"node_modules",
|
||||
"bower_components",
|
||||
"spec",
|
||||
"build/output"
|
||||
]
|
||||
}
|
1
bower_components/knockout/build/fragments/amd-post.js
vendored
Normal file
1
bower_components/knockout/build/fragments/amd-post.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
}));
|
13
bower_components/knockout/build/fragments/amd-pre.js
vendored
Normal file
13
bower_components/knockout/build/fragments/amd-pre.js
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
(function(factory) {
|
||||
// Support three module loading scenarios
|
||||
if (typeof define === 'function' && define['amd']) {
|
||||
// [1] AMD anonymous module
|
||||
define(['exports', 'require'], factory);
|
||||
} else if (typeof exports === 'object' && typeof module === 'object') {
|
||||
// [2] CommonJS/Node.js
|
||||
factory(module['exports'] || exports); // module.exports is for Node.js
|
||||
} else {
|
||||
// [3] No module loader (plain <script> tag) - put directly in global namespace
|
||||
factory(window['ko'] = {});
|
||||
}
|
||||
}(function(koExports, amdRequire){
|
1
bower_components/knockout/build/fragments/extern-post.js
vendored
Normal file
1
bower_components/knockout/build/fragments/extern-post.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
}());
|
8
bower_components/knockout/build/fragments/extern-pre.js
vendored
Normal file
8
bower_components/knockout/build/fragments/extern-pre.js
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
(function(undefined){
|
||||
// (0, eval)('this') is a robust way of getting a reference to the global object
|
||||
// For details, see http://stackoverflow.com/questions/14119988/return-this-0-evalthis/14120023#14120023
|
||||
var window = this || (0, eval)('this'),
|
||||
document = window['document'],
|
||||
navigator = window['navigator'],
|
||||
jQueryInstance = window["jQuery"],
|
||||
JSON = window["JSON"];
|
57
bower_components/knockout/build/fragments/source-references.js
vendored
Normal file
57
bower_components/knockout/build/fragments/source-references.js
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
knockoutDebugCallback([
|
||||
'src/namespace.js',
|
||||
'src/google-closure-compiler-utils.js',
|
||||
'src/version.js',
|
||||
'src/options.js',
|
||||
'src/utils.js',
|
||||
'src/utils.domData.js',
|
||||
'src/utils.domNodeDisposal.js',
|
||||
'src/utils.domManipulation.js',
|
||||
'src/memoization.js',
|
||||
'src/tasks.js',
|
||||
'src/subscribables/extenders.js',
|
||||
'src/subscribables/subscribable.js',
|
||||
'src/subscribables/dependencyDetection.js',
|
||||
'src/subscribables/observable.js',
|
||||
'src/subscribables/observableArray.js',
|
||||
'src/subscribables/observableArray.changeTracking.js',
|
||||
'src/subscribables/dependentObservable.js',
|
||||
'src/subscribables/mappingHelpers.js',
|
||||
'src/binding/selectExtensions.js',
|
||||
'src/binding/expressionRewriting.js',
|
||||
'src/virtualElements.js',
|
||||
'src/binding/bindingProvider.js',
|
||||
'src/binding/bindingAttributeSyntax.js',
|
||||
'src/components/loaderRegistry.js',
|
||||
'src/components/defaultLoader.js',
|
||||
'src/components/customElements.js',
|
||||
'src/components/componentBinding.js',
|
||||
'src/binding/defaultBindings/attr.js',
|
||||
'src/binding/defaultBindings/checked.js',
|
||||
'src/binding/defaultBindings/css.js',
|
||||
'src/binding/defaultBindings/enableDisable.js',
|
||||
'src/binding/defaultBindings/event.js',
|
||||
'src/binding/defaultBindings/foreach.js',
|
||||
'src/binding/defaultBindings/hasfocus.js',
|
||||
'src/binding/defaultBindings/html.js',
|
||||
'src/binding/defaultBindings/ifIfnotWith.js',
|
||||
'src/binding/defaultBindings/options.js',
|
||||
'src/binding/defaultBindings/selectedOptions.js',
|
||||
'src/binding/defaultBindings/style.js',
|
||||
'src/binding/defaultBindings/submit.js',
|
||||
'src/binding/defaultBindings/text.js',
|
||||
'src/binding/defaultBindings/textInput.js',
|
||||
'src/binding/defaultBindings/uniqueName.js',
|
||||
'src/binding/defaultBindings/value.js',
|
||||
'src/binding/defaultBindings/visible.js',
|
||||
// click depends on event - The order matters for specs, which includes each file individually
|
||||
'src/binding/defaultBindings/click.js',
|
||||
'src/templating/templateEngine.js',
|
||||
'src/templating/templateRewriting.js',
|
||||
'src/templating/templateSources.js',
|
||||
'src/templating/templating.js',
|
||||
'src/binding/editDetection/compareArrays.js',
|
||||
'src/binding/editDetection/arrayToDomNodeChildren.js',
|
||||
'src/templating/native/nativeTemplateEngine.js',
|
||||
'src/templating/jquery.tmpl/jqueryTmplTemplateEngine.js'
|
||||
]);
|
34
bower_components/knockout/build/knockout-raw.js
vendored
Normal file
34
bower_components/knockout/build/knockout-raw.js
vendored
Normal file
@ -0,0 +1,34 @@
|
||||
var DEBUG = true,
|
||||
// ensure these variables are defined (even if their values are undefined)
|
||||
jQueryInstance = window.jQuery, // Use a different variable name (not 'jQuery') to avoid overwriting window.jQuery with 'undefined' on IE < 9
|
||||
amdRequire = window.require;
|
||||
|
||||
// This script adds <script> tags referencing each of the knockout.js source files in the correct order
|
||||
// It uses JSONP to fetch the list of source files from source-references.js
|
||||
(function () {
|
||||
var debugFileName = "build/knockout-raw.js";
|
||||
var sourcesReferenceFile = "build/fragments/source-references.js";
|
||||
|
||||
function getPathToScriptTagSrc(scriptTagSrc) {
|
||||
scriptTagSrc = "/" + scriptTagSrc.toLowerCase();
|
||||
var scriptTags = document.getElementsByTagName("SCRIPT");
|
||||
for (var i = 0; i < scriptTags.length; i++) {
|
||||
var src = scriptTags[i].src;
|
||||
var index = src.toLowerCase().indexOf(scriptTagSrc);
|
||||
if ((index >= 0) && index == (src.length - scriptTagSrc.length))
|
||||
return src.substring(0, index + 1);
|
||||
}
|
||||
throw "Cannot find script tag referencing " + scriptTagSrc;
|
||||
};
|
||||
|
||||
function referenceScript(url) {
|
||||
document.write("<script src='" + url + "' type='text/javascript'></script>");
|
||||
};
|
||||
|
||||
var buildFolderPath = getPathToScriptTagSrc(debugFileName);
|
||||
window.knockoutDebugCallback = function (scriptUrls) {
|
||||
for (var i = 0; i < scriptUrls.length; i++)
|
||||
referenceScript(buildFolderPath + scriptUrls[i]);
|
||||
};
|
||||
referenceScript(buildFolderPath + sourcesReferenceFile);
|
||||
})();
|
5871
bower_components/knockout/dist/knockout.debug.js
vendored
Normal file
5871
bower_components/knockout/dist/knockout.debug.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
123
bower_components/knockout/dist/knockout.js
vendored
Normal file
123
bower_components/knockout/dist/knockout.js
vendored
Normal file
@ -0,0 +1,123 @@
|
||||
/*!
|
||||
* Knockout JavaScript library v3.4.0
|
||||
* (c) Steven Sanderson - http://knockoutjs.com/
|
||||
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
||||
*/
|
||||
|
||||
(function() {(function(n){var x=this||(0,eval)("this"),u=x.document,M=x.navigator,v=x.jQuery,F=x.JSON;(function(n){"function"===typeof define&&define.amd?define(["exports","require"],n):"object"===typeof exports&&"object"===typeof module?n(module.exports||exports):n(x.ko={})})(function(N,O){function J(a,c){return null===a||typeof a in T?a===c:!1}function U(b,c){var d;return function(){d||(d=a.a.setTimeout(function(){d=n;b()},c))}}function V(b,c){var d;return function(){clearTimeout(d);d=a.a.setTimeout(b,c)}}function W(a,
|
||||
c){c&&c!==I?"beforeChange"===c?this.Kb(a):this.Ha(a,c):this.Lb(a)}function X(a,c){null!==c&&c.k&&c.k()}function Y(a,c){var d=this.Hc,e=d[s];e.R||(this.lb&&this.Ma[c]?(d.Pb(c,a,this.Ma[c]),this.Ma[c]=null,--this.lb):e.r[c]||d.Pb(c,a,e.s?{ia:a}:d.uc(a)))}function K(b,c,d,e){a.d[b]={init:function(b,g,k,l,m){var h,r;a.m(function(){var q=a.a.c(g()),p=!d!==!q,A=!r;if(A||c||p!==h)A&&a.va.Aa()&&(r=a.a.ua(a.f.childNodes(b),!0)),p?(A||a.f.da(b,a.a.ua(r)),a.eb(e?e(m,q):m,b)):a.f.xa(b),h=p},null,{i:b});return{controlsDescendantBindings:!0}}};
|
||||
a.h.ta[b]=!1;a.f.Z[b]=!0}var a="undefined"!==typeof N?N:{};a.b=function(b,c){for(var d=b.split("."),e=a,f=0;f<d.length-1;f++)e=e[d[f]];e[d[d.length-1]]=c};a.G=function(a,c,d){a[c]=d};a.version="3.4.0";a.b("version",a.version);a.options={deferUpdates:!1,useOnlyNativeEvents:!1};a.a=function(){function b(a,b){for(var c in a)a.hasOwnProperty(c)&&b(c,a[c])}function c(a,b){if(b)for(var c in b)b.hasOwnProperty(c)&&(a[c]=b[c]);return a}function d(a,b){a.__proto__=b;return a}function e(b,c,d,e){var h=b[c].match(r)||
|
||||
[];a.a.q(d.match(r),function(b){a.a.pa(h,b,e)});b[c]=h.join(" ")}var f={__proto__:[]}instanceof Array,g="function"===typeof Symbol,k={},l={};k[M&&/Firefox\/2/i.test(M.userAgent)?"KeyboardEvent":"UIEvents"]=["keyup","keydown","keypress"];k.MouseEvents="click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave".split(" ");b(k,function(a,b){if(b.length)for(var c=0,d=b.length;c<d;c++)l[b[c]]=a});var m={propertychange:!0},h=u&&function(){for(var a=3,b=u.createElement("div"),c=
|
||||
b.getElementsByTagName("i");b.innerHTML="\x3c!--[if gt IE "+ ++a+"]><i></i><![endif]--\x3e",c[0];);return 4<a?a:n}(),r=/\S+/g;return{cc:["authenticity_token",/^__RequestVerificationToken(_.*)?$/],q:function(a,b){for(var c=0,d=a.length;c<d;c++)b(a[c],c)},o:function(a,b){if("function"==typeof Array.prototype.indexOf)return Array.prototype.indexOf.call(a,b);for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return c;return-1},Sb:function(a,b,c){for(var d=0,e=a.length;d<e;d++)if(b.call(c,a[d],d))return a[d];
|
||||
return null},La:function(b,c){var d=a.a.o(b,c);0<d?b.splice(d,1):0===d&&b.shift()},Tb:function(b){b=b||[];for(var c=[],d=0,e=b.length;d<e;d++)0>a.a.o(c,b[d])&&c.push(b[d]);return c},fb:function(a,b){a=a||[];for(var c=[],d=0,e=a.length;d<e;d++)c.push(b(a[d],d));return c},Ka:function(a,b){a=a||[];for(var c=[],d=0,e=a.length;d<e;d++)b(a[d],d)&&c.push(a[d]);return c},ra:function(a,b){if(b instanceof Array)a.push.apply(a,b);else for(var c=0,d=b.length;c<d;c++)a.push(b[c]);return a},pa:function(b,c,d){var e=
|
||||
a.a.o(a.a.zb(b),c);0>e?d&&b.push(c):d||b.splice(e,1)},ka:f,extend:c,Xa:d,Ya:f?d:c,D:b,Ca:function(a,b){if(!a)return a;var c={},d;for(d in a)a.hasOwnProperty(d)&&(c[d]=b(a[d],d,a));return c},ob:function(b){for(;b.firstChild;)a.removeNode(b.firstChild)},jc:function(b){b=a.a.V(b);for(var c=(b[0]&&b[0].ownerDocument||u).createElement("div"),d=0,e=b.length;d<e;d++)c.appendChild(a.$(b[d]));return c},ua:function(b,c){for(var d=0,e=b.length,h=[];d<e;d++){var m=b[d].cloneNode(!0);h.push(c?a.$(m):m)}return h},
|
||||
da:function(b,c){a.a.ob(b);if(c)for(var d=0,e=c.length;d<e;d++)b.appendChild(c[d])},qc:function(b,c){var d=b.nodeType?[b]:b;if(0<d.length){for(var e=d[0],h=e.parentNode,m=0,l=c.length;m<l;m++)h.insertBefore(c[m],e);m=0;for(l=d.length;m<l;m++)a.removeNode(d[m])}},za:function(a,b){if(a.length){for(b=8===b.nodeType&&b.parentNode||b;a.length&&a[0].parentNode!==b;)a.splice(0,1);for(;1<a.length&&a[a.length-1].parentNode!==b;)a.length--;if(1<a.length){var c=a[0],d=a[a.length-1];for(a.length=0;c!==d;)a.push(c),
|
||||
c=c.nextSibling;a.push(d)}}return a},sc:function(a,b){7>h?a.setAttribute("selected",b):a.selected=b},$a:function(a){return null===a||a===n?"":a.trim?a.trim():a.toString().replace(/^[\s\xa0]+|[\s\xa0]+$/g,"")},nd:function(a,b){a=a||"";return b.length>a.length?!1:a.substring(0,b.length)===b},Mc:function(a,b){if(a===b)return!0;if(11===a.nodeType)return!1;if(b.contains)return b.contains(3===a.nodeType?a.parentNode:a);if(b.compareDocumentPosition)return 16==(b.compareDocumentPosition(a)&16);for(;a&&a!=
|
||||
b;)a=a.parentNode;return!!a},nb:function(b){return a.a.Mc(b,b.ownerDocument.documentElement)},Qb:function(b){return!!a.a.Sb(b,a.a.nb)},A:function(a){return a&&a.tagName&&a.tagName.toLowerCase()},Wb:function(b){return a.onError?function(){try{return b.apply(this,arguments)}catch(c){throw a.onError&&a.onError(c),c;}}:b},setTimeout:function(b,c){return setTimeout(a.a.Wb(b),c)},$b:function(b){setTimeout(function(){a.onError&&a.onError(b);throw b;},0)},p:function(b,c,d){var e=a.a.Wb(d);d=h&&m[c];if(a.options.useOnlyNativeEvents||
|
||||
d||!v)if(d||"function"!=typeof b.addEventListener)if("undefined"!=typeof b.attachEvent){var l=function(a){e.call(b,a)},f="on"+c;b.attachEvent(f,l);a.a.F.oa(b,function(){b.detachEvent(f,l)})}else throw Error("Browser doesn't support addEventListener or attachEvent");else b.addEventListener(c,e,!1);else v(b).bind(c,e)},Da:function(b,c){if(!b||!b.nodeType)throw Error("element must be a DOM node when calling triggerEvent");var d;"input"===a.a.A(b)&&b.type&&"click"==c.toLowerCase()?(d=b.type,d="checkbox"==
|
||||
d||"radio"==d):d=!1;if(a.options.useOnlyNativeEvents||!v||d)if("function"==typeof u.createEvent)if("function"==typeof b.dispatchEvent)d=u.createEvent(l[c]||"HTMLEvents"),d.initEvent(c,!0,!0,x,0,0,0,0,0,!1,!1,!1,!1,0,b),b.dispatchEvent(d);else throw Error("The supplied element doesn't support dispatchEvent");else if(d&&b.click)b.click();else if("undefined"!=typeof b.fireEvent)b.fireEvent("on"+c);else throw Error("Browser doesn't support triggering events");else v(b).trigger(c)},c:function(b){return a.H(b)?
|
||||
b():b},zb:function(b){return a.H(b)?b.t():b},bb:function(b,c,d){var h;c&&("object"===typeof b.classList?(h=b.classList[d?"add":"remove"],a.a.q(c.match(r),function(a){h.call(b.classList,a)})):"string"===typeof b.className.baseVal?e(b.className,"baseVal",c,d):e(b,"className",c,d))},Za:function(b,c){var d=a.a.c(c);if(null===d||d===n)d="";var e=a.f.firstChild(b);!e||3!=e.nodeType||a.f.nextSibling(e)?a.f.da(b,[b.ownerDocument.createTextNode(d)]):e.data=d;a.a.Rc(b)},rc:function(a,b){a.name=b;if(7>=h)try{a.mergeAttributes(u.createElement("<input name='"+
|
||||
a.name+"'/>"),!1)}catch(c){}},Rc:function(a){9<=h&&(a=1==a.nodeType?a:a.parentNode,a.style&&(a.style.zoom=a.style.zoom))},Nc:function(a){if(h){var b=a.style.width;a.style.width=0;a.style.width=b}},hd:function(b,c){b=a.a.c(b);c=a.a.c(c);for(var d=[],e=b;e<=c;e++)d.push(e);return d},V:function(a){for(var b=[],c=0,d=a.length;c<d;c++)b.push(a[c]);return b},Yb:function(a){return g?Symbol(a):a},rd:6===h,sd:7===h,C:h,ec:function(b,c){for(var d=a.a.V(b.getElementsByTagName("input")).concat(a.a.V(b.getElementsByTagName("textarea"))),
|
||||
e="string"==typeof c?function(a){return a.name===c}:function(a){return c.test(a.name)},h=[],m=d.length-1;0<=m;m--)e(d[m])&&h.push(d[m]);return h},ed:function(b){return"string"==typeof b&&(b=a.a.$a(b))?F&&F.parse?F.parse(b):(new Function("return "+b))():null},Eb:function(b,c,d){if(!F||!F.stringify)throw Error("Cannot find JSON.stringify(). Some browsers (e.g., IE < 8) don't support it natively, but you can overcome this by adding a script reference to json2.js, downloadable from http://www.json.org/json2.js");
|
||||
return F.stringify(a.a.c(b),c,d)},fd:function(c,d,e){e=e||{};var h=e.params||{},m=e.includeFields||this.cc,l=c;if("object"==typeof c&&"form"===a.a.A(c))for(var l=c.action,f=m.length-1;0<=f;f--)for(var g=a.a.ec(c,m[f]),k=g.length-1;0<=k;k--)h[g[k].name]=g[k].value;d=a.a.c(d);var r=u.createElement("form");r.style.display="none";r.action=l;r.method="post";for(var n in d)c=u.createElement("input"),c.type="hidden",c.name=n,c.value=a.a.Eb(a.a.c(d[n])),r.appendChild(c);b(h,function(a,b){var c=u.createElement("input");
|
||||
c.type="hidden";c.name=a;c.value=b;r.appendChild(c)});u.body.appendChild(r);e.submitter?e.submitter(r):r.submit();setTimeout(function(){r.parentNode.removeChild(r)},0)}}}();a.b("utils",a.a);a.b("utils.arrayForEach",a.a.q);a.b("utils.arrayFirst",a.a.Sb);a.b("utils.arrayFilter",a.a.Ka);a.b("utils.arrayGetDistinctValues",a.a.Tb);a.b("utils.arrayIndexOf",a.a.o);a.b("utils.arrayMap",a.a.fb);a.b("utils.arrayPushAll",a.a.ra);a.b("utils.arrayRemoveItem",a.a.La);a.b("utils.extend",a.a.extend);a.b("utils.fieldsIncludedWithJsonPost",
|
||||
a.a.cc);a.b("utils.getFormFields",a.a.ec);a.b("utils.peekObservable",a.a.zb);a.b("utils.postJson",a.a.fd);a.b("utils.parseJson",a.a.ed);a.b("utils.registerEventHandler",a.a.p);a.b("utils.stringifyJson",a.a.Eb);a.b("utils.range",a.a.hd);a.b("utils.toggleDomNodeCssClass",a.a.bb);a.b("utils.triggerEvent",a.a.Da);a.b("utils.unwrapObservable",a.a.c);a.b("utils.objectForEach",a.a.D);a.b("utils.addOrRemoveItem",a.a.pa);a.b("utils.setTextContent",a.a.Za);a.b("unwrap",a.a.c);Function.prototype.bind||(Function.prototype.bind=
|
||||
function(a){var c=this;if(1===arguments.length)return function(){return c.apply(a,arguments)};var d=Array.prototype.slice.call(arguments,1);return function(){var e=d.slice(0);e.push.apply(e,arguments);return c.apply(a,e)}});a.a.e=new function(){function a(b,g){var k=b[d];if(!k||"null"===k||!e[k]){if(!g)return n;k=b[d]="ko"+c++;e[k]={}}return e[k]}var c=0,d="__ko__"+(new Date).getTime(),e={};return{get:function(c,d){var e=a(c,!1);return e===n?n:e[d]},set:function(c,d,e){if(e!==n||a(c,!1)!==n)a(c,!0)[d]=
|
||||
e},clear:function(a){var b=a[d];return b?(delete e[b],a[d]=null,!0):!1},I:function(){return c++ +d}}};a.b("utils.domData",a.a.e);a.b("utils.domData.clear",a.a.e.clear);a.a.F=new function(){function b(b,c){var e=a.a.e.get(b,d);e===n&&c&&(e=[],a.a.e.set(b,d,e));return e}function c(d){var e=b(d,!1);if(e)for(var e=e.slice(0),l=0;l<e.length;l++)e[l](d);a.a.e.clear(d);a.a.F.cleanExternalData(d);if(f[d.nodeType])for(e=d.firstChild;d=e;)e=d.nextSibling,8===d.nodeType&&c(d)}var d=a.a.e.I(),e={1:!0,8:!0,9:!0},
|
||||
f={1:!0,9:!0};return{oa:function(a,c){if("function"!=typeof c)throw Error("Callback must be a function");b(a,!0).push(c)},pc:function(c,e){var l=b(c,!1);l&&(a.a.La(l,e),0==l.length&&a.a.e.set(c,d,n))},$:function(b){if(e[b.nodeType]&&(c(b),f[b.nodeType])){var d=[];a.a.ra(d,b.getElementsByTagName("*"));for(var l=0,m=d.length;l<m;l++)c(d[l])}return b},removeNode:function(b){a.$(b);b.parentNode&&b.parentNode.removeChild(b)},cleanExternalData:function(a){v&&"function"==typeof v.cleanData&&v.cleanData([a])}}};
|
||||
a.$=a.a.F.$;a.removeNode=a.a.F.removeNode;a.b("cleanNode",a.$);a.b("removeNode",a.removeNode);a.b("utils.domNodeDisposal",a.a.F);a.b("utils.domNodeDisposal.addDisposeCallback",a.a.F.oa);a.b("utils.domNodeDisposal.removeDisposeCallback",a.a.F.pc);(function(){var b=[0,"",""],c=[1,"<table>","</table>"],d=[3,"<table><tbody><tr>","</tr></tbody></table>"],e=[1,"<select multiple='multiple'>","</select>"],f={thead:c,tbody:c,tfoot:c,tr:[2,"<table><tbody>","</tbody></table>"],td:d,th:d,option:e,optgroup:e},
|
||||
g=8>=a.a.C;a.a.ma=function(c,d){var e;if(v)if(v.parseHTML)e=v.parseHTML(c,d)||[];else{if((e=v.clean([c],d))&&e[0]){for(var h=e[0];h.parentNode&&11!==h.parentNode.nodeType;)h=h.parentNode;h.parentNode&&h.parentNode.removeChild(h)}}else{(e=d)||(e=u);var h=e.parentWindow||e.defaultView||x,r=a.a.$a(c).toLowerCase(),q=e.createElement("div"),p;p=(r=r.match(/^<([a-z]+)[ >]/))&&f[r[1]]||b;r=p[0];p="ignored<div>"+p[1]+c+p[2]+"</div>";"function"==typeof h.innerShiv?q.appendChild(h.innerShiv(p)):(g&&e.appendChild(q),
|
||||
q.innerHTML=p,g&&q.parentNode.removeChild(q));for(;r--;)q=q.lastChild;e=a.a.V(q.lastChild.childNodes)}return e};a.a.Cb=function(b,c){a.a.ob(b);c=a.a.c(c);if(null!==c&&c!==n)if("string"!=typeof c&&(c=c.toString()),v)v(b).html(c);else for(var d=a.a.ma(c,b.ownerDocument),e=0;e<d.length;e++)b.appendChild(d[e])}})();a.b("utils.parseHtmlFragment",a.a.ma);a.b("utils.setHtml",a.a.Cb);a.M=function(){function b(c,e){if(c)if(8==c.nodeType){var f=a.M.lc(c.nodeValue);null!=f&&e.push({Lc:c,cd:f})}else if(1==c.nodeType)for(var f=
|
||||
0,g=c.childNodes,k=g.length;f<k;f++)b(g[f],e)}var c={};return{wb:function(a){if("function"!=typeof a)throw Error("You can only pass a function to ko.memoization.memoize()");var b=(4294967296*(1+Math.random())|0).toString(16).substring(1)+(4294967296*(1+Math.random())|0).toString(16).substring(1);c[b]=a;return"\x3c!--[ko_memo:"+b+"]--\x3e"},xc:function(a,b){var f=c[a];if(f===n)throw Error("Couldn't find any memo with ID "+a+". Perhaps it's already been unmemoized.");try{return f.apply(null,b||[]),
|
||||
!0}finally{delete c[a]}},yc:function(c,e){var f=[];b(c,f);for(var g=0,k=f.length;g<k;g++){var l=f[g].Lc,m=[l];e&&a.a.ra(m,e);a.M.xc(f[g].cd,m);l.nodeValue="";l.parentNode&&l.parentNode.removeChild(l)}},lc:function(a){return(a=a.match(/^\[ko_memo\:(.*?)\]$/))?a[1]:null}}}();a.b("memoization",a.M);a.b("memoization.memoize",a.M.wb);a.b("memoization.unmemoize",a.M.xc);a.b("memoization.parseMemoText",a.M.lc);a.b("memoization.unmemoizeDomNodeAndDescendants",a.M.yc);a.Y=function(){function b(){if(e)for(var b=
|
||||
e,c=0,m;g<e;)if(m=d[g++]){if(g>b){if(5E3<=++c){g=e;a.a.$b(Error("'Too much recursion' after processing "+c+" task groups."));break}b=e}try{m()}catch(h){a.a.$b(h)}}}function c(){b();g=e=d.length=0}var d=[],e=0,f=1,g=0;return{scheduler:x.MutationObserver?function(a){var b=u.createElement("div");(new MutationObserver(a)).observe(b,{attributes:!0});return function(){b.classList.toggle("foo")}}(c):u&&"onreadystatechange"in u.createElement("script")?function(a){var b=u.createElement("script");b.onreadystatechange=
|
||||
function(){b.onreadystatechange=null;u.documentElement.removeChild(b);b=null;a()};u.documentElement.appendChild(b)}:function(a){setTimeout(a,0)},Wa:function(b){e||a.Y.scheduler(c);d[e++]=b;return f++},cancel:function(a){a-=f-e;a>=g&&a<e&&(d[a]=null)},resetForTesting:function(){var a=e-g;g=e=d.length=0;return a},md:b}}();a.b("tasks",a.Y);a.b("tasks.schedule",a.Y.Wa);a.b("tasks.runEarly",a.Y.md);a.ya={throttle:function(b,c){b.throttleEvaluation=c;var d=null;return a.B({read:b,write:function(e){clearTimeout(d);
|
||||
d=a.a.setTimeout(function(){b(e)},c)}})},rateLimit:function(a,c){var d,e,f;"number"==typeof c?d=c:(d=c.timeout,e=c.method);a.cb=!1;f="notifyWhenChangesStop"==e?V:U;a.Ta(function(a){return f(a,d)})},deferred:function(b,c){if(!0!==c)throw Error("The 'deferred' extender only accepts the value 'true', because it is not supported to turn deferral off once enabled.");b.cb||(b.cb=!0,b.Ta(function(c){var e;return function(){a.Y.cancel(e);e=a.Y.Wa(c);b.notifySubscribers(n,"dirty")}}))},notify:function(a,c){a.equalityComparer=
|
||||
"always"==c?null:J}};var T={undefined:1,"boolean":1,number:1,string:1};a.b("extenders",a.ya);a.vc=function(b,c,d){this.ia=b;this.gb=c;this.Kc=d;this.R=!1;a.G(this,"dispose",this.k)};a.vc.prototype.k=function(){this.R=!0;this.Kc()};a.J=function(){a.a.Ya(this,D);D.rb(this)};var I="change",D={rb:function(a){a.K={};a.Nb=1},X:function(b,c,d){var e=this;d=d||I;var f=new a.vc(e,c?b.bind(c):b,function(){a.a.La(e.K[d],f);e.Ia&&e.Ia(d)});e.sa&&e.sa(d);e.K[d]||(e.K[d]=[]);e.K[d].push(f);return f},notifySubscribers:function(b,
|
||||
c){c=c||I;c===I&&this.zc();if(this.Pa(c))try{a.l.Ub();for(var d=this.K[c].slice(0),e=0,f;f=d[e];++e)f.R||f.gb(b)}finally{a.l.end()}},Na:function(){return this.Nb},Uc:function(a){return this.Na()!==a},zc:function(){++this.Nb},Ta:function(b){var c=this,d=a.H(c),e,f,g;c.Ha||(c.Ha=c.notifySubscribers,c.notifySubscribers=W);var k=b(function(){c.Mb=!1;d&&g===c&&(g=c());e=!1;c.tb(f,g)&&c.Ha(f=g)});c.Lb=function(a){c.Mb=e=!0;g=a;k()};c.Kb=function(a){e||(f=a,c.Ha(a,"beforeChange"))}},Pa:function(a){return this.K[a]&&
|
||||
this.K[a].length},Sc:function(b){if(b)return this.K[b]&&this.K[b].length||0;var c=0;a.a.D(this.K,function(a,b){"dirty"!==a&&(c+=b.length)});return c},tb:function(a,c){return!this.equalityComparer||!this.equalityComparer(a,c)},extend:function(b){var c=this;b&&a.a.D(b,function(b,e){var f=a.ya[b];"function"==typeof f&&(c=f(c,e)||c)});return c}};a.G(D,"subscribe",D.X);a.G(D,"extend",D.extend);a.G(D,"getSubscriptionsCount",D.Sc);a.a.ka&&a.a.Xa(D,Function.prototype);a.J.fn=D;a.hc=function(a){return null!=
|
||||
a&&"function"==typeof a.X&&"function"==typeof a.notifySubscribers};a.b("subscribable",a.J);a.b("isSubscribable",a.hc);a.va=a.l=function(){function b(a){d.push(e);e=a}function c(){e=d.pop()}var d=[],e,f=0;return{Ub:b,end:c,oc:function(b){if(e){if(!a.hc(b))throw Error("Only subscribable things can act as dependencies");e.gb.call(e.Gc,b,b.Cc||(b.Cc=++f))}},w:function(a,d,e){try{return b(),a.apply(d,e||[])}finally{c()}},Aa:function(){if(e)return e.m.Aa()},Sa:function(){if(e)return e.Sa}}}();a.b("computedContext",
|
||||
a.va);a.b("computedContext.getDependenciesCount",a.va.Aa);a.b("computedContext.isInitial",a.va.Sa);a.b("ignoreDependencies",a.qd=a.l.w);var E=a.a.Yb("_latestValue");a.N=function(b){function c(){if(0<arguments.length)return c.tb(c[E],arguments[0])&&(c.ga(),c[E]=arguments[0],c.fa()),this;a.l.oc(c);return c[E]}c[E]=b;a.a.ka||a.a.extend(c,a.J.fn);a.J.fn.rb(c);a.a.Ya(c,B);a.options.deferUpdates&&a.ya.deferred(c,!0);return c};var B={equalityComparer:J,t:function(){return this[E]},fa:function(){this.notifySubscribers(this[E])},
|
||||
ga:function(){this.notifySubscribers(this[E],"beforeChange")}};a.a.ka&&a.a.Xa(B,a.J.fn);var H=a.N.gd="__ko_proto__";B[H]=a.N;a.Oa=function(b,c){return null===b||b===n||b[H]===n?!1:b[H]===c?!0:a.Oa(b[H],c)};a.H=function(b){return a.Oa(b,a.N)};a.Ba=function(b){return"function"==typeof b&&b[H]===a.N||"function"==typeof b&&b[H]===a.B&&b.Vc?!0:!1};a.b("observable",a.N);a.b("isObservable",a.H);a.b("isWriteableObservable",a.Ba);a.b("isWritableObservable",a.Ba);a.b("observable.fn",B);a.G(B,"peek",B.t);a.G(B,
|
||||
"valueHasMutated",B.fa);a.G(B,"valueWillMutate",B.ga);a.la=function(b){b=b||[];if("object"!=typeof b||!("length"in b))throw Error("The argument passed when initializing an observable array must be an array, or null, or undefined.");b=a.N(b);a.a.Ya(b,a.la.fn);return b.extend({trackArrayChanges:!0})};a.la.fn={remove:function(b){for(var c=this.t(),d=[],e="function"!=typeof b||a.H(b)?function(a){return a===b}:b,f=0;f<c.length;f++){var g=c[f];e(g)&&(0===d.length&&this.ga(),d.push(g),c.splice(f,1),f--)}d.length&&
|
||||
this.fa();return d},removeAll:function(b){if(b===n){var c=this.t(),d=c.slice(0);this.ga();c.splice(0,c.length);this.fa();return d}return b?this.remove(function(c){return 0<=a.a.o(b,c)}):[]},destroy:function(b){var c=this.t(),d="function"!=typeof b||a.H(b)?function(a){return a===b}:b;this.ga();for(var e=c.length-1;0<=e;e--)d(c[e])&&(c[e]._destroy=!0);this.fa()},destroyAll:function(b){return b===n?this.destroy(function(){return!0}):b?this.destroy(function(c){return 0<=a.a.o(b,c)}):[]},indexOf:function(b){var c=
|
||||
this();return a.a.o(c,b)},replace:function(a,c){var d=this.indexOf(a);0<=d&&(this.ga(),this.t()[d]=c,this.fa())}};a.a.ka&&a.a.Xa(a.la.fn,a.N.fn);a.a.q("pop push reverse shift sort splice unshift".split(" "),function(b){a.la.fn[b]=function(){var a=this.t();this.ga();this.Vb(a,b,arguments);var d=a[b].apply(a,arguments);this.fa();return d===a?this:d}});a.a.q(["slice"],function(b){a.la.fn[b]=function(){var a=this();return a[b].apply(a,arguments)}});a.b("observableArray",a.la);a.ya.trackArrayChanges=function(b,
|
||||
c){function d(){if(!e){e=!0;var c=b.notifySubscribers;b.notifySubscribers=function(a,b){b&&b!==I||++k;return c.apply(this,arguments)};var d=[].concat(b.t()||[]);f=null;g=b.X(function(c){c=[].concat(c||[]);if(b.Pa("arrayChange")){var e;if(!f||1<k)f=a.a.ib(d,c,b.hb);e=f}d=c;f=null;k=0;e&&e.length&&b.notifySubscribers(e,"arrayChange")})}}b.hb={};c&&"object"==typeof c&&a.a.extend(b.hb,c);b.hb.sparse=!0;if(!b.Vb){var e=!1,f=null,g,k=0,l=b.sa,m=b.Ia;b.sa=function(a){l&&l.call(b,a);"arrayChange"===a&&d()};
|
||||
b.Ia=function(a){m&&m.call(b,a);"arrayChange"!==a||b.Pa("arrayChange")||(g.k(),e=!1)};b.Vb=function(b,c,d){function m(a,b,c){return l[l.length]={status:a,value:b,index:c}}if(e&&!k){var l=[],g=b.length,t=d.length,G=0;switch(c){case "push":G=g;case "unshift":for(c=0;c<t;c++)m("added",d[c],G+c);break;case "pop":G=g-1;case "shift":g&&m("deleted",b[G],G);break;case "splice":c=Math.min(Math.max(0,0>d[0]?g+d[0]:d[0]),g);for(var g=1===t?g:Math.min(c+(d[1]||0),g),t=c+t-2,G=Math.max(g,t),P=[],n=[],Q=2;c<G;++c,
|
||||
++Q)c<g&&n.push(m("deleted",b[c],c)),c<t&&P.push(m("added",d[Q],c));a.a.dc(n,P);break;default:return}f=l}}}};var s=a.a.Yb("_state");a.m=a.B=function(b,c,d){function e(){if(0<arguments.length){if("function"===typeof f)f.apply(g.pb,arguments);else throw Error("Cannot write a value to a ko.computed unless you specify a 'write' option. If you wish to read the current value, don't pass any parameters.");return this}a.l.oc(e);(g.S||g.s&&e.Qa())&&e.aa();return g.T}"object"===typeof b?d=b:(d=d||{},b&&(d.read=
|
||||
b));if("function"!=typeof d.read)throw Error("Pass a function that returns the value of the ko.computed");var f=d.write,g={T:n,S:!0,Ra:!1,Fb:!1,R:!1,Va:!1,s:!1,jd:d.read,pb:c||d.owner,i:d.disposeWhenNodeIsRemoved||d.i||null,wa:d.disposeWhen||d.wa,mb:null,r:{},L:0,bc:null};e[s]=g;e.Vc="function"===typeof f;a.a.ka||a.a.extend(e,a.J.fn);a.J.fn.rb(e);a.a.Ya(e,z);d.pure?(g.Va=!0,g.s=!0,a.a.extend(e,$)):d.deferEvaluation&&a.a.extend(e,aa);a.options.deferUpdates&&a.ya.deferred(e,!0);g.i&&(g.Fb=!0,g.i.nodeType||
|
||||
(g.i=null));g.s||d.deferEvaluation||e.aa();g.i&&e.ba()&&a.a.F.oa(g.i,g.mb=function(){e.k()});return e};var z={equalityComparer:J,Aa:function(){return this[s].L},Pb:function(a,c,d){if(this[s].Va&&c===this)throw Error("A 'pure' computed must not be called recursively");this[s].r[a]=d;d.Ga=this[s].L++;d.na=c.Na()},Qa:function(){var a,c,d=this[s].r;for(a in d)if(d.hasOwnProperty(a)&&(c=d[a],c.ia.Uc(c.na)))return!0},bd:function(){this.Fa&&!this[s].Ra&&this.Fa()},ba:function(){return this[s].S||0<this[s].L},
|
||||
ld:function(){this.Mb||this.ac()},uc:function(a){if(a.cb&&!this[s].i){var c=a.X(this.bd,this,"dirty"),d=a.X(this.ld,this);return{ia:a,k:function(){c.k();d.k()}}}return a.X(this.ac,this)},ac:function(){var b=this,c=b.throttleEvaluation;c&&0<=c?(clearTimeout(this[s].bc),this[s].bc=a.a.setTimeout(function(){b.aa(!0)},c)):b.Fa?b.Fa():b.aa(!0)},aa:function(b){var c=this[s],d=c.wa;if(!c.Ra&&!c.R){if(c.i&&!a.a.nb(c.i)||d&&d()){if(!c.Fb){this.k();return}}else c.Fb=!1;c.Ra=!0;try{this.Qc(b)}finally{c.Ra=!1}c.L||
|
||||
this.k()}},Qc:function(b){var c=this[s],d=c.Va?n:!c.L,e={Hc:this,Ma:c.r,lb:c.L};a.l.Ub({Gc:e,gb:Y,m:this,Sa:d});c.r={};c.L=0;e=this.Pc(c,e);this.tb(c.T,e)&&(c.s||this.notifySubscribers(c.T,"beforeChange"),c.T=e,c.s?this.zc():b&&this.notifySubscribers(c.T));d&&this.notifySubscribers(c.T,"awake")},Pc:function(b,c){try{var d=b.jd;return b.pb?d.call(b.pb):d()}finally{a.l.end(),c.lb&&!b.s&&a.a.D(c.Ma,X),b.S=!1}},t:function(){var a=this[s];(a.S&&!a.L||a.s&&this.Qa())&&this.aa();return a.T},Ta:function(b){a.J.fn.Ta.call(this,
|
||||
b);this.Fa=function(){this.Kb(this[s].T);this[s].S=!0;this.Lb(this)}},k:function(){var b=this[s];!b.s&&b.r&&a.a.D(b.r,function(a,b){b.k&&b.k()});b.i&&b.mb&&a.a.F.pc(b.i,b.mb);b.r=null;b.L=0;b.R=!0;b.S=!1;b.s=!1;b.i=null}},$={sa:function(b){var c=this,d=c[s];if(!d.R&&d.s&&"change"==b){d.s=!1;if(d.S||c.Qa())d.r=null,d.L=0,d.S=!0,c.aa();else{var e=[];a.a.D(d.r,function(a,b){e[b.Ga]=a});a.a.q(e,function(a,b){var e=d.r[a],l=c.uc(e.ia);l.Ga=b;l.na=e.na;d.r[a]=l})}d.R||c.notifySubscribers(d.T,"awake")}},
|
||||
Ia:function(b){var c=this[s];c.R||"change"!=b||this.Pa("change")||(a.a.D(c.r,function(a,b){b.k&&(c.r[a]={ia:b.ia,Ga:b.Ga,na:b.na},b.k())}),c.s=!0,this.notifySubscribers(n,"asleep"))},Na:function(){var b=this[s];b.s&&(b.S||this.Qa())&&this.aa();return a.J.fn.Na.call(this)}},aa={sa:function(a){"change"!=a&&"beforeChange"!=a||this.t()}};a.a.ka&&a.a.Xa(z,a.J.fn);var R=a.N.gd;a.m[R]=a.N;z[R]=a.m;a.Xc=function(b){return a.Oa(b,a.m)};a.Yc=function(b){return a.Oa(b,a.m)&&b[s]&&b[s].Va};a.b("computed",a.m);
|
||||
a.b("dependentObservable",a.m);a.b("isComputed",a.Xc);a.b("isPureComputed",a.Yc);a.b("computed.fn",z);a.G(z,"peek",z.t);a.G(z,"dispose",z.k);a.G(z,"isActive",z.ba);a.G(z,"getDependenciesCount",z.Aa);a.nc=function(b,c){if("function"===typeof b)return a.m(b,c,{pure:!0});b=a.a.extend({},b);b.pure=!0;return a.m(b,c)};a.b("pureComputed",a.nc);(function(){function b(a,f,g){g=g||new d;a=f(a);if("object"!=typeof a||null===a||a===n||a instanceof RegExp||a instanceof Date||a instanceof String||a instanceof
|
||||
Number||a instanceof Boolean)return a;var k=a instanceof Array?[]:{};g.save(a,k);c(a,function(c){var d=f(a[c]);switch(typeof d){case "boolean":case "number":case "string":case "function":k[c]=d;break;case "object":case "undefined":var h=g.get(d);k[c]=h!==n?h:b(d,f,g)}});return k}function c(a,b){if(a instanceof Array){for(var c=0;c<a.length;c++)b(c);"function"==typeof a.toJSON&&b("toJSON")}else for(c in a)b(c)}function d(){this.keys=[];this.Ib=[]}a.wc=function(c){if(0==arguments.length)throw Error("When calling ko.toJS, pass the object you want to convert.");
|
||||
return b(c,function(b){for(var c=0;a.H(b)&&10>c;c++)b=b();return b})};a.toJSON=function(b,c,d){b=a.wc(b);return a.a.Eb(b,c,d)};d.prototype={save:function(b,c){var d=a.a.o(this.keys,b);0<=d?this.Ib[d]=c:(this.keys.push(b),this.Ib.push(c))},get:function(b){b=a.a.o(this.keys,b);return 0<=b?this.Ib[b]:n}}})();a.b("toJS",a.wc);a.b("toJSON",a.toJSON);(function(){a.j={u:function(b){switch(a.a.A(b)){case "option":return!0===b.__ko__hasDomDataOptionValue__?a.a.e.get(b,a.d.options.xb):7>=a.a.C?b.getAttributeNode("value")&&
|
||||
b.getAttributeNode("value").specified?b.value:b.text:b.value;case "select":return 0<=b.selectedIndex?a.j.u(b.options[b.selectedIndex]):n;default:return b.value}},ha:function(b,c,d){switch(a.a.A(b)){case "option":switch(typeof c){case "string":a.a.e.set(b,a.d.options.xb,n);"__ko__hasDomDataOptionValue__"in b&&delete b.__ko__hasDomDataOptionValue__;b.value=c;break;default:a.a.e.set(b,a.d.options.xb,c),b.__ko__hasDomDataOptionValue__=!0,b.value="number"===typeof c?c:""}break;case "select":if(""===c||
|
||||
null===c)c=n;for(var e=-1,f=0,g=b.options.length,k;f<g;++f)if(k=a.j.u(b.options[f]),k==c||""==k&&c===n){e=f;break}if(d||0<=e||c===n&&1<b.size)b.selectedIndex=e;break;default:if(null===c||c===n)c="";b.value=c}}}})();a.b("selectExtensions",a.j);a.b("selectExtensions.readValue",a.j.u);a.b("selectExtensions.writeValue",a.j.ha);a.h=function(){function b(b){b=a.a.$a(b);123===b.charCodeAt(0)&&(b=b.slice(1,-1));var c=[],d=b.match(e),r,k=[],p=0;if(d){d.push(",");for(var A=0,y;y=d[A];++A){var t=y.charCodeAt(0);
|
||||
if(44===t){if(0>=p){c.push(r&&k.length?{key:r,value:k.join("")}:{unknown:r||k.join("")});r=p=0;k=[];continue}}else if(58===t){if(!p&&!r&&1===k.length){r=k.pop();continue}}else 47===t&&A&&1<y.length?(t=d[A-1].match(f))&&!g[t[0]]&&(b=b.substr(b.indexOf(y)+1),d=b.match(e),d.push(","),A=-1,y="/"):40===t||123===t||91===t?++p:41===t||125===t||93===t?--p:r||k.length||34!==t&&39!==t||(y=y.slice(1,-1));k.push(y)}}return c}var c=["true","false","null","undefined"],d=/^(?:[$_a-z][$\w]*|(.+)(\.\s*[$_a-z][$\w]*|\[.+\]))$/i,
|
||||
e=RegExp("\"(?:[^\"\\\\]|\\\\.)*\"|'(?:[^'\\\\]|\\\\.)*'|/(?:[^/\\\\]|\\\\.)*/w*|[^\\s:,/][^,\"'{}()/:[\\]]*[^\\s,\"'{}()/:[\\]]|[^\\s]","g"),f=/[\])"'A-Za-z0-9_$]+$/,g={"in":1,"return":1,"typeof":1},k={};return{ta:[],ea:k,yb:b,Ua:function(e,m){function h(b,e){var m;if(!A){var l=a.getBindingHandler(b);if(l&&l.preprocess&&!(e=l.preprocess(e,b,h)))return;if(l=k[b])m=e,0<=a.a.o(c,m)?m=!1:(l=m.match(d),m=null===l?!1:l[1]?"Object("+l[1]+")"+l[2]:m),l=m;l&&g.push("'"+b+"':function(_z){"+m+"=_z}")}p&&(e=
|
||||
"function(){return "+e+" }");f.push("'"+b+"':"+e)}m=m||{};var f=[],g=[],p=m.valueAccessors,A=m.bindingParams,y="string"===typeof e?b(e):e;a.a.q(y,function(a){h(a.key||a.unknown,a.value)});g.length&&h("_ko_property_writers","{"+g.join(",")+" }");return f.join(",")},ad:function(a,b){for(var c=0;c<a.length;c++)if(a[c].key==b)return!0;return!1},Ea:function(b,c,d,e,f){if(b&&a.H(b))!a.Ba(b)||f&&b.t()===e||b(e);else if((b=c.get("_ko_property_writers"))&&b[d])b[d](e)}}}();a.b("expressionRewriting",a.h);a.b("expressionRewriting.bindingRewriteValidators",
|
||||
a.h.ta);a.b("expressionRewriting.parseObjectLiteral",a.h.yb);a.b("expressionRewriting.preProcessBindings",a.h.Ua);a.b("expressionRewriting._twoWayBindings",a.h.ea);a.b("jsonExpressionRewriting",a.h);a.b("jsonExpressionRewriting.insertPropertyAccessorsIntoJson",a.h.Ua);(function(){function b(a){return 8==a.nodeType&&g.test(f?a.text:a.nodeValue)}function c(a){return 8==a.nodeType&&k.test(f?a.text:a.nodeValue)}function d(a,d){for(var e=a,f=1,l=[];e=e.nextSibling;){if(c(e)&&(f--,0===f))return l;l.push(e);
|
||||
b(e)&&f++}if(!d)throw Error("Cannot find closing comment tag to match: "+a.nodeValue);return null}function e(a,b){var c=d(a,b);return c?0<c.length?c[c.length-1].nextSibling:a.nextSibling:null}var f=u&&"\x3c!--test--\x3e"===u.createComment("test").text,g=f?/^\x3c!--\s*ko(?:\s+([\s\S]+))?\s*--\x3e$/:/^\s*ko(?:\s+([\s\S]+))?\s*$/,k=f?/^\x3c!--\s*\/ko\s*--\x3e$/:/^\s*\/ko\s*$/,l={ul:!0,ol:!0};a.f={Z:{},childNodes:function(a){return b(a)?d(a):a.childNodes},xa:function(c){if(b(c)){c=a.f.childNodes(c);for(var d=
|
||||
0,e=c.length;d<e;d++)a.removeNode(c[d])}else a.a.ob(c)},da:function(c,d){if(b(c)){a.f.xa(c);for(var e=c.nextSibling,f=0,l=d.length;f<l;f++)e.parentNode.insertBefore(d[f],e)}else a.a.da(c,d)},mc:function(a,c){b(a)?a.parentNode.insertBefore(c,a.nextSibling):a.firstChild?a.insertBefore(c,a.firstChild):a.appendChild(c)},gc:function(c,d,e){e?b(c)?c.parentNode.insertBefore(d,e.nextSibling):e.nextSibling?c.insertBefore(d,e.nextSibling):c.appendChild(d):a.f.mc(c,d)},firstChild:function(a){return b(a)?!a.nextSibling||
|
||||
c(a.nextSibling)?null:a.nextSibling:a.firstChild},nextSibling:function(a){b(a)&&(a=e(a));return a.nextSibling&&c(a.nextSibling)?null:a.nextSibling},Tc:b,pd:function(a){return(a=(f?a.text:a.nodeValue).match(g))?a[1]:null},kc:function(d){if(l[a.a.A(d)]){var h=d.firstChild;if(h){do if(1===h.nodeType){var f;f=h.firstChild;var g=null;if(f){do if(g)g.push(f);else if(b(f)){var k=e(f,!0);k?f=k:g=[f]}else c(f)&&(g=[f]);while(f=f.nextSibling)}if(f=g)for(g=h.nextSibling,k=0;k<f.length;k++)g?d.insertBefore(f[k],
|
||||
g):d.appendChild(f[k])}while(h=h.nextSibling)}}}}})();a.b("virtualElements",a.f);a.b("virtualElements.allowedBindings",a.f.Z);a.b("virtualElements.emptyNode",a.f.xa);a.b("virtualElements.insertAfter",a.f.gc);a.b("virtualElements.prepend",a.f.mc);a.b("virtualElements.setDomNodeChildren",a.f.da);(function(){a.Q=function(){this.Fc={}};a.a.extend(a.Q.prototype,{nodeHasBindings:function(b){switch(b.nodeType){case 1:return null!=b.getAttribute("data-bind")||a.g.getComponentNameForNode(b);case 8:return a.f.Tc(b);
|
||||
default:return!1}},getBindings:function(b,c){var d=this.getBindingsString(b,c),d=d?this.parseBindingsString(d,c,b):null;return a.g.Ob(d,b,c,!1)},getBindingAccessors:function(b,c){var d=this.getBindingsString(b,c),d=d?this.parseBindingsString(d,c,b,{valueAccessors:!0}):null;return a.g.Ob(d,b,c,!0)},getBindingsString:function(b){switch(b.nodeType){case 1:return b.getAttribute("data-bind");case 8:return a.f.pd(b);default:return null}},parseBindingsString:function(b,c,d,e){try{var f=this.Fc,g=b+(e&&e.valueAccessors||
|
||||
""),k;if(!(k=f[g])){var l,m="with($context){with($data||{}){return{"+a.h.Ua(b,e)+"}}}";l=new Function("$context","$element",m);k=f[g]=l}return k(c,d)}catch(h){throw h.message="Unable to parse bindings.\nBindings value: "+b+"\nMessage: "+h.message,h;}}});a.Q.instance=new a.Q})();a.b("bindingProvider",a.Q);(function(){function b(a){return function(){return a}}function c(a){return a()}function d(b){return a.a.Ca(a.l.w(b),function(a,c){return function(){return b()[c]}})}function e(c,e,h){return"function"===
|
||||
typeof c?d(c.bind(null,e,h)):a.a.Ca(c,b)}function f(a,b){return d(this.getBindings.bind(this,a,b))}function g(b,c,d){var e,h=a.f.firstChild(c),f=a.Q.instance,m=f.preprocessNode;if(m){for(;e=h;)h=a.f.nextSibling(e),m.call(f,e);h=a.f.firstChild(c)}for(;e=h;)h=a.f.nextSibling(e),k(b,e,d)}function k(b,c,d){var e=!0,h=1===c.nodeType;h&&a.f.kc(c);if(h&&d||a.Q.instance.nodeHasBindings(c))e=m(c,null,b,d).shouldBindDescendants;e&&!r[a.a.A(c)]&&g(b,c,!h)}function l(b){var c=[],d={},e=[];a.a.D(b,function Z(h){if(!d[h]){var f=
|
||||
a.getBindingHandler(h);f&&(f.after&&(e.push(h),a.a.q(f.after,function(c){if(b[c]){if(-1!==a.a.o(e,c))throw Error("Cannot combine the following bindings, because they have a cyclic dependency: "+e.join(", "));Z(c)}}),e.length--),c.push({key:h,fc:f}));d[h]=!0}});return c}function m(b,d,e,h){var m=a.a.e.get(b,q);if(!d){if(m)throw Error("You cannot apply bindings multiple times to the same element.");a.a.e.set(b,q,!0)}!m&&h&&a.tc(b,e);var g;if(d&&"function"!==typeof d)g=d;else{var k=a.Q.instance,r=k.getBindingAccessors||
|
||||
f,p=a.B(function(){(g=d?d(e,b):r.call(k,b,e))&&e.P&&e.P();return g},null,{i:b});g&&p.ba()||(p=null)}var u;if(g){var v=p?function(a){return function(){return c(p()[a])}}:function(a){return g[a]},s=function(){return a.a.Ca(p?p():g,c)};s.get=function(a){return g[a]&&c(v(a))};s.has=function(a){return a in g};h=l(g);a.a.q(h,function(c){var d=c.fc.init,h=c.fc.update,f=c.key;if(8===b.nodeType&&!a.f.Z[f])throw Error("The binding '"+f+"' cannot be used with virtual elements");try{"function"==typeof d&&a.l.w(function(){var a=
|
||||
d(b,v(f),s,e.$data,e);if(a&&a.controlsDescendantBindings){if(u!==n)throw Error("Multiple bindings ("+u+" and "+f+") are trying to control descendant bindings of the same element. You cannot use these bindings together on the same element.");u=f}}),"function"==typeof h&&a.B(function(){h(b,v(f),s,e.$data,e)},null,{i:b})}catch(m){throw m.message='Unable to process binding "'+f+": "+g[f]+'"\nMessage: '+m.message,m;}})}return{shouldBindDescendants:u===n}}function h(b){return b&&b instanceof a.U?b:new a.U(b)}
|
||||
a.d={};var r={script:!0,textarea:!0,template:!0};a.getBindingHandler=function(b){return a.d[b]};a.U=function(b,c,d,e){var h=this,f="function"==typeof b&&!a.H(b),m,g=a.B(function(){var m=f?b():b,l=a.a.c(m);c?(c.P&&c.P(),a.a.extend(h,c),g&&(h.P=g)):(h.$parents=[],h.$root=l,h.ko=a);h.$rawData=m;h.$data=l;d&&(h[d]=l);e&&e(h,c,l);return h.$data},null,{wa:function(){return m&&!a.a.Qb(m)},i:!0});g.ba()&&(h.P=g,g.equalityComparer=null,m=[],g.Ac=function(b){m.push(b);a.a.F.oa(b,function(b){a.a.La(m,b);m.length||
|
||||
(g.k(),h.P=g=n)})})};a.U.prototype.createChildContext=function(b,c,d){return new a.U(b,this,c,function(a,b){a.$parentContext=b;a.$parent=b.$data;a.$parents=(b.$parents||[]).slice(0);a.$parents.unshift(a.$parent);d&&d(a)})};a.U.prototype.extend=function(b){return new a.U(this.P||this.$data,this,null,function(c,d){c.$rawData=d.$rawData;a.a.extend(c,"function"==typeof b?b():b)})};var q=a.a.e.I(),p=a.a.e.I();a.tc=function(b,c){if(2==arguments.length)a.a.e.set(b,p,c),c.P&&c.P.Ac(b);else return a.a.e.get(b,
|
||||
p)};a.Ja=function(b,c,d){1===b.nodeType&&a.f.kc(b);return m(b,c,h(d),!0)};a.Dc=function(b,c,d){d=h(d);return a.Ja(b,e(c,d,b),d)};a.eb=function(a,b){1!==b.nodeType&&8!==b.nodeType||g(h(a),b,!0)};a.Rb=function(a,b){!v&&x.jQuery&&(v=x.jQuery);if(b&&1!==b.nodeType&&8!==b.nodeType)throw Error("ko.applyBindings: first parameter should be your view model; second parameter should be a DOM node");b=b||x.document.body;k(h(a),b,!0)};a.kb=function(b){switch(b.nodeType){case 1:case 8:var c=a.tc(b);if(c)return c;
|
||||
if(b.parentNode)return a.kb(b.parentNode)}return n};a.Jc=function(b){return(b=a.kb(b))?b.$data:n};a.b("bindingHandlers",a.d);a.b("applyBindings",a.Rb);a.b("applyBindingsToDescendants",a.eb);a.b("applyBindingAccessorsToNode",a.Ja);a.b("applyBindingsToNode",a.Dc);a.b("contextFor",a.kb);a.b("dataFor",a.Jc)})();(function(b){function c(c,e){var m=f.hasOwnProperty(c)?f[c]:b,h;m?m.X(e):(m=f[c]=new a.J,m.X(e),d(c,function(b,d){var e=!(!d||!d.synchronous);g[c]={definition:b,Zc:e};delete f[c];h||e?m.notifySubscribers(b):
|
||||
a.Y.Wa(function(){m.notifySubscribers(b)})}),h=!0)}function d(a,b){e("getConfig",[a],function(c){c?e("loadComponent",[a,c],function(a){b(a,c)}):b(null,null)})}function e(c,d,f,h){h||(h=a.g.loaders.slice(0));var g=h.shift();if(g){var q=g[c];if(q){var p=!1;if(q.apply(g,d.concat(function(a){p?f(null):null!==a?f(a):e(c,d,f,h)}))!==b&&(p=!0,!g.suppressLoaderExceptions))throw Error("Component loaders must supply values by invoking the callback, not by returning values synchronously.");}else e(c,d,f,h)}else f(null)}
|
||||
var f={},g={};a.g={get:function(d,e){var f=g.hasOwnProperty(d)?g[d]:b;f?f.Zc?a.l.w(function(){e(f.definition)}):a.Y.Wa(function(){e(f.definition)}):c(d,e)},Xb:function(a){delete g[a]},Jb:e};a.g.loaders=[];a.b("components",a.g);a.b("components.get",a.g.get);a.b("components.clearCachedDefinition",a.g.Xb)})();(function(){function b(b,c,d,e){function g(){0===--y&&e(k)}var k={},y=2,t=d.template;d=d.viewModel;t?f(c,t,function(c){a.g.Jb("loadTemplate",[b,c],function(a){k.template=a;g()})}):g();d?f(c,d,function(c){a.g.Jb("loadViewModel",
|
||||
[b,c],function(a){k[l]=a;g()})}):g()}function c(a,b,d){if("function"===typeof b)d(function(a){return new b(a)});else if("function"===typeof b[l])d(b[l]);else if("instance"in b){var e=b.instance;d(function(){return e})}else"viewModel"in b?c(a,b.viewModel,d):a("Unknown viewModel value: "+b)}function d(b){switch(a.a.A(b)){case "script":return a.a.ma(b.text);case "textarea":return a.a.ma(b.value);case "template":if(e(b.content))return a.a.ua(b.content.childNodes)}return a.a.ua(b.childNodes)}function e(a){return x.DocumentFragment?
|
||||
a instanceof DocumentFragment:a&&11===a.nodeType}function f(a,b,c){"string"===typeof b.require?O||x.require?(O||x.require)([b.require],c):a("Uses require, but no AMD loader is present"):c(b)}function g(a){return function(b){throw Error("Component '"+a+"': "+b);}}var k={};a.g.register=function(b,c){if(!c)throw Error("Invalid configuration for "+b);if(a.g.ub(b))throw Error("Component "+b+" is already registered");k[b]=c};a.g.ub=function(a){return k.hasOwnProperty(a)};a.g.od=function(b){delete k[b];
|
||||
a.g.Xb(b)};a.g.Zb={getConfig:function(a,b){b(k.hasOwnProperty(a)?k[a]:null)},loadComponent:function(a,c,d){var e=g(a);f(e,c,function(c){b(a,e,c,d)})},loadTemplate:function(b,c,f){b=g(b);if("string"===typeof c)f(a.a.ma(c));else if(c instanceof Array)f(c);else if(e(c))f(a.a.V(c.childNodes));else if(c.element)if(c=c.element,x.HTMLElement?c instanceof HTMLElement:c&&c.tagName&&1===c.nodeType)f(d(c));else if("string"===typeof c){var l=u.getElementById(c);l?f(d(l)):b("Cannot find element with ID "+c)}else b("Unknown element type: "+
|
||||
c);else b("Unknown template value: "+c)},loadViewModel:function(a,b,d){c(g(a),b,d)}};var l="createViewModel";a.b("components.register",a.g.register);a.b("components.isRegistered",a.g.ub);a.b("components.unregister",a.g.od);a.b("components.defaultLoader",a.g.Zb);a.g.loaders.push(a.g.Zb);a.g.Bc=k})();(function(){function b(b,e){var f=b.getAttribute("params");if(f){var f=c.parseBindingsString(f,e,b,{valueAccessors:!0,bindingParams:!0}),f=a.a.Ca(f,function(c){return a.m(c,null,{i:b})}),g=a.a.Ca(f,function(c){var e=
|
||||
c.t();return c.ba()?a.m({read:function(){return a.a.c(c())},write:a.Ba(e)&&function(a){c()(a)},i:b}):e});g.hasOwnProperty("$raw")||(g.$raw=f);return g}return{$raw:{}}}a.g.getComponentNameForNode=function(b){var c=a.a.A(b);if(a.g.ub(c)&&(-1!=c.indexOf("-")||"[object HTMLUnknownElement]"==""+b||8>=a.a.C&&b.tagName===c))return c};a.g.Ob=function(c,e,f,g){if(1===e.nodeType){var k=a.g.getComponentNameForNode(e);if(k){c=c||{};if(c.component)throw Error('Cannot use the "component" binding on a custom element matching a component');
|
||||
var l={name:k,params:b(e,f)};c.component=g?function(){return l}:l}}return c};var c=new a.Q;9>a.a.C&&(a.g.register=function(a){return function(b){u.createElement(b);return a.apply(this,arguments)}}(a.g.register),u.createDocumentFragment=function(b){return function(){var c=b(),f=a.g.Bc,g;for(g in f)f.hasOwnProperty(g)&&c.createElement(g);return c}}(u.createDocumentFragment))})();(function(b){function c(b,c,d){c=c.template;if(!c)throw Error("Component '"+b+"' has no template");b=a.a.ua(c);a.f.da(d,b)}
|
||||
function d(a,b,c,d){var e=a.createViewModel;return e?e.call(a,d,{element:b,templateNodes:c}):d}var e=0;a.d.component={init:function(f,g,k,l,m){function h(){var a=r&&r.dispose;"function"===typeof a&&a.call(r);q=r=null}var r,q,p=a.a.V(a.f.childNodes(f));a.a.F.oa(f,h);a.m(function(){var l=a.a.c(g()),k,t;"string"===typeof l?k=l:(k=a.a.c(l.name),t=a.a.c(l.params));if(!k)throw Error("No component name specified");var n=q=++e;a.g.get(k,function(e){if(q===n){h();if(!e)throw Error("Unknown component '"+k+
|
||||
"'");c(k,e,f);var g=d(e,f,p,t);e=m.createChildContext(g,b,function(a){a.$component=g;a.$componentTemplateNodes=p});r=g;a.eb(e,f)}})},null,{i:f});return{controlsDescendantBindings:!0}}};a.f.Z.component=!0})();var S={"class":"className","for":"htmlFor"};a.d.attr={update:function(b,c){var d=a.a.c(c())||{};a.a.D(d,function(c,d){d=a.a.c(d);var g=!1===d||null===d||d===n;g&&b.removeAttribute(c);8>=a.a.C&&c in S?(c=S[c],g?b.removeAttribute(c):b[c]=d):g||b.setAttribute(c,d.toString());"name"===c&&a.a.rc(b,
|
||||
g?"":d.toString())})}};(function(){a.d.checked={after:["value","attr"],init:function(b,c,d){function e(){var e=b.checked,f=p?g():e;if(!a.va.Sa()&&(!l||e)){var m=a.l.w(c);if(h){var k=r?m.t():m;q!==f?(e&&(a.a.pa(k,f,!0),a.a.pa(k,q,!1)),q=f):a.a.pa(k,f,e);r&&a.Ba(m)&&m(k)}else a.h.Ea(m,d,"checked",f,!0)}}function f(){var d=a.a.c(c());b.checked=h?0<=a.a.o(d,g()):k?d:g()===d}var g=a.nc(function(){return d.has("checkedValue")?a.a.c(d.get("checkedValue")):d.has("value")?a.a.c(d.get("value")):b.value}),k=
|
||||
"checkbox"==b.type,l="radio"==b.type;if(k||l){var m=c(),h=k&&a.a.c(m)instanceof Array,r=!(h&&m.push&&m.splice),q=h?g():n,p=l||h;l&&!b.name&&a.d.uniqueName.init(b,function(){return!0});a.m(e,null,{i:b});a.a.p(b,"click",e);a.m(f,null,{i:b});m=n}}};a.h.ea.checked=!0;a.d.checkedValue={update:function(b,c){b.value=a.a.c(c())}}})();a.d.css={update:function(b,c){var d=a.a.c(c());null!==d&&"object"==typeof d?a.a.D(d,function(c,d){d=a.a.c(d);a.a.bb(b,c,d)}):(d=a.a.$a(String(d||"")),a.a.bb(b,b.__ko__cssValue,
|
||||
!1),b.__ko__cssValue=d,a.a.bb(b,d,!0))}};a.d.enable={update:function(b,c){var d=a.a.c(c());d&&b.disabled?b.removeAttribute("disabled"):d||b.disabled||(b.disabled=!0)}};a.d.disable={update:function(b,c){a.d.enable.update(b,function(){return!a.a.c(c())})}};a.d.event={init:function(b,c,d,e,f){var g=c()||{};a.a.D(g,function(g){"string"==typeof g&&a.a.p(b,g,function(b){var m,h=c()[g];if(h){try{var r=a.a.V(arguments);e=f.$data;r.unshift(e);m=h.apply(e,r)}finally{!0!==m&&(b.preventDefault?b.preventDefault():
|
||||
b.returnValue=!1)}!1===d.get(g+"Bubble")&&(b.cancelBubble=!0,b.stopPropagation&&b.stopPropagation())}})})}};a.d.foreach={ic:function(b){return function(){var c=b(),d=a.a.zb(c);if(!d||"number"==typeof d.length)return{foreach:c,templateEngine:a.W.sb};a.a.c(c);return{foreach:d.data,as:d.as,includeDestroyed:d.includeDestroyed,afterAdd:d.afterAdd,beforeRemove:d.beforeRemove,afterRender:d.afterRender,beforeMove:d.beforeMove,afterMove:d.afterMove,templateEngine:a.W.sb}}},init:function(b,c){return a.d.template.init(b,
|
||||
a.d.foreach.ic(c))},update:function(b,c,d,e,f){return a.d.template.update(b,a.d.foreach.ic(c),d,e,f)}};a.h.ta.foreach=!1;a.f.Z.foreach=!0;a.d.hasfocus={init:function(b,c,d){function e(e){b.__ko_hasfocusUpdating=!0;var f=b.ownerDocument;if("activeElement"in f){var g;try{g=f.activeElement}catch(h){g=f.body}e=g===b}f=c();a.h.Ea(f,d,"hasfocus",e,!0);b.__ko_hasfocusLastValue=e;b.__ko_hasfocusUpdating=!1}var f=e.bind(null,!0),g=e.bind(null,!1);a.a.p(b,"focus",f);a.a.p(b,"focusin",f);a.a.p(b,"blur",g);a.a.p(b,
|
||||
"focusout",g)},update:function(b,c){var d=!!a.a.c(c());b.__ko_hasfocusUpdating||b.__ko_hasfocusLastValue===d||(d?b.focus():b.blur(),!d&&b.__ko_hasfocusLastValue&&b.ownerDocument.body.focus(),a.l.w(a.a.Da,null,[b,d?"focusin":"focusout"]))}};a.h.ea.hasfocus=!0;a.d.hasFocus=a.d.hasfocus;a.h.ea.hasFocus=!0;a.d.html={init:function(){return{controlsDescendantBindings:!0}},update:function(b,c){a.a.Cb(b,c())}};K("if");K("ifnot",!1,!0);K("with",!0,!1,function(a,c){return a.createChildContext(c)});var L={};
|
||||
a.d.options={init:function(b){if("select"!==a.a.A(b))throw Error("options binding applies only to SELECT elements");for(;0<b.length;)b.remove(0);return{controlsDescendantBindings:!0}},update:function(b,c,d){function e(){return a.a.Ka(b.options,function(a){return a.selected})}function f(a,b,c){var d=typeof b;return"function"==d?b(a):"string"==d?a[b]:c}function g(c,e){if(A&&h)a.j.ha(b,a.a.c(d.get("value")),!0);else if(p.length){var f=0<=a.a.o(p,a.j.u(e[0]));a.a.sc(e[0],f);A&&!f&&a.l.w(a.a.Da,null,[b,
|
||||
"change"])}}var k=b.multiple,l=0!=b.length&&k?b.scrollTop:null,m=a.a.c(c()),h=d.get("valueAllowUnset")&&d.has("value"),r=d.get("optionsIncludeDestroyed");c={};var q,p=[];h||(k?p=a.a.fb(e(),a.j.u):0<=b.selectedIndex&&p.push(a.j.u(b.options[b.selectedIndex])));m&&("undefined"==typeof m.length&&(m=[m]),q=a.a.Ka(m,function(b){return r||b===n||null===b||!a.a.c(b._destroy)}),d.has("optionsCaption")&&(m=a.a.c(d.get("optionsCaption")),null!==m&&m!==n&&q.unshift(L)));var A=!1;c.beforeRemove=function(a){b.removeChild(a)};
|
||||
m=g;d.has("optionsAfterRender")&&"function"==typeof d.get("optionsAfterRender")&&(m=function(b,c){g(0,c);a.l.w(d.get("optionsAfterRender"),null,[c[0],b!==L?b:n])});a.a.Bb(b,q,function(c,e,g){g.length&&(p=!h&&g[0].selected?[a.j.u(g[0])]:[],A=!0);e=b.ownerDocument.createElement("option");c===L?(a.a.Za(e,d.get("optionsCaption")),a.j.ha(e,n)):(g=f(c,d.get("optionsValue"),c),a.j.ha(e,a.a.c(g)),c=f(c,d.get("optionsText"),g),a.a.Za(e,c));return[e]},c,m);a.l.w(function(){h?a.j.ha(b,a.a.c(d.get("value")),
|
||||
!0):(k?p.length&&e().length<p.length:p.length&&0<=b.selectedIndex?a.j.u(b.options[b.selectedIndex])!==p[0]:p.length||0<=b.selectedIndex)&&a.a.Da(b,"change")});a.a.Nc(b);l&&20<Math.abs(l-b.scrollTop)&&(b.scrollTop=l)}};a.d.options.xb=a.a.e.I();a.d.selectedOptions={after:["options","foreach"],init:function(b,c,d){a.a.p(b,"change",function(){var e=c(),f=[];a.a.q(b.getElementsByTagName("option"),function(b){b.selected&&f.push(a.j.u(b))});a.h.Ea(e,d,"selectedOptions",f)})},update:function(b,c){if("select"!=
|
||||
a.a.A(b))throw Error("values binding applies only to SELECT elements");var d=a.a.c(c()),e=b.scrollTop;d&&"number"==typeof d.length&&a.a.q(b.getElementsByTagName("option"),function(b){var c=0<=a.a.o(d,a.j.u(b));b.selected!=c&&a.a.sc(b,c)});b.scrollTop=e}};a.h.ea.selectedOptions=!0;a.d.style={update:function(b,c){var d=a.a.c(c()||{});a.a.D(d,function(c,d){d=a.a.c(d);if(null===d||d===n||!1===d)d="";b.style[c]=d})}};a.d.submit={init:function(b,c,d,e,f){if("function"!=typeof c())throw Error("The value for a submit binding must be a function");
|
||||
a.a.p(b,"submit",function(a){var d,e=c();try{d=e.call(f.$data,b)}finally{!0!==d&&(a.preventDefault?a.preventDefault():a.returnValue=!1)}})}};a.d.text={init:function(){return{controlsDescendantBindings:!0}},update:function(b,c){a.a.Za(b,c())}};a.f.Z.text=!0;(function(){if(x&&x.navigator)var b=function(a){if(a)return parseFloat(a[1])},c=x.opera&&x.opera.version&&parseInt(x.opera.version()),d=x.navigator.userAgent,e=b(d.match(/^(?:(?!chrome).)*version\/([^ ]*) safari/i)),f=b(d.match(/Firefox\/([^ ]*)/));
|
||||
if(10>a.a.C)var g=a.a.e.I(),k=a.a.e.I(),l=function(b){var c=this.activeElement;(c=c&&a.a.e.get(c,k))&&c(b)},m=function(b,c){var d=b.ownerDocument;a.a.e.get(d,g)||(a.a.e.set(d,g,!0),a.a.p(d,"selectionchange",l));a.a.e.set(b,k,c)};a.d.textInput={init:function(b,d,g){function l(c,d){a.a.p(b,c,d)}function k(){var c=a.a.c(d());if(null===c||c===n)c="";v!==n&&c===v?a.a.setTimeout(k,4):b.value!==c&&(u=c,b.value=c)}function y(){s||(v=b.value,s=a.a.setTimeout(t,4))}function t(){clearTimeout(s);v=s=n;var c=
|
||||
b.value;u!==c&&(u=c,a.h.Ea(d(),g,"textInput",c))}var u=b.value,s,v,x=9==a.a.C?y:t;10>a.a.C?(l("propertychange",function(a){"value"===a.propertyName&&x(a)}),8==a.a.C&&(l("keyup",t),l("keydown",t)),8<=a.a.C&&(m(b,x),l("dragend",y))):(l("input",t),5>e&&"textarea"===a.a.A(b)?(l("keydown",y),l("paste",y),l("cut",y)):11>c?l("keydown",y):4>f&&(l("DOMAutoComplete",t),l("dragdrop",t),l("drop",t)));l("change",t);a.m(k,null,{i:b})}};a.h.ea.textInput=!0;a.d.textinput={preprocess:function(a,b,c){c("textInput",
|
||||
a)}}})();a.d.uniqueName={init:function(b,c){if(c()){var d="ko_unique_"+ ++a.d.uniqueName.Ic;a.a.rc(b,d)}}};a.d.uniqueName.Ic=0;a.d.value={after:["options","foreach"],init:function(b,c,d){if("input"!=b.tagName.toLowerCase()||"checkbox"!=b.type&&"radio"!=b.type){var e=["change"],f=d.get("valueUpdate"),g=!1,k=null;f&&("string"==typeof f&&(f=[f]),a.a.ra(e,f),e=a.a.Tb(e));var l=function(){k=null;g=!1;var e=c(),f=a.j.u(b);a.h.Ea(e,d,"value",f)};!a.a.C||"input"!=b.tagName.toLowerCase()||"text"!=b.type||
|
||||
"off"==b.autocomplete||b.form&&"off"==b.form.autocomplete||-1!=a.a.o(e,"propertychange")||(a.a.p(b,"propertychange",function(){g=!0}),a.a.p(b,"focus",function(){g=!1}),a.a.p(b,"blur",function(){g&&l()}));a.a.q(e,function(c){var d=l;a.a.nd(c,"after")&&(d=function(){k=a.j.u(b);a.a.setTimeout(l,0)},c=c.substring(5));a.a.p(b,c,d)});var m=function(){var e=a.a.c(c()),f=a.j.u(b);if(null!==k&&e===k)a.a.setTimeout(m,0);else if(e!==f)if("select"===a.a.A(b)){var g=d.get("valueAllowUnset"),f=function(){a.j.ha(b,
|
||||
e,g)};f();g||e===a.j.u(b)?a.a.setTimeout(f,0):a.l.w(a.a.Da,null,[b,"change"])}else a.j.ha(b,e)};a.m(m,null,{i:b})}else a.Ja(b,{checkedValue:c})},update:function(){}};a.h.ea.value=!0;a.d.visible={update:function(b,c){var d=a.a.c(c()),e="none"!=b.style.display;d&&!e?b.style.display="":!d&&e&&(b.style.display="none")}};(function(b){a.d[b]={init:function(c,d,e,f,g){return a.d.event.init.call(this,c,function(){var a={};a[b]=d();return a},e,f,g)}}})("click");a.O=function(){};a.O.prototype.renderTemplateSource=
|
||||
function(){throw Error("Override renderTemplateSource");};a.O.prototype.createJavaScriptEvaluatorBlock=function(){throw Error("Override createJavaScriptEvaluatorBlock");};a.O.prototype.makeTemplateSource=function(b,c){if("string"==typeof b){c=c||u;var d=c.getElementById(b);if(!d)throw Error("Cannot find template with ID "+b);return new a.v.n(d)}if(1==b.nodeType||8==b.nodeType)return new a.v.qa(b);throw Error("Unknown template type: "+b);};a.O.prototype.renderTemplate=function(a,c,d,e){a=this.makeTemplateSource(a,
|
||||
e);return this.renderTemplateSource(a,c,d,e)};a.O.prototype.isTemplateRewritten=function(a,c){return!1===this.allowTemplateRewriting?!0:this.makeTemplateSource(a,c).data("isRewritten")};a.O.prototype.rewriteTemplate=function(a,c,d){a=this.makeTemplateSource(a,d);c=c(a.text());a.text(c);a.data("isRewritten",!0)};a.b("templateEngine",a.O);a.Gb=function(){function b(b,c,d,k){b=a.h.yb(b);for(var l=a.h.ta,m=0;m<b.length;m++){var h=b[m].key;if(l.hasOwnProperty(h)){var r=l[h];if("function"===typeof r){if(h=
|
||||
r(b[m].value))throw Error(h);}else if(!r)throw Error("This template engine does not support the '"+h+"' binding within its templates");}}d="ko.__tr_ambtns(function($context,$element){return(function(){return{ "+a.h.Ua(b,{valueAccessors:!0})+" } })()},'"+d.toLowerCase()+"')";return k.createJavaScriptEvaluatorBlock(d)+c}var c=/(<([a-z]+\d*)(?:\s+(?!data-bind\s*=\s*)[a-z0-9\-]+(?:=(?:\"[^\"]*\"|\'[^\']*\'|[^>]*))?)*\s+)data-bind\s*=\s*(["'])([\s\S]*?)\3/gi,d=/\x3c!--\s*ko\b\s*([\s\S]*?)\s*--\x3e/g;return{Oc:function(b,
|
||||
c,d){c.isTemplateRewritten(b,d)||c.rewriteTemplate(b,function(b){return a.Gb.dd(b,c)},d)},dd:function(a,f){return a.replace(c,function(a,c,d,e,h){return b(h,c,d,f)}).replace(d,function(a,c){return b(c,"\x3c!-- ko --\x3e","#comment",f)})},Ec:function(b,c){return a.M.wb(function(d,k){var l=d.nextSibling;l&&l.nodeName.toLowerCase()===c&&a.Ja(l,b,k)})}}}();a.b("__tr_ambtns",a.Gb.Ec);(function(){a.v={};a.v.n=function(b){if(this.n=b){var c=a.a.A(b);this.ab="script"===c?1:"textarea"===c?2:"template"==c&&
|
||||
b.content&&11===b.content.nodeType?3:4}};a.v.n.prototype.text=function(){var b=1===this.ab?"text":2===this.ab?"value":"innerHTML";if(0==arguments.length)return this.n[b];var c=arguments[0];"innerHTML"===b?a.a.Cb(this.n,c):this.n[b]=c};var b=a.a.e.I()+"_";a.v.n.prototype.data=function(c){if(1===arguments.length)return a.a.e.get(this.n,b+c);a.a.e.set(this.n,b+c,arguments[1])};var c=a.a.e.I();a.v.n.prototype.nodes=function(){var b=this.n;if(0==arguments.length)return(a.a.e.get(b,c)||{}).jb||(3===this.ab?
|
||||
b.content:4===this.ab?b:n);a.a.e.set(b,c,{jb:arguments[0]})};a.v.qa=function(a){this.n=a};a.v.qa.prototype=new a.v.n;a.v.qa.prototype.text=function(){if(0==arguments.length){var b=a.a.e.get(this.n,c)||{};b.Hb===n&&b.jb&&(b.Hb=b.jb.innerHTML);return b.Hb}a.a.e.set(this.n,c,{Hb:arguments[0]})};a.b("templateSources",a.v);a.b("templateSources.domElement",a.v.n);a.b("templateSources.anonymousTemplate",a.v.qa)})();(function(){function b(b,c,d){var e;for(c=a.f.nextSibling(c);b&&(e=b)!==c;)b=a.f.nextSibling(e),
|
||||
d(e,b)}function c(c,d){if(c.length){var e=c[0],f=c[c.length-1],g=e.parentNode,k=a.Q.instance,n=k.preprocessNode;if(n){b(e,f,function(a,b){var c=a.previousSibling,d=n.call(k,a);d&&(a===e&&(e=d[0]||b),a===f&&(f=d[d.length-1]||c))});c.length=0;if(!e)return;e===f?c.push(e):(c.push(e,f),a.a.za(c,g))}b(e,f,function(b){1!==b.nodeType&&8!==b.nodeType||a.Rb(d,b)});b(e,f,function(b){1!==b.nodeType&&8!==b.nodeType||a.M.yc(b,[d])});a.a.za(c,g)}}function d(a){return a.nodeType?a:0<a.length?a[0]:null}function e(b,
|
||||
e,f,k,q){q=q||{};var p=(b&&d(b)||f||{}).ownerDocument,n=q.templateEngine||g;a.Gb.Oc(f,n,p);f=n.renderTemplate(f,k,q,p);if("number"!=typeof f.length||0<f.length&&"number"!=typeof f[0].nodeType)throw Error("Template engine must return an array of DOM nodes");p=!1;switch(e){case "replaceChildren":a.f.da(b,f);p=!0;break;case "replaceNode":a.a.qc(b,f);p=!0;break;case "ignoreTargetNode":break;default:throw Error("Unknown renderMode: "+e);}p&&(c(f,k),q.afterRender&&a.l.w(q.afterRender,null,[f,k.$data]));
|
||||
return f}function f(b,c,d){return a.H(b)?b():"function"===typeof b?b(c,d):b}var g;a.Db=function(b){if(b!=n&&!(b instanceof a.O))throw Error("templateEngine must inherit from ko.templateEngine");g=b};a.Ab=function(b,c,h,k,q){h=h||{};if((h.templateEngine||g)==n)throw Error("Set a template engine before calling renderTemplate");q=q||"replaceChildren";if(k){var p=d(k);return a.B(function(){var g=c&&c instanceof a.U?c:new a.U(a.a.c(c)),n=f(b,g.$data,g),g=e(k,q,n,g,h);"replaceNode"==q&&(k=g,p=d(k))},null,
|
||||
{wa:function(){return!p||!a.a.nb(p)},i:p&&"replaceNode"==q?p.parentNode:p})}return a.M.wb(function(d){a.Ab(b,c,h,d,"replaceNode")})};a.kd=function(b,d,g,k,q){function p(a,b){c(b,s);g.afterRender&&g.afterRender(b,a);s=null}function u(a,c){s=q.createChildContext(a,g.as,function(a){a.$index=c});var d=f(b,a,s);return e(null,"ignoreTargetNode",d,s,g)}var s;return a.B(function(){var b=a.a.c(d)||[];"undefined"==typeof b.length&&(b=[b]);b=a.a.Ka(b,function(b){return g.includeDestroyed||b===n||null===b||!a.a.c(b._destroy)});
|
||||
a.l.w(a.a.Bb,null,[k,b,u,g,p])},null,{i:k})};var k=a.a.e.I();a.d.template={init:function(b,c){var d=a.a.c(c());if("string"==typeof d||d.name)a.f.xa(b);else{if("nodes"in d){if(d=d.nodes||[],a.H(d))throw Error('The "nodes" option must be a plain, non-observable array.');}else d=a.f.childNodes(b);d=a.a.jc(d);(new a.v.qa(b)).nodes(d)}return{controlsDescendantBindings:!0}},update:function(b,c,d,e,f){var g=c(),s;c=a.a.c(g);d=!0;e=null;"string"==typeof c?c={}:(g=c.name,"if"in c&&(d=a.a.c(c["if"])),d&&"ifnot"in
|
||||
c&&(d=!a.a.c(c.ifnot)),s=a.a.c(c.data));"foreach"in c?e=a.kd(g||b,d&&c.foreach||[],c,b,f):d?(f="data"in c?f.createChildContext(s,c.as):f,e=a.Ab(g||b,f,c,b)):a.f.xa(b);f=e;(s=a.a.e.get(b,k))&&"function"==typeof s.k&&s.k();a.a.e.set(b,k,f&&f.ba()?f:n)}};a.h.ta.template=function(b){b=a.h.yb(b);return 1==b.length&&b[0].unknown||a.h.ad(b,"name")?null:"This template engine does not support anonymous templates nested within its templates"};a.f.Z.template=!0})();a.b("setTemplateEngine",a.Db);a.b("renderTemplate",
|
||||
a.Ab);a.a.dc=function(a,c,d){if(a.length&&c.length){var e,f,g,k,l;for(e=f=0;(!d||e<d)&&(k=a[f]);++f){for(g=0;l=c[g];++g)if(k.value===l.value){k.moved=l.index;l.moved=k.index;c.splice(g,1);e=g=0;break}e+=g}}};a.a.ib=function(){function b(b,d,e,f,g){var k=Math.min,l=Math.max,m=[],h,n=b.length,q,p=d.length,s=p-n||1,u=n+p+1,t,v,x;for(h=0;h<=n;h++)for(v=t,m.push(t=[]),x=k(p,h+s),q=l(0,h-1);q<=x;q++)t[q]=q?h?b[h-1]===d[q-1]?v[q-1]:k(v[q]||u,t[q-1]||u)+1:q+1:h+1;k=[];l=[];s=[];h=n;for(q=p;h||q;)p=m[h][q]-
|
||||
1,q&&p===m[h][q-1]?l.push(k[k.length]={status:e,value:d[--q],index:q}):h&&p===m[h-1][q]?s.push(k[k.length]={status:f,value:b[--h],index:h}):(--q,--h,g.sparse||k.push({status:"retained",value:d[q]}));a.a.dc(s,l,!g.dontLimitMoves&&10*n);return k.reverse()}return function(a,d,e){e="boolean"===typeof e?{dontLimitMoves:e}:e||{};a=a||[];d=d||[];return a.length<d.length?b(a,d,"added","deleted",e):b(d,a,"deleted","added",e)}}();a.b("utils.compareArrays",a.a.ib);(function(){function b(b,c,d,k,l){var m=[],
|
||||
h=a.B(function(){var h=c(d,l,a.a.za(m,b))||[];0<m.length&&(a.a.qc(m,h),k&&a.l.w(k,null,[d,h,l]));m.length=0;a.a.ra(m,h)},null,{i:b,wa:function(){return!a.a.Qb(m)}});return{ca:m,B:h.ba()?h:n}}var c=a.a.e.I(),d=a.a.e.I();a.a.Bb=function(e,f,g,k,l){function m(b,c){w=q[c];v!==c&&(D[b]=w);w.qb(v++);a.a.za(w.ca,e);u.push(w);z.push(w)}function h(b,c){if(b)for(var d=0,e=c.length;d<e;d++)c[d]&&a.a.q(c[d].ca,function(a){b(a,d,c[d].ja)})}f=f||[];k=k||{};var r=a.a.e.get(e,c)===n,q=a.a.e.get(e,c)||[],p=a.a.fb(q,
|
||||
function(a){return a.ja}),s=a.a.ib(p,f,k.dontLimitMoves),u=[],t=0,v=0,x=[],z=[];f=[];for(var D=[],p=[],w,C=0,B,E;B=s[C];C++)switch(E=B.moved,B.status){case "deleted":E===n&&(w=q[t],w.B&&(w.B.k(),w.B=n),a.a.za(w.ca,e).length&&(k.beforeRemove&&(u.push(w),z.push(w),w.ja===d?w=null:f[C]=w),w&&x.push.apply(x,w.ca)));t++;break;case "retained":m(C,t++);break;case "added":E!==n?m(C,E):(w={ja:B.value,qb:a.N(v++)},u.push(w),z.push(w),r||(p[C]=w))}a.a.e.set(e,c,u);h(k.beforeMove,D);a.a.q(x,k.beforeRemove?a.$:
|
||||
a.removeNode);for(var C=0,r=a.f.firstChild(e),F;w=z[C];C++){w.ca||a.a.extend(w,b(e,g,w.ja,l,w.qb));for(t=0;s=w.ca[t];r=s.nextSibling,F=s,t++)s!==r&&a.f.gc(e,s,F);!w.Wc&&l&&(l(w.ja,w.ca,w.qb),w.Wc=!0)}h(k.beforeRemove,f);for(C=0;C<f.length;++C)f[C]&&(f[C].ja=d);h(k.afterMove,D);h(k.afterAdd,p)}})();a.b("utils.setDomNodeChildrenFromArrayMapping",a.a.Bb);a.W=function(){this.allowTemplateRewriting=!1};a.W.prototype=new a.O;a.W.prototype.renderTemplateSource=function(b,c,d,e){if(c=(9>a.a.C?0:b.nodes)?
|
||||
b.nodes():null)return a.a.V(c.cloneNode(!0).childNodes);b=b.text();return a.a.ma(b,e)};a.W.sb=new a.W;a.Db(a.W.sb);a.b("nativeTemplateEngine",a.W);(function(){a.vb=function(){var a=this.$c=function(){if(!v||!v.tmpl)return 0;try{if(0<=v.tmpl.tag.tmpl.open.toString().indexOf("__"))return 2}catch(a){}return 1}();this.renderTemplateSource=function(b,e,f,g){g=g||u;f=f||{};if(2>a)throw Error("Your version of jQuery.tmpl is too old. Please upgrade to jQuery.tmpl 1.0.0pre or later.");var k=b.data("precompiled");
|
||||
k||(k=b.text()||"",k=v.template(null,"{{ko_with $item.koBindingContext}}"+k+"{{/ko_with}}"),b.data("precompiled",k));b=[e.$data];e=v.extend({koBindingContext:e},f.templateOptions);e=v.tmpl(k,b,e);e.appendTo(g.createElement("div"));v.fragments={};return e};this.createJavaScriptEvaluatorBlock=function(a){return"{{ko_code ((function() { return "+a+" })()) }}"};this.addTemplate=function(a,b){u.write("<script type='text/html' id='"+a+"'>"+b+"\x3c/script>")};0<a&&(v.tmpl.tag.ko_code={open:"__.push($1 || '');"},
|
||||
v.tmpl.tag.ko_with={open:"with($1) {",close:"} "})};a.vb.prototype=new a.O;var b=new a.vb;0<b.$c&&a.Db(b);a.b("jqueryTmplTemplateEngine",a.vb)})()})})();})();
|
39
bower_components/knockout/package.json
vendored
Normal file
39
bower_components/knockout/package.json
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "knockout",
|
||||
"description": "Knockout makes it easier to create rich, responsive UIs with JavaScript",
|
||||
"homepage": "http://knockoutjs.com/",
|
||||
"version": "3.4.0",
|
||||
"license": "MIT",
|
||||
"author": "The Knockout.js team",
|
||||
"main": "build/output/knockout-latest.debug.js",
|
||||
"scripts": {
|
||||
"prepublish": "grunt",
|
||||
"test": "node spec/runner.node.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/knockout/knockout.git"
|
||||
},
|
||||
"bugs": "https://github.com/knockout/knockout/issues",
|
||||
"testling": {
|
||||
"preprocess": "build/build.sh",
|
||||
"html": "spec/runner.html?src=build/output/knockout-latest.js&testling=true",
|
||||
"browsers": [
|
||||
"ie/6..latest",
|
||||
"chrome/20..latest",
|
||||
"firefox/3..latest",
|
||||
"safari/5.0.5..latest",
|
||||
"opera/11.0..latest",
|
||||
"iphone/6..latest",
|
||||
"ipad/6..latest"
|
||||
]
|
||||
},
|
||||
"licenses": [
|
||||
{ "type": "MIT", "url": "http://www.opensource.org/licenses/mit-license.php" }
|
||||
],
|
||||
"devDependencies": {
|
||||
"grunt": "~0.4.1",
|
||||
"grunt-cli": "~0.1.0",
|
||||
"closure-compiler": "~0.2.1"
|
||||
}
|
||||
}
|
467
bower_components/knockout/src/binding/bindingAttributeSyntax.js
vendored
Normal file
467
bower_components/knockout/src/binding/bindingAttributeSyntax.js
vendored
Normal file
@ -0,0 +1,467 @@
|
||||
(function () {
|
||||
ko.bindingHandlers = {};
|
||||
|
||||
// The following element types will not be recursed into during binding.
|
||||
var bindingDoesNotRecurseIntoElementTypes = {
|
||||
// Don't want bindings that operate on text nodes to mutate <script> and <textarea> contents,
|
||||
// because it's unexpected and a potential XSS issue.
|
||||
// Also bindings should not operate on <template> elements since this breaks in Internet Explorer
|
||||
// and because such elements' contents are always intended to be bound in a different context
|
||||
// from where they appear in the document.
|
||||
'script': true,
|
||||
'textarea': true,
|
||||
'template': true
|
||||
};
|
||||
|
||||
// Use an overridable method for retrieving binding handlers so that a plugins may support dynamically created handlers
|
||||
ko['getBindingHandler'] = function(bindingKey) {
|
||||
return ko.bindingHandlers[bindingKey];
|
||||
};
|
||||
|
||||
// The ko.bindingContext constructor is only called directly to create the root context. For child
|
||||
// contexts, use bindingContext.createChildContext or bindingContext.extend.
|
||||
ko.bindingContext = function(dataItemOrAccessor, parentContext, dataItemAlias, extendCallback) {
|
||||
|
||||
// The binding context object includes static properties for the current, parent, and root view models.
|
||||
// If a view model is actually stored in an observable, the corresponding binding context object, and
|
||||
// any child contexts, must be updated when the view model is changed.
|
||||
function updateContext() {
|
||||
// Most of the time, the context will directly get a view model object, but if a function is given,
|
||||
// we call the function to retrieve the view model. If the function accesses any observables or returns
|
||||
// an observable, the dependency is tracked, and those observables can later cause the binding
|
||||
// context to be updated.
|
||||
var dataItemOrObservable = isFunc ? dataItemOrAccessor() : dataItemOrAccessor,
|
||||
dataItem = ko.utils.unwrapObservable(dataItemOrObservable);
|
||||
|
||||
if (parentContext) {
|
||||
// When a "parent" context is given, register a dependency on the parent context. Thus whenever the
|
||||
// parent context is updated, this context will also be updated.
|
||||
if (parentContext._subscribable)
|
||||
parentContext._subscribable();
|
||||
|
||||
// Copy $root and any custom properties from the parent context
|
||||
ko.utils.extend(self, parentContext);
|
||||
|
||||
// Because the above copy overwrites our own properties, we need to reset them.
|
||||
// During the first execution, "subscribable" isn't set, so don't bother doing the update then.
|
||||
if (subscribable) {
|
||||
self._subscribable = subscribable;
|
||||
}
|
||||
} else {
|
||||
self['$parents'] = [];
|
||||
self['$root'] = dataItem;
|
||||
|
||||
// Export 'ko' in the binding context so it will be available in bindings and templates
|
||||
// even if 'ko' isn't exported as a global, such as when using an AMD loader.
|
||||
// See https://github.com/SteveSanderson/knockout/issues/490
|
||||
self['ko'] = ko;
|
||||
}
|
||||
self['$rawData'] = dataItemOrObservable;
|
||||
self['$data'] = dataItem;
|
||||
if (dataItemAlias)
|
||||
self[dataItemAlias] = dataItem;
|
||||
|
||||
// The extendCallback function is provided when creating a child context or extending a context.
|
||||
// It handles the specific actions needed to finish setting up the binding context. Actions in this
|
||||
// function could also add dependencies to this binding context.
|
||||
if (extendCallback)
|
||||
extendCallback(self, parentContext, dataItem);
|
||||
|
||||
return self['$data'];
|
||||
}
|
||||
function disposeWhen() {
|
||||
return nodes && !ko.utils.anyDomNodeIsAttachedToDocument(nodes);
|
||||
}
|
||||
|
||||
var self = this,
|
||||
isFunc = typeof(dataItemOrAccessor) == "function" && !ko.isObservable(dataItemOrAccessor),
|
||||
nodes,
|
||||
subscribable = ko.dependentObservable(updateContext, null, { disposeWhen: disposeWhen, disposeWhenNodeIsRemoved: true });
|
||||
|
||||
// At this point, the binding context has been initialized, and the "subscribable" computed observable is
|
||||
// subscribed to any observables that were accessed in the process. If there is nothing to track, the
|
||||
// computed will be inactive, and we can safely throw it away. If it's active, the computed is stored in
|
||||
// the context object.
|
||||
if (subscribable.isActive()) {
|
||||
self._subscribable = subscribable;
|
||||
|
||||
// Always notify because even if the model ($data) hasn't changed, other context properties might have changed
|
||||
subscribable['equalityComparer'] = null;
|
||||
|
||||
// We need to be able to dispose of this computed observable when it's no longer needed. This would be
|
||||
// easy if we had a single node to watch, but binding contexts can be used by many different nodes, and
|
||||
// we cannot assume that those nodes have any relation to each other. So instead we track any node that
|
||||
// the context is attached to, and dispose the computed when all of those nodes have been cleaned.
|
||||
|
||||
// Add properties to *subscribable* instead of *self* because any properties added to *self* may be overwritten on updates
|
||||
nodes = [];
|
||||
subscribable._addNode = function(node) {
|
||||
nodes.push(node);
|
||||
ko.utils.domNodeDisposal.addDisposeCallback(node, function(node) {
|
||||
ko.utils.arrayRemoveItem(nodes, node);
|
||||
if (!nodes.length) {
|
||||
subscribable.dispose();
|
||||
self._subscribable = subscribable = undefined;
|
||||
}
|
||||
});
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// Extend the binding context hierarchy with a new view model object. If the parent context is watching
|
||||
// any observables, the new child context will automatically get a dependency on the parent context.
|
||||
// But this does not mean that the $data value of the child context will also get updated. If the child
|
||||
// view model also depends on the parent view model, you must provide a function that returns the correct
|
||||
// view model on each update.
|
||||
ko.bindingContext.prototype['createChildContext'] = function (dataItemOrAccessor, dataItemAlias, extendCallback) {
|
||||
return new ko.bindingContext(dataItemOrAccessor, this, dataItemAlias, function(self, parentContext) {
|
||||
// Extend the context hierarchy by setting the appropriate pointers
|
||||
self['$parentContext'] = parentContext;
|
||||
self['$parent'] = parentContext['$data'];
|
||||
self['$parents'] = (parentContext['$parents'] || []).slice(0);
|
||||
self['$parents'].unshift(self['$parent']);
|
||||
if (extendCallback)
|
||||
extendCallback(self);
|
||||
});
|
||||
};
|
||||
|
||||
// Extend the binding context with new custom properties. This doesn't change the context hierarchy.
|
||||
// Similarly to "child" contexts, provide a function here to make sure that the correct values are set
|
||||
// when an observable view model is updated.
|
||||
ko.bindingContext.prototype['extend'] = function(properties) {
|
||||
// If the parent context references an observable view model, "_subscribable" will always be the
|
||||
// latest view model object. If not, "_subscribable" isn't set, and we can use the static "$data" value.
|
||||
return new ko.bindingContext(this._subscribable || this['$data'], this, null, function(self, parentContext) {
|
||||
// This "child" context doesn't directly track a parent observable view model,
|
||||
// so we need to manually set the $rawData value to match the parent.
|
||||
self['$rawData'] = parentContext['$rawData'];
|
||||
ko.utils.extend(self, typeof(properties) == "function" ? properties() : properties);
|
||||
});
|
||||
};
|
||||
|
||||
// Returns the valueAccesor function for a binding value
|
||||
function makeValueAccessor(value) {
|
||||
return function() {
|
||||
return value;
|
||||
};
|
||||
}
|
||||
|
||||
// Returns the value of a valueAccessor function
|
||||
function evaluateValueAccessor(valueAccessor) {
|
||||
return valueAccessor();
|
||||
}
|
||||
|
||||
// Given a function that returns bindings, create and return a new object that contains
|
||||
// binding value-accessors functions. Each accessor function calls the original function
|
||||
// so that it always gets the latest value and all dependencies are captured. This is used
|
||||
// by ko.applyBindingsToNode and getBindingsAndMakeAccessors.
|
||||
function makeAccessorsFromFunction(callback) {
|
||||
return ko.utils.objectMap(ko.dependencyDetection.ignore(callback), function(value, key) {
|
||||
return function() {
|
||||
return callback()[key];
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
// Given a bindings function or object, create and return a new object that contains
|
||||
// binding value-accessors functions. This is used by ko.applyBindingsToNode.
|
||||
function makeBindingAccessors(bindings, context, node) {
|
||||
if (typeof bindings === 'function') {
|
||||
return makeAccessorsFromFunction(bindings.bind(null, context, node));
|
||||
} else {
|
||||
return ko.utils.objectMap(bindings, makeValueAccessor);
|
||||
}
|
||||
}
|
||||
|
||||
// This function is used if the binding provider doesn't include a getBindingAccessors function.
|
||||
// It must be called with 'this' set to the provider instance.
|
||||
function getBindingsAndMakeAccessors(node, context) {
|
||||
return makeAccessorsFromFunction(this['getBindings'].bind(this, node, context));
|
||||
}
|
||||
|
||||
function validateThatBindingIsAllowedForVirtualElements(bindingName) {
|
||||
var validator = ko.virtualElements.allowedBindings[bindingName];
|
||||
if (!validator)
|
||||
throw new Error("The binding '" + bindingName + "' cannot be used with virtual elements")
|
||||
}
|
||||
|
||||
function applyBindingsToDescendantsInternal (bindingContext, elementOrVirtualElement, bindingContextsMayDifferFromDomParentElement) {
|
||||
var currentChild,
|
||||
nextInQueue = ko.virtualElements.firstChild(elementOrVirtualElement),
|
||||
provider = ko.bindingProvider['instance'],
|
||||
preprocessNode = provider['preprocessNode'];
|
||||
|
||||
// Preprocessing allows a binding provider to mutate a node before bindings are applied to it. For example it's
|
||||
// possible to insert new siblings after it, and/or replace the node with a different one. This can be used to
|
||||
// implement custom binding syntaxes, such as {{ value }} for string interpolation, or custom element types that
|
||||
// trigger insertion of <template> contents at that point in the document.
|
||||
if (preprocessNode) {
|
||||
while (currentChild = nextInQueue) {
|
||||
nextInQueue = ko.virtualElements.nextSibling(currentChild);
|
||||
preprocessNode.call(provider, currentChild);
|
||||
}
|
||||
// Reset nextInQueue for the next loop
|
||||
nextInQueue = ko.virtualElements.firstChild(elementOrVirtualElement);
|
||||
}
|
||||
|
||||
while (currentChild = nextInQueue) {
|
||||
// Keep a record of the next child *before* applying bindings, in case the binding removes the current child from its position
|
||||
nextInQueue = ko.virtualElements.nextSibling(currentChild);
|
||||
applyBindingsToNodeAndDescendantsInternal(bindingContext, currentChild, bindingContextsMayDifferFromDomParentElement);
|
||||
}
|
||||
}
|
||||
|
||||
function applyBindingsToNodeAndDescendantsInternal (bindingContext, nodeVerified, bindingContextMayDifferFromDomParentElement) {
|
||||
var shouldBindDescendants = true;
|
||||
|
||||
// Perf optimisation: Apply bindings only if...
|
||||
// (1) We need to store the binding context on this node (because it may differ from the DOM parent node's binding context)
|
||||
// Note that we can't store binding contexts on non-elements (e.g., text nodes), as IE doesn't allow expando properties for those
|
||||
// (2) It might have bindings (e.g., it has a data-bind attribute, or it's a marker for a containerless template)
|
||||
var isElement = (nodeVerified.nodeType === 1);
|
||||
if (isElement) // Workaround IE <= 8 HTML parsing weirdness
|
||||
ko.virtualElements.normaliseVirtualElementDomStructure(nodeVerified);
|
||||
|
||||
var shouldApplyBindings = (isElement && bindingContextMayDifferFromDomParentElement) // Case (1)
|
||||
|| ko.bindingProvider['instance']['nodeHasBindings'](nodeVerified); // Case (2)
|
||||
if (shouldApplyBindings)
|
||||
shouldBindDescendants = applyBindingsToNodeInternal(nodeVerified, null, bindingContext, bindingContextMayDifferFromDomParentElement)['shouldBindDescendants'];
|
||||
|
||||
if (shouldBindDescendants && !bindingDoesNotRecurseIntoElementTypes[ko.utils.tagNameLower(nodeVerified)]) {
|
||||
// We're recursing automatically into (real or virtual) child nodes without changing binding contexts. So,
|
||||
// * For children of a *real* element, the binding context is certainly the same as on their DOM .parentNode,
|
||||
// hence bindingContextsMayDifferFromDomParentElement is false
|
||||
// * For children of a *virtual* element, we can't be sure. Evaluating .parentNode on those children may
|
||||
// skip over any number of intermediate virtual elements, any of which might define a custom binding context,
|
||||
// hence bindingContextsMayDifferFromDomParentElement is true
|
||||
applyBindingsToDescendantsInternal(bindingContext, nodeVerified, /* bindingContextsMayDifferFromDomParentElement: */ !isElement);
|
||||
}
|
||||
}
|
||||
|
||||
var boundElementDomDataKey = ko.utils.domData.nextKey();
|
||||
|
||||
|
||||
function topologicalSortBindings(bindings) {
|
||||
// Depth-first sort
|
||||
var result = [], // The list of key/handler pairs that we will return
|
||||
bindingsConsidered = {}, // A temporary record of which bindings are already in 'result'
|
||||
cyclicDependencyStack = []; // Keeps track of a depth-search so that, if there's a cycle, we know which bindings caused it
|
||||
ko.utils.objectForEach(bindings, function pushBinding(bindingKey) {
|
||||
if (!bindingsConsidered[bindingKey]) {
|
||||
var binding = ko['getBindingHandler'](bindingKey);
|
||||
if (binding) {
|
||||
// First add dependencies (if any) of the current binding
|
||||
if (binding['after']) {
|
||||
cyclicDependencyStack.push(bindingKey);
|
||||
ko.utils.arrayForEach(binding['after'], function(bindingDependencyKey) {
|
||||
if (bindings[bindingDependencyKey]) {
|
||||
if (ko.utils.arrayIndexOf(cyclicDependencyStack, bindingDependencyKey) !== -1) {
|
||||
throw Error("Cannot combine the following bindings, because they have a cyclic dependency: " + cyclicDependencyStack.join(", "));
|
||||
} else {
|
||||
pushBinding(bindingDependencyKey);
|
||||
}
|
||||
}
|
||||
});
|
||||
cyclicDependencyStack.length--;
|
||||
}
|
||||
// Next add the current binding
|
||||
result.push({ key: bindingKey, handler: binding });
|
||||
}
|
||||
bindingsConsidered[bindingKey] = true;
|
||||
}
|
||||
});
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
function applyBindingsToNodeInternal(node, sourceBindings, bindingContext, bindingContextMayDifferFromDomParentElement) {
|
||||
// Prevent multiple applyBindings calls for the same node, except when a binding value is specified
|
||||
var alreadyBound = ko.utils.domData.get(node, boundElementDomDataKey);
|
||||
if (!sourceBindings) {
|
||||
if (alreadyBound) {
|
||||
throw Error("You cannot apply bindings multiple times to the same element.");
|
||||
}
|
||||
ko.utils.domData.set(node, boundElementDomDataKey, true);
|
||||
}
|
||||
|
||||
// Optimization: Don't store the binding context on this node if it's definitely the same as on node.parentNode, because
|
||||
// we can easily recover it just by scanning up the node's ancestors in the DOM
|
||||
// (note: here, parent node means "real DOM parent" not "virtual parent", as there's no O(1) way to find the virtual parent)
|
||||
if (!alreadyBound && bindingContextMayDifferFromDomParentElement)
|
||||
ko.storedBindingContextForNode(node, bindingContext);
|
||||
|
||||
// Use bindings if given, otherwise fall back on asking the bindings provider to give us some bindings
|
||||
var bindings;
|
||||
if (sourceBindings && typeof sourceBindings !== 'function') {
|
||||
bindings = sourceBindings;
|
||||
} else {
|
||||
var provider = ko.bindingProvider['instance'],
|
||||
getBindings = provider['getBindingAccessors'] || getBindingsAndMakeAccessors;
|
||||
|
||||
// Get the binding from the provider within a computed observable so that we can update the bindings whenever
|
||||
// the binding context is updated or if the binding provider accesses observables.
|
||||
var bindingsUpdater = ko.dependentObservable(
|
||||
function() {
|
||||
bindings = sourceBindings ? sourceBindings(bindingContext, node) : getBindings.call(provider, node, bindingContext);
|
||||
// Register a dependency on the binding context to support observable view models.
|
||||
if (bindings && bindingContext._subscribable)
|
||||
bindingContext._subscribable();
|
||||
return bindings;
|
||||
},
|
||||
null, { disposeWhenNodeIsRemoved: node }
|
||||
);
|
||||
|
||||
if (!bindings || !bindingsUpdater.isActive())
|
||||
bindingsUpdater = null;
|
||||
}
|
||||
|
||||
var bindingHandlerThatControlsDescendantBindings;
|
||||
if (bindings) {
|
||||
// Return the value accessor for a given binding. When bindings are static (won't be updated because of a binding
|
||||
// context update), just return the value accessor from the binding. Otherwise, return a function that always gets
|
||||
// the latest binding value and registers a dependency on the binding updater.
|
||||
var getValueAccessor = bindingsUpdater
|
||||
? function(bindingKey) {
|
||||
return function() {
|
||||
return evaluateValueAccessor(bindingsUpdater()[bindingKey]);
|
||||
};
|
||||
} : function(bindingKey) {
|
||||
return bindings[bindingKey];
|
||||
};
|
||||
|
||||
// Use of allBindings as a function is maintained for backwards compatibility, but its use is deprecated
|
||||
function allBindings() {
|
||||
return ko.utils.objectMap(bindingsUpdater ? bindingsUpdater() : bindings, evaluateValueAccessor);
|
||||
}
|
||||
// The following is the 3.x allBindings API
|
||||
allBindings['get'] = function(key) {
|
||||
return bindings[key] && evaluateValueAccessor(getValueAccessor(key));
|
||||
};
|
||||
allBindings['has'] = function(key) {
|
||||
return key in bindings;
|
||||
};
|
||||
|
||||
// First put the bindings into the right order
|
||||
var orderedBindings = topologicalSortBindings(bindings);
|
||||
|
||||
// Go through the sorted bindings, calling init and update for each
|
||||
ko.utils.arrayForEach(orderedBindings, function(bindingKeyAndHandler) {
|
||||
// Note that topologicalSortBindings has already filtered out any nonexistent binding handlers,
|
||||
// so bindingKeyAndHandler.handler will always be nonnull.
|
||||
var handlerInitFn = bindingKeyAndHandler.handler["init"],
|
||||
handlerUpdateFn = bindingKeyAndHandler.handler["update"],
|
||||
bindingKey = bindingKeyAndHandler.key;
|
||||
|
||||
if (node.nodeType === 8) {
|
||||
validateThatBindingIsAllowedForVirtualElements(bindingKey);
|
||||
}
|
||||
|
||||
try {
|
||||
// Run init, ignoring any dependencies
|
||||
if (typeof handlerInitFn == "function") {
|
||||
ko.dependencyDetection.ignore(function() {
|
||||
var initResult = handlerInitFn(node, getValueAccessor(bindingKey), allBindings, bindingContext['$data'], bindingContext);
|
||||
|
||||
// If this binding handler claims to control descendant bindings, make a note of this
|
||||
if (initResult && initResult['controlsDescendantBindings']) {
|
||||
if (bindingHandlerThatControlsDescendantBindings !== undefined)
|
||||
throw new Error("Multiple bindings (" + bindingHandlerThatControlsDescendantBindings + " and " + bindingKey + ") are trying to control descendant bindings of the same element. You cannot use these bindings together on the same element.");
|
||||
bindingHandlerThatControlsDescendantBindings = bindingKey;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Run update in its own computed wrapper
|
||||
if (typeof handlerUpdateFn == "function") {
|
||||
ko.dependentObservable(
|
||||
function() {
|
||||
handlerUpdateFn(node, getValueAccessor(bindingKey), allBindings, bindingContext['$data'], bindingContext);
|
||||
},
|
||||
null,
|
||||
{ disposeWhenNodeIsRemoved: node }
|
||||
);
|
||||
}
|
||||
} catch (ex) {
|
||||
ex.message = "Unable to process binding \"" + bindingKey + ": " + bindings[bindingKey] + "\"\nMessage: " + ex.message;
|
||||
throw ex;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
return {
|
||||
'shouldBindDescendants': bindingHandlerThatControlsDescendantBindings === undefined
|
||||
};
|
||||
};
|
||||
|
||||
var storedBindingContextDomDataKey = ko.utils.domData.nextKey();
|
||||
ko.storedBindingContextForNode = function (node, bindingContext) {
|
||||
if (arguments.length == 2) {
|
||||
ko.utils.domData.set(node, storedBindingContextDomDataKey, bindingContext);
|
||||
if (bindingContext._subscribable)
|
||||
bindingContext._subscribable._addNode(node);
|
||||
} else {
|
||||
return ko.utils.domData.get(node, storedBindingContextDomDataKey);
|
||||
}
|
||||
}
|
||||
|
||||
function getBindingContext(viewModelOrBindingContext) {
|
||||
return viewModelOrBindingContext && (viewModelOrBindingContext instanceof ko.bindingContext)
|
||||
? viewModelOrBindingContext
|
||||
: new ko.bindingContext(viewModelOrBindingContext);
|
||||
}
|
||||
|
||||
ko.applyBindingAccessorsToNode = function (node, bindings, viewModelOrBindingContext) {
|
||||
if (node.nodeType === 1) // If it's an element, workaround IE <= 8 HTML parsing weirdness
|
||||
ko.virtualElements.normaliseVirtualElementDomStructure(node);
|
||||
return applyBindingsToNodeInternal(node, bindings, getBindingContext(viewModelOrBindingContext), true);
|
||||
};
|
||||
|
||||
ko.applyBindingsToNode = function (node, bindings, viewModelOrBindingContext) {
|
||||
var context = getBindingContext(viewModelOrBindingContext);
|
||||
return ko.applyBindingAccessorsToNode(node, makeBindingAccessors(bindings, context, node), context);
|
||||
};
|
||||
|
||||
ko.applyBindingsToDescendants = function(viewModelOrBindingContext, rootNode) {
|
||||
if (rootNode.nodeType === 1 || rootNode.nodeType === 8)
|
||||
applyBindingsToDescendantsInternal(getBindingContext(viewModelOrBindingContext), rootNode, true);
|
||||
};
|
||||
|
||||
ko.applyBindings = function (viewModelOrBindingContext, rootNode) {
|
||||
// If jQuery is loaded after Knockout, we won't initially have access to it. So save it here.
|
||||
if (!jQueryInstance && window['jQuery']) {
|
||||
jQueryInstance = window['jQuery'];
|
||||
}
|
||||
|
||||
if (rootNode && (rootNode.nodeType !== 1) && (rootNode.nodeType !== 8))
|
||||
throw new Error("ko.applyBindings: first parameter should be your view model; second parameter should be a DOM node");
|
||||
rootNode = rootNode || window.document.body; // Make "rootNode" parameter optional
|
||||
|
||||
applyBindingsToNodeAndDescendantsInternal(getBindingContext(viewModelOrBindingContext), rootNode, true);
|
||||
};
|
||||
|
||||
// Retrieving binding context from arbitrary nodes
|
||||
ko.contextFor = function(node) {
|
||||
// We can only do something meaningful for elements and comment nodes (in particular, not text nodes, as IE can't store domdata for them)
|
||||
switch (node.nodeType) {
|
||||
case 1:
|
||||
case 8:
|
||||
var context = ko.storedBindingContextForNode(node);
|
||||
if (context) return context;
|
||||
if (node.parentNode) return ko.contextFor(node.parentNode);
|
||||
break;
|
||||
}
|
||||
return undefined;
|
||||
};
|
||||
ko.dataFor = function(node) {
|
||||
var context = ko.contextFor(node);
|
||||
return context ? context['$data'] : undefined;
|
||||
};
|
||||
|
||||
ko.exportSymbol('bindingHandlers', ko.bindingHandlers);
|
||||
ko.exportSymbol('applyBindings', ko.applyBindings);
|
||||
ko.exportSymbol('applyBindingsToDescendants', ko.applyBindingsToDescendants);
|
||||
ko.exportSymbol('applyBindingAccessorsToNode', ko.applyBindingAccessorsToNode);
|
||||
ko.exportSymbol('applyBindingsToNode', ko.applyBindingsToNode);
|
||||
ko.exportSymbol('contextFor', ko.contextFor);
|
||||
ko.exportSymbol('dataFor', ko.dataFor);
|
||||
})();
|
73
bower_components/knockout/src/binding/bindingProvider.js
vendored
Normal file
73
bower_components/knockout/src/binding/bindingProvider.js
vendored
Normal file
@ -0,0 +1,73 @@
|
||||
(function() {
|
||||
var defaultBindingAttributeName = "data-bind";
|
||||
|
||||
ko.bindingProvider = function() {
|
||||
this.bindingCache = {};
|
||||
};
|
||||
|
||||
ko.utils.extend(ko.bindingProvider.prototype, {
|
||||
'nodeHasBindings': function(node) {
|
||||
switch (node.nodeType) {
|
||||
case 1: // Element
|
||||
return node.getAttribute(defaultBindingAttributeName) != null
|
||||
|| ko.components['getComponentNameForNode'](node);
|
||||
case 8: // Comment node
|
||||
return ko.virtualElements.hasBindingValue(node);
|
||||
default: return false;
|
||||
}
|
||||
},
|
||||
|
||||
'getBindings': function(node, bindingContext) {
|
||||
var bindingsString = this['getBindingsString'](node, bindingContext),
|
||||
parsedBindings = bindingsString ? this['parseBindingsString'](bindingsString, bindingContext, node) : null;
|
||||
return ko.components.addBindingsForCustomElement(parsedBindings, node, bindingContext, /* valueAccessors */ false);
|
||||
},
|
||||
|
||||
'getBindingAccessors': function(node, bindingContext) {
|
||||
var bindingsString = this['getBindingsString'](node, bindingContext),
|
||||
parsedBindings = bindingsString ? this['parseBindingsString'](bindingsString, bindingContext, node, { 'valueAccessors': true }) : null;
|
||||
return ko.components.addBindingsForCustomElement(parsedBindings, node, bindingContext, /* valueAccessors */ true);
|
||||
},
|
||||
|
||||
// The following function is only used internally by this default provider.
|
||||
// It's not part of the interface definition for a general binding provider.
|
||||
'getBindingsString': function(node, bindingContext) {
|
||||
switch (node.nodeType) {
|
||||
case 1: return node.getAttribute(defaultBindingAttributeName); // Element
|
||||
case 8: return ko.virtualElements.virtualNodeBindingValue(node); // Comment node
|
||||
default: return null;
|
||||
}
|
||||
},
|
||||
|
||||
// The following function is only used internally by this default provider.
|
||||
// It's not part of the interface definition for a general binding provider.
|
||||
'parseBindingsString': function(bindingsString, bindingContext, node, options) {
|
||||
try {
|
||||
var bindingFunction = createBindingsStringEvaluatorViaCache(bindingsString, this.bindingCache, options);
|
||||
return bindingFunction(bindingContext, node);
|
||||
} catch (ex) {
|
||||
ex.message = "Unable to parse bindings.\nBindings value: " + bindingsString + "\nMessage: " + ex.message;
|
||||
throw ex;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
ko.bindingProvider['instance'] = new ko.bindingProvider();
|
||||
|
||||
function createBindingsStringEvaluatorViaCache(bindingsString, cache, options) {
|
||||
var cacheKey = bindingsString + (options && options['valueAccessors'] || '');
|
||||
return cache[cacheKey]
|
||||
|| (cache[cacheKey] = createBindingsStringEvaluator(bindingsString, options));
|
||||
}
|
||||
|
||||
function createBindingsStringEvaluator(bindingsString, options) {
|
||||
// Build the source for a function that evaluates "expression"
|
||||
// For each scope variable, add an extra level of "with" nesting
|
||||
// Example result: with(sc1) { with(sc0) { return (expression) } }
|
||||
var rewrittenBindings = ko.expressionRewriting.preProcessBindings(bindingsString, options),
|
||||
functionBody = "with($context){with($data||{}){return{" + rewrittenBindings + "}}}";
|
||||
return new Function("$context", "$element", functionBody);
|
||||
}
|
||||
})();
|
||||
|
||||
ko.exportSymbol('bindingProvider', ko.bindingProvider);
|
38
bower_components/knockout/src/binding/defaultBindings/attr.js
vendored
Normal file
38
bower_components/knockout/src/binding/defaultBindings/attr.js
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
var attrHtmlToJavascriptMap = { 'class': 'className', 'for': 'htmlFor' };
|
||||
ko.bindingHandlers['attr'] = {
|
||||
'update': function(element, valueAccessor, allBindings) {
|
||||
var value = ko.utils.unwrapObservable(valueAccessor()) || {};
|
||||
ko.utils.objectForEach(value, function(attrName, attrValue) {
|
||||
attrValue = ko.utils.unwrapObservable(attrValue);
|
||||
|
||||
// To cover cases like "attr: { checked:someProp }", we want to remove the attribute entirely
|
||||
// when someProp is a "no value"-like value (strictly null, false, or undefined)
|
||||
// (because the absence of the "checked" attr is how to mark an element as not checked, etc.)
|
||||
var toRemove = (attrValue === false) || (attrValue === null) || (attrValue === undefined);
|
||||
if (toRemove)
|
||||
element.removeAttribute(attrName);
|
||||
|
||||
// In IE <= 7 and IE8 Quirks Mode, you have to use the Javascript property name instead of the
|
||||
// HTML attribute name for certain attributes. IE8 Standards Mode supports the correct behavior,
|
||||
// but instead of figuring out the mode, we'll just set the attribute through the Javascript
|
||||
// property for IE <= 8.
|
||||
if (ko.utils.ieVersion <= 8 && attrName in attrHtmlToJavascriptMap) {
|
||||
attrName = attrHtmlToJavascriptMap[attrName];
|
||||
if (toRemove)
|
||||
element.removeAttribute(attrName);
|
||||
else
|
||||
element[attrName] = attrValue;
|
||||
} else if (!toRemove) {
|
||||
element.setAttribute(attrName, attrValue.toString());
|
||||
}
|
||||
|
||||
// Treat "name" specially - although you can think of it as an attribute, it also needs
|
||||
// special handling on older versions of IE (https://github.com/SteveSanderson/knockout/pull/333)
|
||||
// Deliberately being case-sensitive here because XHTML would regard "Name" as a different thing
|
||||
// entirely, and there's no strong reason to allow for such casing in HTML.
|
||||
if (attrName === "name") {
|
||||
ko.utils.setElementName(element, toRemove ? "" : attrValue.toString());
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
115
bower_components/knockout/src/binding/defaultBindings/checked.js
vendored
Normal file
115
bower_components/knockout/src/binding/defaultBindings/checked.js
vendored
Normal file
@ -0,0 +1,115 @@
|
||||
(function() {
|
||||
|
||||
ko.bindingHandlers['checked'] = {
|
||||
'after': ['value', 'attr'],
|
||||
'init': function (element, valueAccessor, allBindings) {
|
||||
var checkedValue = ko.pureComputed(function() {
|
||||
// Treat "value" like "checkedValue" when it is included with "checked" binding
|
||||
if (allBindings['has']('checkedValue')) {
|
||||
return ko.utils.unwrapObservable(allBindings.get('checkedValue'));
|
||||
} else if (allBindings['has']('value')) {
|
||||
return ko.utils.unwrapObservable(allBindings.get('value'));
|
||||
}
|
||||
|
||||
return element.value;
|
||||
});
|
||||
|
||||
function updateModel() {
|
||||
// This updates the model value from the view value.
|
||||
// It runs in response to DOM events (click) and changes in checkedValue.
|
||||
var isChecked = element.checked,
|
||||
elemValue = useCheckedValue ? checkedValue() : isChecked;
|
||||
|
||||
// When we're first setting up this computed, don't change any model state.
|
||||
if (ko.computedContext.isInitial()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// We can ignore unchecked radio buttons, because some other radio
|
||||
// button will be getting checked, and that one can take care of updating state.
|
||||
if (isRadio && !isChecked) {
|
||||
return;
|
||||
}
|
||||
|
||||
var modelValue = ko.dependencyDetection.ignore(valueAccessor);
|
||||
if (valueIsArray) {
|
||||
var writableValue = rawValueIsNonArrayObservable ? modelValue.peek() : modelValue;
|
||||
if (oldElemValue !== elemValue) {
|
||||
// When we're responding to the checkedValue changing, and the element is
|
||||
// currently checked, replace the old elem value with the new elem value
|
||||
// in the model array.
|
||||
if (isChecked) {
|
||||
ko.utils.addOrRemoveItem(writableValue, elemValue, true);
|
||||
ko.utils.addOrRemoveItem(writableValue, oldElemValue, false);
|
||||
}
|
||||
|
||||
oldElemValue = elemValue;
|
||||
} else {
|
||||
// When we're responding to the user having checked/unchecked a checkbox,
|
||||
// add/remove the element value to the model array.
|
||||
ko.utils.addOrRemoveItem(writableValue, elemValue, isChecked);
|
||||
}
|
||||
if (rawValueIsNonArrayObservable && ko.isWriteableObservable(modelValue)) {
|
||||
modelValue(writableValue);
|
||||
}
|
||||
} else {
|
||||
ko.expressionRewriting.writeValueToProperty(modelValue, allBindings, 'checked', elemValue, true);
|
||||
}
|
||||
};
|
||||
|
||||
function updateView() {
|
||||
// This updates the view value from the model value.
|
||||
// It runs in response to changes in the bound (checked) value.
|
||||
var modelValue = ko.utils.unwrapObservable(valueAccessor());
|
||||
|
||||
if (valueIsArray) {
|
||||
// When a checkbox is bound to an array, being checked represents its value being present in that array
|
||||
element.checked = ko.utils.arrayIndexOf(modelValue, checkedValue()) >= 0;
|
||||
} else if (isCheckbox) {
|
||||
// When a checkbox is bound to any other value (not an array), being checked represents the value being trueish
|
||||
element.checked = modelValue;
|
||||
} else {
|
||||
// For radio buttons, being checked means that the radio button's value corresponds to the model value
|
||||
element.checked = (checkedValue() === modelValue);
|
||||
}
|
||||
};
|
||||
|
||||
var isCheckbox = element.type == "checkbox",
|
||||
isRadio = element.type == "radio";
|
||||
|
||||
// Only bind to check boxes and radio buttons
|
||||
if (!isCheckbox && !isRadio) {
|
||||
return;
|
||||
}
|
||||
|
||||
var rawValue = valueAccessor(),
|
||||
valueIsArray = isCheckbox && (ko.utils.unwrapObservable(rawValue) instanceof Array),
|
||||
rawValueIsNonArrayObservable = !(valueIsArray && rawValue.push && rawValue.splice),
|
||||
oldElemValue = valueIsArray ? checkedValue() : undefined,
|
||||
useCheckedValue = isRadio || valueIsArray;
|
||||
|
||||
// IE 6 won't allow radio buttons to be selected unless they have a name
|
||||
if (isRadio && !element.name)
|
||||
ko.bindingHandlers['uniqueName']['init'](element, function() { return true });
|
||||
|
||||
// Set up two computeds to update the binding:
|
||||
|
||||
// The first responds to changes in the checkedValue value and to element clicks
|
||||
ko.computed(updateModel, null, { disposeWhenNodeIsRemoved: element });
|
||||
ko.utils.registerEventHandler(element, "click", updateModel);
|
||||
|
||||
// The second responds to changes in the model value (the one associated with the checked binding)
|
||||
ko.computed(updateView, null, { disposeWhenNodeIsRemoved: element });
|
||||
|
||||
rawValue = undefined;
|
||||
}
|
||||
};
|
||||
ko.expressionRewriting.twoWayBindings['checked'] = true;
|
||||
|
||||
ko.bindingHandlers['checkedValue'] = {
|
||||
'update': function (element, valueAccessor) {
|
||||
element.value = ko.utils.unwrapObservable(valueAccessor());
|
||||
}
|
||||
};
|
||||
|
||||
})();
|
2
bower_components/knockout/src/binding/defaultBindings/click.js
vendored
Normal file
2
bower_components/knockout/src/binding/defaultBindings/click.js
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
// 'click' is just a shorthand for the usual full-length event:{click:handler}
|
||||
makeEventHandlerShortcut('click');
|
17
bower_components/knockout/src/binding/defaultBindings/css.js
vendored
Normal file
17
bower_components/knockout/src/binding/defaultBindings/css.js
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
var classesWrittenByBindingKey = '__ko__cssValue';
|
||||
ko.bindingHandlers['css'] = {
|
||||
'update': function (element, valueAccessor) {
|
||||
var value = ko.utils.unwrapObservable(valueAccessor());
|
||||
if (value !== null && typeof value == "object") {
|
||||
ko.utils.objectForEach(value, function(className, shouldHaveClass) {
|
||||
shouldHaveClass = ko.utils.unwrapObservable(shouldHaveClass);
|
||||
ko.utils.toggleDomNodeCssClass(element, className, shouldHaveClass);
|
||||
});
|
||||
} else {
|
||||
value = ko.utils.stringTrim(String(value || '')); // Make sure we don't try to store or set a non-string value
|
||||
ko.utils.toggleDomNodeCssClass(element, element[classesWrittenByBindingKey], false);
|
||||
element[classesWrittenByBindingKey] = value;
|
||||
ko.utils.toggleDomNodeCssClass(element, value, true);
|
||||
}
|
||||
}
|
||||
};
|
15
bower_components/knockout/src/binding/defaultBindings/enableDisable.js
vendored
Normal file
15
bower_components/knockout/src/binding/defaultBindings/enableDisable.js
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
ko.bindingHandlers['enable'] = {
|
||||
'update': function (element, valueAccessor) {
|
||||
var value = ko.utils.unwrapObservable(valueAccessor());
|
||||
if (value && element.disabled)
|
||||
element.removeAttribute("disabled");
|
||||
else if ((!value) && (!element.disabled))
|
||||
element.disabled = true;
|
||||
}
|
||||
};
|
||||
|
||||
ko.bindingHandlers['disable'] = {
|
||||
'update': function (element, valueAccessor) {
|
||||
ko.bindingHandlers['enable']['update'](element, function() { return !ko.utils.unwrapObservable(valueAccessor()) });
|
||||
}
|
||||
};
|
52
bower_components/knockout/src/binding/defaultBindings/event.js
vendored
Normal file
52
bower_components/knockout/src/binding/defaultBindings/event.js
vendored
Normal file
@ -0,0 +1,52 @@
|
||||
// For certain common events (currently just 'click'), allow a simplified data-binding syntax
|
||||
// e.g. click:handler instead of the usual full-length event:{click:handler}
|
||||
function makeEventHandlerShortcut(eventName) {
|
||||
ko.bindingHandlers[eventName] = {
|
||||
'init': function(element, valueAccessor, allBindings, viewModel, bindingContext) {
|
||||
var newValueAccessor = function () {
|
||||
var result = {};
|
||||
result[eventName] = valueAccessor();
|
||||
return result;
|
||||
};
|
||||
return ko.bindingHandlers['event']['init'].call(this, element, newValueAccessor, allBindings, viewModel, bindingContext);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ko.bindingHandlers['event'] = {
|
||||
'init' : function (element, valueAccessor, allBindings, viewModel, bindingContext) {
|
||||
var eventsToHandle = valueAccessor() || {};
|
||||
ko.utils.objectForEach(eventsToHandle, function(eventName) {
|
||||
if (typeof eventName == "string") {
|
||||
ko.utils.registerEventHandler(element, eventName, function (event) {
|
||||
var handlerReturnValue;
|
||||
var handlerFunction = valueAccessor()[eventName];
|
||||
if (!handlerFunction)
|
||||
return;
|
||||
|
||||
try {
|
||||
// Take all the event args, and prefix with the viewmodel
|
||||
var argsForHandler = ko.utils.makeArray(arguments);
|
||||
viewModel = bindingContext['$data'];
|
||||
argsForHandler.unshift(viewModel);
|
||||
handlerReturnValue = handlerFunction.apply(viewModel, argsForHandler);
|
||||
} finally {
|
||||
if (handlerReturnValue !== true) { // Normally we want to prevent default action. Developer can override this be explicitly returning true.
|
||||
if (event.preventDefault)
|
||||
event.preventDefault();
|
||||
else
|
||||
event.returnValue = false;
|
||||
}
|
||||
}
|
||||
|
||||
var bubble = allBindings.get(eventName + 'Bubble') !== false;
|
||||
if (!bubble) {
|
||||
event.cancelBubble = true;
|
||||
if (event.stopPropagation)
|
||||
event.stopPropagation();
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
38
bower_components/knockout/src/binding/defaultBindings/foreach.js
vendored
Normal file
38
bower_components/knockout/src/binding/defaultBindings/foreach.js
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
// "foreach: someExpression" is equivalent to "template: { foreach: someExpression }"
|
||||
// "foreach: { data: someExpression, afterAdd: myfn }" is equivalent to "template: { foreach: someExpression, afterAdd: myfn }"
|
||||
ko.bindingHandlers['foreach'] = {
|
||||
makeTemplateValueAccessor: function(valueAccessor) {
|
||||
return function() {
|
||||
var modelValue = valueAccessor(),
|
||||
unwrappedValue = ko.utils.peekObservable(modelValue); // Unwrap without setting a dependency here
|
||||
|
||||
// If unwrappedValue is the array, pass in the wrapped value on its own
|
||||
// The value will be unwrapped and tracked within the template binding
|
||||
// (See https://github.com/SteveSanderson/knockout/issues/523)
|
||||
if ((!unwrappedValue) || typeof unwrappedValue.length == "number")
|
||||
return { 'foreach': modelValue, 'templateEngine': ko.nativeTemplateEngine.instance };
|
||||
|
||||
// If unwrappedValue.data is the array, preserve all relevant options and unwrap again value so we get updates
|
||||
ko.utils.unwrapObservable(modelValue);
|
||||
return {
|
||||
'foreach': unwrappedValue['data'],
|
||||
'as': unwrappedValue['as'],
|
||||
'includeDestroyed': unwrappedValue['includeDestroyed'],
|
||||
'afterAdd': unwrappedValue['afterAdd'],
|
||||
'beforeRemove': unwrappedValue['beforeRemove'],
|
||||
'afterRender': unwrappedValue['afterRender'],
|
||||
'beforeMove': unwrappedValue['beforeMove'],
|
||||
'afterMove': unwrappedValue['afterMove'],
|
||||
'templateEngine': ko.nativeTemplateEngine.instance
|
||||
};
|
||||
};
|
||||
},
|
||||
'init': function(element, valueAccessor, allBindings, viewModel, bindingContext) {
|
||||
return ko.bindingHandlers['template']['init'](element, ko.bindingHandlers['foreach'].makeTemplateValueAccessor(valueAccessor));
|
||||
},
|
||||
'update': function(element, valueAccessor, allBindings, viewModel, bindingContext) {
|
||||
return ko.bindingHandlers['template']['update'](element, ko.bindingHandlers['foreach'].makeTemplateValueAccessor(valueAccessor), allBindings, viewModel, bindingContext);
|
||||
}
|
||||
};
|
||||
ko.expressionRewriting.bindingRewriteValidators['foreach'] = false; // Can't rewrite control flow bindings
|
||||
ko.virtualElements.allowedBindings['foreach'] = true;
|
60
bower_components/knockout/src/binding/defaultBindings/hasfocus.js
vendored
Normal file
60
bower_components/knockout/src/binding/defaultBindings/hasfocus.js
vendored
Normal file
@ -0,0 +1,60 @@
|
||||
var hasfocusUpdatingProperty = '__ko_hasfocusUpdating';
|
||||
var hasfocusLastValue = '__ko_hasfocusLastValue';
|
||||
ko.bindingHandlers['hasfocus'] = {
|
||||
'init': function(element, valueAccessor, allBindings) {
|
||||
var handleElementFocusChange = function(isFocused) {
|
||||
// Where possible, ignore which event was raised and determine focus state using activeElement,
|
||||
// as this avoids phantom focus/blur events raised when changing tabs in modern browsers.
|
||||
// However, not all KO-targeted browsers (Firefox 2) support activeElement. For those browsers,
|
||||
// prevent a loss of focus when changing tabs/windows by setting a flag that prevents hasfocus
|
||||
// from calling 'blur()' on the element when it loses focus.
|
||||
// Discussion at https://github.com/SteveSanderson/knockout/pull/352
|
||||
element[hasfocusUpdatingProperty] = true;
|
||||
var ownerDoc = element.ownerDocument;
|
||||
if ("activeElement" in ownerDoc) {
|
||||
var active;
|
||||
try {
|
||||
active = ownerDoc.activeElement;
|
||||
} catch(e) {
|
||||
// IE9 throws if you access activeElement during page load (see issue #703)
|
||||
active = ownerDoc.body;
|
||||
}
|
||||
isFocused = (active === element);
|
||||
}
|
||||
var modelValue = valueAccessor();
|
||||
ko.expressionRewriting.writeValueToProperty(modelValue, allBindings, 'hasfocus', isFocused, true);
|
||||
|
||||
//cache the latest value, so we can avoid unnecessarily calling focus/blur in the update function
|
||||
element[hasfocusLastValue] = isFocused;
|
||||
element[hasfocusUpdatingProperty] = false;
|
||||
};
|
||||
var handleElementFocusIn = handleElementFocusChange.bind(null, true);
|
||||
var handleElementFocusOut = handleElementFocusChange.bind(null, false);
|
||||
|
||||
ko.utils.registerEventHandler(element, "focus", handleElementFocusIn);
|
||||
ko.utils.registerEventHandler(element, "focusin", handleElementFocusIn); // For IE
|
||||
ko.utils.registerEventHandler(element, "blur", handleElementFocusOut);
|
||||
ko.utils.registerEventHandler(element, "focusout", handleElementFocusOut); // For IE
|
||||
},
|
||||
'update': function(element, valueAccessor) {
|
||||
var value = !!ko.utils.unwrapObservable(valueAccessor());
|
||||
|
||||
if (!element[hasfocusUpdatingProperty] && element[hasfocusLastValue] !== value) {
|
||||
value ? element.focus() : element.blur();
|
||||
|
||||
// In IE, the blur method doesn't always cause the element to lose focus (for example, if the window is not in focus).
|
||||
// Setting focus to the body element does seem to be reliable in IE, but should only be used if we know that the current
|
||||
// element was focused already.
|
||||
if (!value && element[hasfocusLastValue]) {
|
||||
element.ownerDocument.body.focus();
|
||||
}
|
||||
|
||||
// For IE, which doesn't reliably fire "focus" or "blur" events synchronously
|
||||
ko.dependencyDetection.ignore(ko.utils.triggerEvent, null, [element, value ? "focusin" : "focusout"]);
|
||||
}
|
||||
}
|
||||
};
|
||||
ko.expressionRewriting.twoWayBindings['hasfocus'] = true;
|
||||
|
||||
ko.bindingHandlers['hasFocus'] = ko.bindingHandlers['hasfocus']; // Make "hasFocus" an alias
|
||||
ko.expressionRewriting.twoWayBindings['hasFocus'] = true;
|
10
bower_components/knockout/src/binding/defaultBindings/html.js
vendored
Normal file
10
bower_components/knockout/src/binding/defaultBindings/html.js
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
ko.bindingHandlers['html'] = {
|
||||
'init': function() {
|
||||
// Prevent binding on the dynamically-injected HTML (as developers are unlikely to expect that, and it has security implications)
|
||||
return { 'controlsDescendantBindings': true };
|
||||
},
|
||||
'update': function (element, valueAccessor) {
|
||||
// setHtml will unwrap the value if needed
|
||||
ko.utils.setHtml(element, valueAccessor());
|
||||
}
|
||||
};
|
45
bower_components/knockout/src/binding/defaultBindings/ifIfnotWith.js
vendored
Normal file
45
bower_components/knockout/src/binding/defaultBindings/ifIfnotWith.js
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
// Makes a binding like with or if
|
||||
function makeWithIfBinding(bindingKey, isWith, isNot, makeContextCallback) {
|
||||
ko.bindingHandlers[bindingKey] = {
|
||||
'init': function(element, valueAccessor, allBindings, viewModel, bindingContext) {
|
||||
var didDisplayOnLastUpdate,
|
||||
savedNodes;
|
||||
ko.computed(function() {
|
||||
var dataValue = ko.utils.unwrapObservable(valueAccessor()),
|
||||
shouldDisplay = !isNot !== !dataValue, // equivalent to isNot ? !dataValue : !!dataValue
|
||||
isFirstRender = !savedNodes,
|
||||
needsRefresh = isFirstRender || isWith || (shouldDisplay !== didDisplayOnLastUpdate);
|
||||
|
||||
if (needsRefresh) {
|
||||
// Save a copy of the inner nodes on the initial update, but only if we have dependencies.
|
||||
if (isFirstRender && ko.computedContext.getDependenciesCount()) {
|
||||
savedNodes = ko.utils.cloneNodes(ko.virtualElements.childNodes(element), true /* shouldCleanNodes */);
|
||||
}
|
||||
|
||||
if (shouldDisplay) {
|
||||
if (!isFirstRender) {
|
||||
ko.virtualElements.setDomNodeChildren(element, ko.utils.cloneNodes(savedNodes));
|
||||
}
|
||||
ko.applyBindingsToDescendants(makeContextCallback ? makeContextCallback(bindingContext, dataValue) : bindingContext, element);
|
||||
} else {
|
||||
ko.virtualElements.emptyNode(element);
|
||||
}
|
||||
|
||||
didDisplayOnLastUpdate = shouldDisplay;
|
||||
}
|
||||
}, null, { disposeWhenNodeIsRemoved: element });
|
||||
return { 'controlsDescendantBindings': true };
|
||||
}
|
||||
};
|
||||
ko.expressionRewriting.bindingRewriteValidators[bindingKey] = false; // Can't rewrite control flow bindings
|
||||
ko.virtualElements.allowedBindings[bindingKey] = true;
|
||||
}
|
||||
|
||||
// Construct the actual binding handlers
|
||||
makeWithIfBinding('if');
|
||||
makeWithIfBinding('ifnot', false /* isWith */, true /* isNot */);
|
||||
makeWithIfBinding('with', true /* isWith */, false /* isNot */,
|
||||
function(bindingContext, dataValue) {
|
||||
return bindingContext['createChildContext'](dataValue);
|
||||
}
|
||||
);
|
166
bower_components/knockout/src/binding/defaultBindings/options.js
vendored
Normal file
166
bower_components/knockout/src/binding/defaultBindings/options.js
vendored
Normal file
@ -0,0 +1,166 @@
|
||||
var captionPlaceholder = {};
|
||||
ko.bindingHandlers['options'] = {
|
||||
'init': function(element) {
|
||||
if (ko.utils.tagNameLower(element) !== "select")
|
||||
throw new Error("options binding applies only to SELECT elements");
|
||||
|
||||
// Remove all existing <option>s.
|
||||
while (element.length > 0) {
|
||||
element.remove(0);
|
||||
}
|
||||
|
||||
// Ensures that the binding processor doesn't try to bind the options
|
||||
return { 'controlsDescendantBindings': true };
|
||||
},
|
||||
'update': function (element, valueAccessor, allBindings) {
|
||||
function selectedOptions() {
|
||||
return ko.utils.arrayFilter(element.options, function (node) { return node.selected; });
|
||||
}
|
||||
|
||||
var selectWasPreviouslyEmpty = element.length == 0,
|
||||
multiple = element.multiple,
|
||||
previousScrollTop = (!selectWasPreviouslyEmpty && multiple) ? element.scrollTop : null,
|
||||
unwrappedArray = ko.utils.unwrapObservable(valueAccessor()),
|
||||
valueAllowUnset = allBindings.get('valueAllowUnset') && allBindings['has']('value'),
|
||||
includeDestroyed = allBindings.get('optionsIncludeDestroyed'),
|
||||
arrayToDomNodeChildrenOptions = {},
|
||||
captionValue,
|
||||
filteredArray,
|
||||
previousSelectedValues = [];
|
||||
|
||||
if (!valueAllowUnset) {
|
||||
if (multiple) {
|
||||
previousSelectedValues = ko.utils.arrayMap(selectedOptions(), ko.selectExtensions.readValue);
|
||||
} else if (element.selectedIndex >= 0) {
|
||||
previousSelectedValues.push(ko.selectExtensions.readValue(element.options[element.selectedIndex]));
|
||||
}
|
||||
}
|
||||
|
||||
if (unwrappedArray) {
|
||||
if (typeof unwrappedArray.length == "undefined") // Coerce single value into array
|
||||
unwrappedArray = [unwrappedArray];
|
||||
|
||||
// Filter out any entries marked as destroyed
|
||||
filteredArray = ko.utils.arrayFilter(unwrappedArray, function(item) {
|
||||
return includeDestroyed || item === undefined || item === null || !ko.utils.unwrapObservable(item['_destroy']);
|
||||
});
|
||||
|
||||
// If caption is included, add it to the array
|
||||
if (allBindings['has']('optionsCaption')) {
|
||||
captionValue = ko.utils.unwrapObservable(allBindings.get('optionsCaption'));
|
||||
// If caption value is null or undefined, don't show a caption
|
||||
if (captionValue !== null && captionValue !== undefined) {
|
||||
filteredArray.unshift(captionPlaceholder);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// If a falsy value is provided (e.g. null), we'll simply empty the select element
|
||||
}
|
||||
|
||||
function applyToObject(object, predicate, defaultValue) {
|
||||
var predicateType = typeof predicate;
|
||||
if (predicateType == "function") // Given a function; run it against the data value
|
||||
return predicate(object);
|
||||
else if (predicateType == "string") // Given a string; treat it as a property name on the data value
|
||||
return object[predicate];
|
||||
else // Given no optionsText arg; use the data value itself
|
||||
return defaultValue;
|
||||
}
|
||||
|
||||
// The following functions can run at two different times:
|
||||
// The first is when the whole array is being updated directly from this binding handler.
|
||||
// The second is when an observable value for a specific array entry is updated.
|
||||
// oldOptions will be empty in the first case, but will be filled with the previously generated option in the second.
|
||||
var itemUpdate = false;
|
||||
function optionForArrayItem(arrayEntry, index, oldOptions) {
|
||||
if (oldOptions.length) {
|
||||
previousSelectedValues = !valueAllowUnset && oldOptions[0].selected ? [ ko.selectExtensions.readValue(oldOptions[0]) ] : [];
|
||||
itemUpdate = true;
|
||||
}
|
||||
var option = element.ownerDocument.createElement("option");
|
||||
if (arrayEntry === captionPlaceholder) {
|
||||
ko.utils.setTextContent(option, allBindings.get('optionsCaption'));
|
||||
ko.selectExtensions.writeValue(option, undefined);
|
||||
} else {
|
||||
// Apply a value to the option element
|
||||
var optionValue = applyToObject(arrayEntry, allBindings.get('optionsValue'), arrayEntry);
|
||||
ko.selectExtensions.writeValue(option, ko.utils.unwrapObservable(optionValue));
|
||||
|
||||
// Apply some text to the option element
|
||||
var optionText = applyToObject(arrayEntry, allBindings.get('optionsText'), optionValue);
|
||||
ko.utils.setTextContent(option, optionText);
|
||||
}
|
||||
return [option];
|
||||
}
|
||||
|
||||
// By using a beforeRemove callback, we delay the removal until after new items are added. This fixes a selection
|
||||
// problem in IE<=8 and Firefox. See https://github.com/knockout/knockout/issues/1208
|
||||
arrayToDomNodeChildrenOptions['beforeRemove'] =
|
||||
function (option) {
|
||||
element.removeChild(option);
|
||||
};
|
||||
|
||||
function setSelectionCallback(arrayEntry, newOptions) {
|
||||
if (itemUpdate && valueAllowUnset) {
|
||||
// The model value is authoritative, so make sure its value is the one selected
|
||||
// There is no need to use dependencyDetection.ignore since setDomNodeChildrenFromArrayMapping does so already.
|
||||
ko.selectExtensions.writeValue(element, ko.utils.unwrapObservable(allBindings.get('value')), true /* allowUnset */);
|
||||
} else if (previousSelectedValues.length) {
|
||||
// IE6 doesn't like us to assign selection to OPTION nodes before they're added to the document.
|
||||
// That's why we first added them without selection. Now it's time to set the selection.
|
||||
var isSelected = ko.utils.arrayIndexOf(previousSelectedValues, ko.selectExtensions.readValue(newOptions[0])) >= 0;
|
||||
ko.utils.setOptionNodeSelectionState(newOptions[0], isSelected);
|
||||
|
||||
// If this option was changed from being selected during a single-item update, notify the change
|
||||
if (itemUpdate && !isSelected) {
|
||||
ko.dependencyDetection.ignore(ko.utils.triggerEvent, null, [element, "change"]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var callback = setSelectionCallback;
|
||||
if (allBindings['has']('optionsAfterRender') && typeof allBindings.get('optionsAfterRender') == "function") {
|
||||
callback = function(arrayEntry, newOptions) {
|
||||
setSelectionCallback(arrayEntry, newOptions);
|
||||
ko.dependencyDetection.ignore(allBindings.get('optionsAfterRender'), null, [newOptions[0], arrayEntry !== captionPlaceholder ? arrayEntry : undefined]);
|
||||
}
|
||||
}
|
||||
|
||||
ko.utils.setDomNodeChildrenFromArrayMapping(element, filteredArray, optionForArrayItem, arrayToDomNodeChildrenOptions, callback);
|
||||
|
||||
ko.dependencyDetection.ignore(function () {
|
||||
if (valueAllowUnset) {
|
||||
// The model value is authoritative, so make sure its value is the one selected
|
||||
ko.selectExtensions.writeValue(element, ko.utils.unwrapObservable(allBindings.get('value')), true /* allowUnset */);
|
||||
} else {
|
||||
// Determine if the selection has changed as a result of updating the options list
|
||||
var selectionChanged;
|
||||
if (multiple) {
|
||||
// For a multiple-select box, compare the new selection count to the previous one
|
||||
// But if nothing was selected before, the selection can't have changed
|
||||
selectionChanged = previousSelectedValues.length && selectedOptions().length < previousSelectedValues.length;
|
||||
} else {
|
||||
// For a single-select box, compare the current value to the previous value
|
||||
// But if nothing was selected before or nothing is selected now, just look for a change in selection
|
||||
selectionChanged = (previousSelectedValues.length && element.selectedIndex >= 0)
|
||||
? (ko.selectExtensions.readValue(element.options[element.selectedIndex]) !== previousSelectedValues[0])
|
||||
: (previousSelectedValues.length || element.selectedIndex >= 0);
|
||||
}
|
||||
|
||||
// Ensure consistency between model value and selected option.
|
||||
// If the dropdown was changed so that selection is no longer the same,
|
||||
// notify the value or selectedOptions binding.
|
||||
if (selectionChanged) {
|
||||
ko.utils.triggerEvent(element, "change");
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Workaround for IE bug
|
||||
ko.utils.ensureSelectElementIsRenderedCorrectly(element);
|
||||
|
||||
if (previousScrollTop && Math.abs(previousScrollTop - element.scrollTop) > 20)
|
||||
element.scrollTop = previousScrollTop;
|
||||
}
|
||||
};
|
||||
ko.bindingHandlers['options'].optionValueDomDataKey = ko.utils.domData.nextKey();
|
32
bower_components/knockout/src/binding/defaultBindings/selectedOptions.js
vendored
Normal file
32
bower_components/knockout/src/binding/defaultBindings/selectedOptions.js
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
ko.bindingHandlers['selectedOptions'] = {
|
||||
'after': ['options', 'foreach'],
|
||||
'init': function (element, valueAccessor, allBindings) {
|
||||
ko.utils.registerEventHandler(element, "change", function () {
|
||||
var value = valueAccessor(), valueToWrite = [];
|
||||
ko.utils.arrayForEach(element.getElementsByTagName("option"), function(node) {
|
||||
if (node.selected)
|
||||
valueToWrite.push(ko.selectExtensions.readValue(node));
|
||||
});
|
||||
ko.expressionRewriting.writeValueToProperty(value, allBindings, 'selectedOptions', valueToWrite);
|
||||
});
|
||||
},
|
||||
'update': function (element, valueAccessor) {
|
||||
if (ko.utils.tagNameLower(element) != "select")
|
||||
throw new Error("values binding applies only to SELECT elements");
|
||||
|
||||
var newValue = ko.utils.unwrapObservable(valueAccessor()),
|
||||
previousScrollTop = element.scrollTop;
|
||||
|
||||
if (newValue && typeof newValue.length == "number") {
|
||||
ko.utils.arrayForEach(element.getElementsByTagName("option"), function(node) {
|
||||
var isSelected = ko.utils.arrayIndexOf(newValue, ko.selectExtensions.readValue(node)) >= 0;
|
||||
if (node.selected != isSelected) { // This check prevents flashing of the select element in IE
|
||||
ko.utils.setOptionNodeSelectionState(node, isSelected);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
element.scrollTop = previousScrollTop;
|
||||
}
|
||||
};
|
||||
ko.expressionRewriting.twoWayBindings['selectedOptions'] = true;
|
15
bower_components/knockout/src/binding/defaultBindings/style.js
vendored
Normal file
15
bower_components/knockout/src/binding/defaultBindings/style.js
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
ko.bindingHandlers['style'] = {
|
||||
'update': function (element, valueAccessor) {
|
||||
var value = ko.utils.unwrapObservable(valueAccessor() || {});
|
||||
ko.utils.objectForEach(value, function(styleName, styleValue) {
|
||||
styleValue = ko.utils.unwrapObservable(styleValue);
|
||||
|
||||
if (styleValue === null || styleValue === undefined || styleValue === false) {
|
||||
// Empty string removes the value, whereas null/undefined have no effect
|
||||
styleValue = "";
|
||||
}
|
||||
|
||||
element.style[styleName] = styleValue;
|
||||
});
|
||||
}
|
||||
};
|
19
bower_components/knockout/src/binding/defaultBindings/submit.js
vendored
Normal file
19
bower_components/knockout/src/binding/defaultBindings/submit.js
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
ko.bindingHandlers['submit'] = {
|
||||
'init': function (element, valueAccessor, allBindings, viewModel, bindingContext) {
|
||||
if (typeof valueAccessor() != "function")
|
||||
throw new Error("The value for a submit binding must be a function");
|
||||
ko.utils.registerEventHandler(element, "submit", function (event) {
|
||||
var handlerReturnValue;
|
||||
var value = valueAccessor();
|
||||
try { handlerReturnValue = value.call(bindingContext['$data'], element); }
|
||||
finally {
|
||||
if (handlerReturnValue !== true) { // Normally we want to prevent default action. Developer can override this be explicitly returning true.
|
||||
if (event.preventDefault)
|
||||
event.preventDefault();
|
||||
else
|
||||
event.returnValue = false;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
11
bower_components/knockout/src/binding/defaultBindings/text.js
vendored
Normal file
11
bower_components/knockout/src/binding/defaultBindings/text.js
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
ko.bindingHandlers['text'] = {
|
||||
'init': function() {
|
||||
// Prevent binding on the dynamically-injected text node (as developers are unlikely to expect that, and it has security implications).
|
||||
// It should also make things faster, as we no longer have to consider whether the text node might be bindable.
|
||||
return { 'controlsDescendantBindings': true };
|
||||
},
|
||||
'update': function (element, valueAccessor) {
|
||||
ko.utils.setTextContent(element, valueAccessor());
|
||||
}
|
||||
};
|
||||
ko.virtualElements.allowedBindings['text'] = true;
|
182
bower_components/knockout/src/binding/defaultBindings/textInput.js
vendored
Normal file
182
bower_components/knockout/src/binding/defaultBindings/textInput.js
vendored
Normal file
@ -0,0 +1,182 @@
|
||||
(function () {
|
||||
|
||||
if (window && window.navigator) {
|
||||
var parseVersion = function (matches) {
|
||||
if (matches) {
|
||||
return parseFloat(matches[1]);
|
||||
}
|
||||
};
|
||||
|
||||
// Detect various browser versions because some old versions don't fully support the 'input' event
|
||||
var operaVersion = window.opera && window.opera.version && parseInt(window.opera.version()),
|
||||
userAgent = window.navigator.userAgent,
|
||||
safariVersion = parseVersion(userAgent.match(/^(?:(?!chrome).)*version\/([^ ]*) safari/i)),
|
||||
firefoxVersion = parseVersion(userAgent.match(/Firefox\/([^ ]*)/));
|
||||
}
|
||||
|
||||
// IE 8 and 9 have bugs that prevent the normal events from firing when the value changes.
|
||||
// But it does fire the 'selectionchange' event on many of those, presumably because the
|
||||
// cursor is moving and that counts as the selection changing. The 'selectionchange' event is
|
||||
// fired at the document level only and doesn't directly indicate which element changed. We
|
||||
// set up just one event handler for the document and use 'activeElement' to determine which
|
||||
// element was changed.
|
||||
if (ko.utils.ieVersion < 10) {
|
||||
var selectionChangeRegisteredName = ko.utils.domData.nextKey(),
|
||||
selectionChangeHandlerName = ko.utils.domData.nextKey();
|
||||
var selectionChangeHandler = function(event) {
|
||||
var target = this.activeElement,
|
||||
handler = target && ko.utils.domData.get(target, selectionChangeHandlerName);
|
||||
if (handler) {
|
||||
handler(event);
|
||||
}
|
||||
};
|
||||
var registerForSelectionChangeEvent = function (element, handler) {
|
||||
var ownerDoc = element.ownerDocument;
|
||||
if (!ko.utils.domData.get(ownerDoc, selectionChangeRegisteredName)) {
|
||||
ko.utils.domData.set(ownerDoc, selectionChangeRegisteredName, true);
|
||||
ko.utils.registerEventHandler(ownerDoc, 'selectionchange', selectionChangeHandler);
|
||||
}
|
||||
ko.utils.domData.set(element, selectionChangeHandlerName, handler);
|
||||
};
|
||||
}
|
||||
|
||||
ko.bindingHandlers['textInput'] = {
|
||||
'init': function (element, valueAccessor, allBindings) {
|
||||
|
||||
var previousElementValue = element.value,
|
||||
timeoutHandle,
|
||||
elementValueBeforeEvent;
|
||||
|
||||
var updateModel = function (event) {
|
||||
clearTimeout(timeoutHandle);
|
||||
elementValueBeforeEvent = timeoutHandle = undefined;
|
||||
|
||||
var elementValue = element.value;
|
||||
if (previousElementValue !== elementValue) {
|
||||
// Provide a way for tests to know exactly which event was processed
|
||||
if (DEBUG && event) element['_ko_textInputProcessedEvent'] = event.type;
|
||||
previousElementValue = elementValue;
|
||||
ko.expressionRewriting.writeValueToProperty(valueAccessor(), allBindings, 'textInput', elementValue);
|
||||
}
|
||||
};
|
||||
|
||||
var deferUpdateModel = function (event) {
|
||||
if (!timeoutHandle) {
|
||||
// The elementValueBeforeEvent variable is set *only* during the brief gap between an
|
||||
// event firing and the updateModel function running. This allows us to ignore model
|
||||
// updates that are from the previous state of the element, usually due to techniques
|
||||
// such as rateLimit. Such updates, if not ignored, can cause keystrokes to be lost.
|
||||
elementValueBeforeEvent = element.value;
|
||||
var handler = DEBUG ? updateModel.bind(element, {type: event.type}) : updateModel;
|
||||
timeoutHandle = ko.utils.setTimeout(handler, 4);
|
||||
}
|
||||
};
|
||||
|
||||
// IE9 will mess up the DOM if you handle events synchronously which results in DOM changes (such as other bindings);
|
||||
// so we'll make sure all updates are asynchronous
|
||||
var ieUpdateModel = ko.utils.ieVersion == 9 ? deferUpdateModel : updateModel;
|
||||
|
||||
var updateView = function () {
|
||||
var modelValue = ko.utils.unwrapObservable(valueAccessor());
|
||||
|
||||
if (modelValue === null || modelValue === undefined) {
|
||||
modelValue = '';
|
||||
}
|
||||
|
||||
if (elementValueBeforeEvent !== undefined && modelValue === elementValueBeforeEvent) {
|
||||
ko.utils.setTimeout(updateView, 4);
|
||||
return;
|
||||
}
|
||||
|
||||
// Update the element only if the element and model are different. On some browsers, updating the value
|
||||
// will move the cursor to the end of the input, which would be bad while the user is typing.
|
||||
if (element.value !== modelValue) {
|
||||
previousElementValue = modelValue; // Make sure we ignore events (propertychange) that result from updating the value
|
||||
element.value = modelValue;
|
||||
}
|
||||
};
|
||||
|
||||
var onEvent = function (event, handler) {
|
||||
ko.utils.registerEventHandler(element, event, handler);
|
||||
};
|
||||
|
||||
if (DEBUG && ko.bindingHandlers['textInput']['_forceUpdateOn']) {
|
||||
// Provide a way for tests to specify exactly which events are bound
|
||||
ko.utils.arrayForEach(ko.bindingHandlers['textInput']['_forceUpdateOn'], function(eventName) {
|
||||
if (eventName.slice(0,5) == 'after') {
|
||||
onEvent(eventName.slice(5), deferUpdateModel);
|
||||
} else {
|
||||
onEvent(eventName, updateModel);
|
||||
}
|
||||
});
|
||||
} else {
|
||||
if (ko.utils.ieVersion < 10) {
|
||||
// Internet Explorer <= 8 doesn't support the 'input' event, but does include 'propertychange' that fires whenever
|
||||
// any property of an element changes. Unlike 'input', it also fires if a property is changed from JavaScript code,
|
||||
// but that's an acceptable compromise for this binding. IE 9 does support 'input', but since it doesn't fire it
|
||||
// when using autocomplete, we'll use 'propertychange' for it also.
|
||||
onEvent('propertychange', function(event) {
|
||||
if (event.propertyName === 'value') {
|
||||
ieUpdateModel(event);
|
||||
}
|
||||
});
|
||||
|
||||
if (ko.utils.ieVersion == 8) {
|
||||
// IE 8 has a bug where it fails to fire 'propertychange' on the first update following a value change from
|
||||
// JavaScript code. It also doesn't fire if you clear the entire value. To fix this, we bind to the following
|
||||
// events too.
|
||||
onEvent('keyup', updateModel); // A single keystoke
|
||||
onEvent('keydown', updateModel); // The first character when a key is held down
|
||||
}
|
||||
if (ko.utils.ieVersion >= 8) {
|
||||
// Internet Explorer 9 doesn't fire the 'input' event when deleting text, including using
|
||||
// the backspace, delete, or ctrl-x keys, clicking the 'x' to clear the input, dragging text
|
||||
// out of the field, and cutting or deleting text using the context menu. 'selectionchange'
|
||||
// can detect all of those except dragging text out of the field, for which we use 'dragend'.
|
||||
// These are also needed in IE8 because of the bug described above.
|
||||
registerForSelectionChangeEvent(element, ieUpdateModel); // 'selectionchange' covers cut, paste, drop, delete, etc.
|
||||
onEvent('dragend', deferUpdateModel);
|
||||
}
|
||||
} else {
|
||||
// All other supported browsers support the 'input' event, which fires whenever the content of the element is changed
|
||||
// through the user interface.
|
||||
onEvent('input', updateModel);
|
||||
|
||||
if (safariVersion < 5 && ko.utils.tagNameLower(element) === "textarea") {
|
||||
// Safari <5 doesn't fire the 'input' event for <textarea> elements (it does fire 'textInput'
|
||||
// but only when typing). So we'll just catch as much as we can with keydown, cut, and paste.
|
||||
onEvent('keydown', deferUpdateModel);
|
||||
onEvent('paste', deferUpdateModel);
|
||||
onEvent('cut', deferUpdateModel);
|
||||
} else if (operaVersion < 11) {
|
||||
// Opera 10 doesn't always fire the 'input' event for cut, paste, undo & drop operations.
|
||||
// We can try to catch some of those using 'keydown'.
|
||||
onEvent('keydown', deferUpdateModel);
|
||||
} else if (firefoxVersion < 4.0) {
|
||||
// Firefox <= 3.6 doesn't fire the 'input' event when text is filled in through autocomplete
|
||||
onEvent('DOMAutoComplete', updateModel);
|
||||
|
||||
// Firefox <=3.5 doesn't fire the 'input' event when text is dropped into the input.
|
||||
onEvent('dragdrop', updateModel); // <3.5
|
||||
onEvent('drop', updateModel); // 3.5
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Bind to the change event so that we can catch programmatic updates of the value that fire this event.
|
||||
onEvent('change', updateModel);
|
||||
|
||||
ko.computed(updateView, null, { disposeWhenNodeIsRemoved: element });
|
||||
}
|
||||
};
|
||||
ko.expressionRewriting.twoWayBindings['textInput'] = true;
|
||||
|
||||
// textinput is an alias for textInput
|
||||
ko.bindingHandlers['textinput'] = {
|
||||
// preprocess is the only way to set up a full alias
|
||||
'preprocess': function (value, name, addBinding) {
|
||||
addBinding('textInput', value);
|
||||
}
|
||||
};
|
||||
|
||||
})();
|
9
bower_components/knockout/src/binding/defaultBindings/uniqueName.js
vendored
Normal file
9
bower_components/knockout/src/binding/defaultBindings/uniqueName.js
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
ko.bindingHandlers['uniqueName'] = {
|
||||
'init': function (element, valueAccessor) {
|
||||
if (valueAccessor()) {
|
||||
var name = "ko_unique_" + (++ko.bindingHandlers['uniqueName'].currentIndex);
|
||||
ko.utils.setElementName(element, name);
|
||||
}
|
||||
}
|
||||
};
|
||||
ko.bindingHandlers['uniqueName'].currentIndex = 0;
|
106
bower_components/knockout/src/binding/defaultBindings/value.js
vendored
Normal file
106
bower_components/knockout/src/binding/defaultBindings/value.js
vendored
Normal file
@ -0,0 +1,106 @@
|
||||
ko.bindingHandlers['value'] = {
|
||||
'after': ['options', 'foreach'],
|
||||
'init': function (element, valueAccessor, allBindings) {
|
||||
// If the value binding is placed on a radio/checkbox, then just pass through to checkedValue and quit
|
||||
if (element.tagName.toLowerCase() == "input" && (element.type == "checkbox" || element.type == "radio")) {
|
||||
ko.applyBindingAccessorsToNode(element, { 'checkedValue': valueAccessor });
|
||||
return;
|
||||
}
|
||||
|
||||
// Always catch "change" event; possibly other events too if asked
|
||||
var eventsToCatch = ["change"];
|
||||
var requestedEventsToCatch = allBindings.get("valueUpdate");
|
||||
var propertyChangedFired = false;
|
||||
var elementValueBeforeEvent = null;
|
||||
|
||||
if (requestedEventsToCatch) {
|
||||
if (typeof requestedEventsToCatch == "string") // Allow both individual event names, and arrays of event names
|
||||
requestedEventsToCatch = [requestedEventsToCatch];
|
||||
ko.utils.arrayPushAll(eventsToCatch, requestedEventsToCatch);
|
||||
eventsToCatch = ko.utils.arrayGetDistinctValues(eventsToCatch);
|
||||
}
|
||||
|
||||
var valueUpdateHandler = function() {
|
||||
elementValueBeforeEvent = null;
|
||||
propertyChangedFired = false;
|
||||
var modelValue = valueAccessor();
|
||||
var elementValue = ko.selectExtensions.readValue(element);
|
||||
ko.expressionRewriting.writeValueToProperty(modelValue, allBindings, 'value', elementValue);
|
||||
}
|
||||
|
||||
// Workaround for https://github.com/SteveSanderson/knockout/issues/122
|
||||
// IE doesn't fire "change" events on textboxes if the user selects a value from its autocomplete list
|
||||
var ieAutoCompleteHackNeeded = ko.utils.ieVersion && element.tagName.toLowerCase() == "input" && element.type == "text"
|
||||
&& element.autocomplete != "off" && (!element.form || element.form.autocomplete != "off");
|
||||
if (ieAutoCompleteHackNeeded && ko.utils.arrayIndexOf(eventsToCatch, "propertychange") == -1) {
|
||||
ko.utils.registerEventHandler(element, "propertychange", function () { propertyChangedFired = true });
|
||||
ko.utils.registerEventHandler(element, "focus", function () { propertyChangedFired = false });
|
||||
ko.utils.registerEventHandler(element, "blur", function() {
|
||||
if (propertyChangedFired) {
|
||||
valueUpdateHandler();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
ko.utils.arrayForEach(eventsToCatch, function(eventName) {
|
||||
// The syntax "after<eventname>" means "run the handler asynchronously after the event"
|
||||
// This is useful, for example, to catch "keydown" events after the browser has updated the control
|
||||
// (otherwise, ko.selectExtensions.readValue(this) will receive the control's value *before* the key event)
|
||||
var handler = valueUpdateHandler;
|
||||
if (ko.utils.stringStartsWith(eventName, "after")) {
|
||||
handler = function() {
|
||||
// The elementValueBeforeEvent variable is non-null *only* during the brief gap between
|
||||
// a keyX event firing and the valueUpdateHandler running, which is scheduled to happen
|
||||
// at the earliest asynchronous opportunity. We store this temporary information so that
|
||||
// if, between keyX and valueUpdateHandler, the underlying model value changes separately,
|
||||
// we can overwrite that model value change with the value the user just typed. Otherwise,
|
||||
// techniques like rateLimit can trigger model changes at critical moments that will
|
||||
// override the user's inputs, causing keystrokes to be lost.
|
||||
elementValueBeforeEvent = ko.selectExtensions.readValue(element);
|
||||
ko.utils.setTimeout(valueUpdateHandler, 0);
|
||||
};
|
||||
eventName = eventName.substring("after".length);
|
||||
}
|
||||
ko.utils.registerEventHandler(element, eventName, handler);
|
||||
});
|
||||
|
||||
var updateFromModel = function () {
|
||||
var newValue = ko.utils.unwrapObservable(valueAccessor());
|
||||
var elementValue = ko.selectExtensions.readValue(element);
|
||||
|
||||
if (elementValueBeforeEvent !== null && newValue === elementValueBeforeEvent) {
|
||||
ko.utils.setTimeout(updateFromModel, 0);
|
||||
return;
|
||||
}
|
||||
|
||||
var valueHasChanged = (newValue !== elementValue);
|
||||
|
||||
if (valueHasChanged) {
|
||||
if (ko.utils.tagNameLower(element) === "select") {
|
||||
var allowUnset = allBindings.get('valueAllowUnset');
|
||||
var applyValueAction = function () {
|
||||
ko.selectExtensions.writeValue(element, newValue, allowUnset);
|
||||
};
|
||||
applyValueAction();
|
||||
|
||||
if (!allowUnset && newValue !== ko.selectExtensions.readValue(element)) {
|
||||
// If you try to set a model value that can't be represented in an already-populated dropdown, reject that change,
|
||||
// because you're not allowed to have a model value that disagrees with a visible UI selection.
|
||||
ko.dependencyDetection.ignore(ko.utils.triggerEvent, null, [element, "change"]);
|
||||
} else {
|
||||
// Workaround for IE6 bug: It won't reliably apply values to SELECT nodes during the same execution thread
|
||||
// right after you've changed the set of OPTION nodes on it. So for that node type, we'll schedule a second thread
|
||||
// to apply the value as well.
|
||||
ko.utils.setTimeout(applyValueAction, 0);
|
||||
}
|
||||
} else {
|
||||
ko.selectExtensions.writeValue(element, newValue);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
ko.computed(updateFromModel, null, { disposeWhenNodeIsRemoved: element });
|
||||
},
|
||||
'update': function() {} // Keep for backwards compatibility with code that may have wrapped value binding
|
||||
};
|
||||
ko.expressionRewriting.twoWayBindings['value'] = true;
|
10
bower_components/knockout/src/binding/defaultBindings/visible.js
vendored
Normal file
10
bower_components/knockout/src/binding/defaultBindings/visible.js
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
ko.bindingHandlers['visible'] = {
|
||||
'update': function (element, valueAccessor) {
|
||||
var value = ko.utils.unwrapObservable(valueAccessor());
|
||||
var isCurrentlyVisible = !(element.style.display == "none");
|
||||
if (value && !isCurrentlyVisible)
|
||||
element.style.display = "";
|
||||
else if ((!value) && isCurrentlyVisible)
|
||||
element.style.display = "none";
|
||||
}
|
||||
};
|
180
bower_components/knockout/src/binding/editDetection/arrayToDomNodeChildren.js
vendored
Normal file
180
bower_components/knockout/src/binding/editDetection/arrayToDomNodeChildren.js
vendored
Normal file
@ -0,0 +1,180 @@
|
||||
(function () {
|
||||
// Objective:
|
||||
// * Given an input array, a container DOM node, and a function from array elements to arrays of DOM nodes,
|
||||
// map the array elements to arrays of DOM nodes, concatenate together all these arrays, and use them to populate the container DOM node
|
||||
// * Next time we're given the same combination of things (with the array possibly having mutated), update the container DOM node
|
||||
// so that its children is again the concatenation of the mappings of the array elements, but don't re-map any array elements that we
|
||||
// previously mapped - retain those nodes, and just insert/delete other ones
|
||||
|
||||
// "callbackAfterAddingNodes" will be invoked after any "mapping"-generated nodes are inserted into the container node
|
||||
// You can use this, for example, to activate bindings on those nodes.
|
||||
|
||||
function mapNodeAndRefreshWhenChanged(containerNode, mapping, valueToMap, callbackAfterAddingNodes, index) {
|
||||
// Map this array value inside a dependentObservable so we re-map when any dependency changes
|
||||
var mappedNodes = [];
|
||||
var dependentObservable = ko.dependentObservable(function() {
|
||||
var newMappedNodes = mapping(valueToMap, index, ko.utils.fixUpContinuousNodeArray(mappedNodes, containerNode)) || [];
|
||||
|
||||
// On subsequent evaluations, just replace the previously-inserted DOM nodes
|
||||
if (mappedNodes.length > 0) {
|
||||
ko.utils.replaceDomNodes(mappedNodes, newMappedNodes);
|
||||
if (callbackAfterAddingNodes)
|
||||
ko.dependencyDetection.ignore(callbackAfterAddingNodes, null, [valueToMap, newMappedNodes, index]);
|
||||
}
|
||||
|
||||
// Replace the contents of the mappedNodes array, thereby updating the record
|
||||
// of which nodes would be deleted if valueToMap was itself later removed
|
||||
mappedNodes.length = 0;
|
||||
ko.utils.arrayPushAll(mappedNodes, newMappedNodes);
|
||||
}, null, { disposeWhenNodeIsRemoved: containerNode, disposeWhen: function() { return !ko.utils.anyDomNodeIsAttachedToDocument(mappedNodes); } });
|
||||
return { mappedNodes : mappedNodes, dependentObservable : (dependentObservable.isActive() ? dependentObservable : undefined) };
|
||||
}
|
||||
|
||||
var lastMappingResultDomDataKey = ko.utils.domData.nextKey(),
|
||||
deletedItemDummyValue = ko.utils.domData.nextKey();
|
||||
|
||||
ko.utils.setDomNodeChildrenFromArrayMapping = function (domNode, array, mapping, options, callbackAfterAddingNodes) {
|
||||
// Compare the provided array against the previous one
|
||||
array = array || [];
|
||||
options = options || {};
|
||||
var isFirstExecution = ko.utils.domData.get(domNode, lastMappingResultDomDataKey) === undefined;
|
||||
var lastMappingResult = ko.utils.domData.get(domNode, lastMappingResultDomDataKey) || [];
|
||||
var lastArray = ko.utils.arrayMap(lastMappingResult, function (x) { return x.arrayEntry; });
|
||||
var editScript = ko.utils.compareArrays(lastArray, array, options['dontLimitMoves']);
|
||||
|
||||
// Build the new mapping result
|
||||
var newMappingResult = [];
|
||||
var lastMappingResultIndex = 0;
|
||||
var newMappingResultIndex = 0;
|
||||
|
||||
var nodesToDelete = [];
|
||||
var itemsToProcess = [];
|
||||
var itemsForBeforeRemoveCallbacks = [];
|
||||
var itemsForMoveCallbacks = [];
|
||||
var itemsForAfterAddCallbacks = [];
|
||||
var mapData;
|
||||
|
||||
function itemMovedOrRetained(editScriptIndex, oldPosition) {
|
||||
mapData = lastMappingResult[oldPosition];
|
||||
if (newMappingResultIndex !== oldPosition)
|
||||
itemsForMoveCallbacks[editScriptIndex] = mapData;
|
||||
// Since updating the index might change the nodes, do so before calling fixUpContinuousNodeArray
|
||||
mapData.indexObservable(newMappingResultIndex++);
|
||||
ko.utils.fixUpContinuousNodeArray(mapData.mappedNodes, domNode);
|
||||
newMappingResult.push(mapData);
|
||||
itemsToProcess.push(mapData);
|
||||
}
|
||||
|
||||
function callCallback(callback, items) {
|
||||
if (callback) {
|
||||
for (var i = 0, n = items.length; i < n; i++) {
|
||||
if (items[i]) {
|
||||
ko.utils.arrayForEach(items[i].mappedNodes, function(node) {
|
||||
callback(node, i, items[i].arrayEntry);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (var i = 0, editScriptItem, movedIndex; editScriptItem = editScript[i]; i++) {
|
||||
movedIndex = editScriptItem['moved'];
|
||||
switch (editScriptItem['status']) {
|
||||
case "deleted":
|
||||
if (movedIndex === undefined) {
|
||||
mapData = lastMappingResult[lastMappingResultIndex];
|
||||
|
||||
// Stop tracking changes to the mapping for these nodes
|
||||
if (mapData.dependentObservable) {
|
||||
mapData.dependentObservable.dispose();
|
||||
mapData.dependentObservable = undefined;
|
||||
}
|
||||
|
||||
// Queue these nodes for later removal
|
||||
if (ko.utils.fixUpContinuousNodeArray(mapData.mappedNodes, domNode).length) {
|
||||
if (options['beforeRemove']) {
|
||||
newMappingResult.push(mapData);
|
||||
itemsToProcess.push(mapData);
|
||||
if (mapData.arrayEntry === deletedItemDummyValue) {
|
||||
mapData = null;
|
||||
} else {
|
||||
itemsForBeforeRemoveCallbacks[i] = mapData;
|
||||
}
|
||||
}
|
||||
if (mapData) {
|
||||
nodesToDelete.push.apply(nodesToDelete, mapData.mappedNodes);
|
||||
}
|
||||
}
|
||||
}
|
||||
lastMappingResultIndex++;
|
||||
break;
|
||||
|
||||
case "retained":
|
||||
itemMovedOrRetained(i, lastMappingResultIndex++);
|
||||
break;
|
||||
|
||||
case "added":
|
||||
if (movedIndex !== undefined) {
|
||||
itemMovedOrRetained(i, movedIndex);
|
||||
} else {
|
||||
mapData = { arrayEntry: editScriptItem['value'], indexObservable: ko.observable(newMappingResultIndex++) };
|
||||
newMappingResult.push(mapData);
|
||||
itemsToProcess.push(mapData);
|
||||
if (!isFirstExecution)
|
||||
itemsForAfterAddCallbacks[i] = mapData;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Store a copy of the array items we just considered so we can difference it next time
|
||||
ko.utils.domData.set(domNode, lastMappingResultDomDataKey, newMappingResult);
|
||||
|
||||
// Call beforeMove first before any changes have been made to the DOM
|
||||
callCallback(options['beforeMove'], itemsForMoveCallbacks);
|
||||
|
||||
// Next remove nodes for deleted items (or just clean if there's a beforeRemove callback)
|
||||
ko.utils.arrayForEach(nodesToDelete, options['beforeRemove'] ? ko.cleanNode : ko.removeNode);
|
||||
|
||||
// Next add/reorder the remaining items (will include deleted items if there's a beforeRemove callback)
|
||||
for (var i = 0, nextNode = ko.virtualElements.firstChild(domNode), lastNode, node; mapData = itemsToProcess[i]; i++) {
|
||||
// Get nodes for newly added items
|
||||
if (!mapData.mappedNodes)
|
||||
ko.utils.extend(mapData, mapNodeAndRefreshWhenChanged(domNode, mapping, mapData.arrayEntry, callbackAfterAddingNodes, mapData.indexObservable));
|
||||
|
||||
// Put nodes in the right place if they aren't there already
|
||||
for (var j = 0; node = mapData.mappedNodes[j]; nextNode = node.nextSibling, lastNode = node, j++) {
|
||||
if (node !== nextNode)
|
||||
ko.virtualElements.insertAfter(domNode, node, lastNode);
|
||||
}
|
||||
|
||||
// Run the callbacks for newly added nodes (for example, to apply bindings, etc.)
|
||||
if (!mapData.initialized && callbackAfterAddingNodes) {
|
||||
callbackAfterAddingNodes(mapData.arrayEntry, mapData.mappedNodes, mapData.indexObservable);
|
||||
mapData.initialized = true;
|
||||
}
|
||||
}
|
||||
|
||||
// If there's a beforeRemove callback, call it after reordering.
|
||||
// Note that we assume that the beforeRemove callback will usually be used to remove the nodes using
|
||||
// some sort of animation, which is why we first reorder the nodes that will be removed. If the
|
||||
// callback instead removes the nodes right away, it would be more efficient to skip reordering them.
|
||||
// Perhaps we'll make that change in the future if this scenario becomes more common.
|
||||
callCallback(options['beforeRemove'], itemsForBeforeRemoveCallbacks);
|
||||
|
||||
// Replace the stored values of deleted items with a dummy value. This provides two benefits: it marks this item
|
||||
// as already "removed" so we won't call beforeRemove for it again, and it ensures that the item won't match up
|
||||
// with an actual item in the array and appear as "retained" or "moved".
|
||||
for (i = 0; i < itemsForBeforeRemoveCallbacks.length; ++i) {
|
||||
if (itemsForBeforeRemoveCallbacks[i]) {
|
||||
itemsForBeforeRemoveCallbacks[i].arrayEntry = deletedItemDummyValue;
|
||||
}
|
||||
}
|
||||
|
||||
// Finally call afterMove and afterAdd callbacks
|
||||
callCallback(options['afterMove'], itemsForMoveCallbacks);
|
||||
callCallback(options['afterAdd'], itemsForAfterAddCallbacks);
|
||||
}
|
||||
})();
|
||||
|
||||
ko.exportSymbol('utils.setDomNodeChildrenFromArrayMapping', ko.utils.setDomNodeChildrenFromArrayMapping);
|
102
bower_components/knockout/src/binding/editDetection/compareArrays.js
vendored
Normal file
102
bower_components/knockout/src/binding/editDetection/compareArrays.js
vendored
Normal file
@ -0,0 +1,102 @@
|
||||
// Go through the items that have been added and deleted and try to find matches between them.
|
||||
ko.utils.findMovesInArrayComparison = function (left, right, limitFailedCompares) {
|
||||
if (left.length && right.length) {
|
||||
var failedCompares, l, r, leftItem, rightItem;
|
||||
for (failedCompares = l = 0; (!limitFailedCompares || failedCompares < limitFailedCompares) && (leftItem = left[l]); ++l) {
|
||||
for (r = 0; rightItem = right[r]; ++r) {
|
||||
if (leftItem['value'] === rightItem['value']) {
|
||||
leftItem['moved'] = rightItem['index'];
|
||||
rightItem['moved'] = leftItem['index'];
|
||||
right.splice(r, 1); // This item is marked as moved; so remove it from right list
|
||||
failedCompares = r = 0; // Reset failed compares count because we're checking for consecutive failures
|
||||
break;
|
||||
}
|
||||
}
|
||||
failedCompares += r;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
ko.utils.compareArrays = (function () {
|
||||
var statusNotInOld = 'added', statusNotInNew = 'deleted';
|
||||
|
||||
// Simple calculation based on Levenshtein distance.
|
||||
function compareArrays(oldArray, newArray, options) {
|
||||
// For backward compatibility, if the third arg is actually a bool, interpret
|
||||
// it as the old parameter 'dontLimitMoves'. Newer code should use { dontLimitMoves: true }.
|
||||
options = (typeof options === 'boolean') ? { 'dontLimitMoves': options } : (options || {});
|
||||
oldArray = oldArray || [];
|
||||
newArray = newArray || [];
|
||||
|
||||
if (oldArray.length < newArray.length)
|
||||
return compareSmallArrayToBigArray(oldArray, newArray, statusNotInOld, statusNotInNew, options);
|
||||
else
|
||||
return compareSmallArrayToBigArray(newArray, oldArray, statusNotInNew, statusNotInOld, options);
|
||||
}
|
||||
|
||||
function compareSmallArrayToBigArray(smlArray, bigArray, statusNotInSml, statusNotInBig, options) {
|
||||
var myMin = Math.min,
|
||||
myMax = Math.max,
|
||||
editDistanceMatrix = [],
|
||||
smlIndex, smlIndexMax = smlArray.length,
|
||||
bigIndex, bigIndexMax = bigArray.length,
|
||||
compareRange = (bigIndexMax - smlIndexMax) || 1,
|
||||
maxDistance = smlIndexMax + bigIndexMax + 1,
|
||||
thisRow, lastRow,
|
||||
bigIndexMaxForRow, bigIndexMinForRow;
|
||||
|
||||
for (smlIndex = 0; smlIndex <= smlIndexMax; smlIndex++) {
|
||||
lastRow = thisRow;
|
||||
editDistanceMatrix.push(thisRow = []);
|
||||
bigIndexMaxForRow = myMin(bigIndexMax, smlIndex + compareRange);
|
||||
bigIndexMinForRow = myMax(0, smlIndex - 1);
|
||||
for (bigIndex = bigIndexMinForRow; bigIndex <= bigIndexMaxForRow; bigIndex++) {
|
||||
if (!bigIndex)
|
||||
thisRow[bigIndex] = smlIndex + 1;
|
||||
else if (!smlIndex) // Top row - transform empty array into new array via additions
|
||||
thisRow[bigIndex] = bigIndex + 1;
|
||||
else if (smlArray[smlIndex - 1] === bigArray[bigIndex - 1])
|
||||
thisRow[bigIndex] = lastRow[bigIndex - 1]; // copy value (no edit)
|
||||
else {
|
||||
var northDistance = lastRow[bigIndex] || maxDistance; // not in big (deletion)
|
||||
var westDistance = thisRow[bigIndex - 1] || maxDistance; // not in small (addition)
|
||||
thisRow[bigIndex] = myMin(northDistance, westDistance) + 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var editScript = [], meMinusOne, notInSml = [], notInBig = [];
|
||||
for (smlIndex = smlIndexMax, bigIndex = bigIndexMax; smlIndex || bigIndex;) {
|
||||
meMinusOne = editDistanceMatrix[smlIndex][bigIndex] - 1;
|
||||
if (bigIndex && meMinusOne === editDistanceMatrix[smlIndex][bigIndex-1]) {
|
||||
notInSml.push(editScript[editScript.length] = { // added
|
||||
'status': statusNotInSml,
|
||||
'value': bigArray[--bigIndex],
|
||||
'index': bigIndex });
|
||||
} else if (smlIndex && meMinusOne === editDistanceMatrix[smlIndex - 1][bigIndex]) {
|
||||
notInBig.push(editScript[editScript.length] = { // deleted
|
||||
'status': statusNotInBig,
|
||||
'value': smlArray[--smlIndex],
|
||||
'index': smlIndex });
|
||||
} else {
|
||||
--bigIndex;
|
||||
--smlIndex;
|
||||
if (!options['sparse']) {
|
||||
editScript.push({
|
||||
'status': "retained",
|
||||
'value': bigArray[bigIndex] });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Set a limit on the number of consecutive non-matching comparisons; having it a multiple of
|
||||
// smlIndexMax keeps the time complexity of this algorithm linear.
|
||||
ko.utils.findMovesInArrayComparison(notInBig, notInSml, !options['dontLimitMoves'] && smlIndexMax * 10);
|
||||
|
||||
return editScript.reverse();
|
||||
}
|
||||
|
||||
return compareArrays;
|
||||
})();
|
||||
|
||||
ko.exportSymbol('utils.compareArrays', ko.utils.compareArrays);
|
200
bower_components/knockout/src/binding/expressionRewriting.js
vendored
Normal file
200
bower_components/knockout/src/binding/expressionRewriting.js
vendored
Normal file
@ -0,0 +1,200 @@
|
||||
ko.expressionRewriting = (function () {
|
||||
var javaScriptReservedWords = ["true", "false", "null", "undefined"];
|
||||
|
||||
// Matches something that can be assigned to--either an isolated identifier or something ending with a property accessor
|
||||
// This is designed to be simple and avoid false negatives, but could produce false positives (e.g., a+b.c).
|
||||
// This also will not properly handle nested brackets (e.g., obj1[obj2['prop']]; see #911).
|
||||
var javaScriptAssignmentTarget = /^(?:[$_a-z][$\w]*|(.+)(\.\s*[$_a-z][$\w]*|\[.+\]))$/i;
|
||||
|
||||
function getWriteableValue(expression) {
|
||||
if (ko.utils.arrayIndexOf(javaScriptReservedWords, expression) >= 0)
|
||||
return false;
|
||||
var match = expression.match(javaScriptAssignmentTarget);
|
||||
return match === null ? false : match[1] ? ('Object(' + match[1] + ')' + match[2]) : expression;
|
||||
}
|
||||
|
||||
// The following regular expressions will be used to split an object-literal string into tokens
|
||||
|
||||
// These two match strings, either with double quotes or single quotes
|
||||
var stringDouble = '"(?:[^"\\\\]|\\\\.)*"',
|
||||
stringSingle = "'(?:[^'\\\\]|\\\\.)*'",
|
||||
// Matches a regular expression (text enclosed by slashes), but will also match sets of divisions
|
||||
// as a regular expression (this is handled by the parsing loop below).
|
||||
stringRegexp = '/(?:[^/\\\\]|\\\\.)*/\w*',
|
||||
// These characters have special meaning to the parser and must not appear in the middle of a
|
||||
// token, except as part of a string.
|
||||
specials = ',"\'{}()/:[\\]',
|
||||
// Match text (at least two characters) that does not contain any of the above special characters,
|
||||
// although some of the special characters are allowed to start it (all but the colon and comma).
|
||||
// The text can contain spaces, but leading or trailing spaces are skipped.
|
||||
everyThingElse = '[^\\s:,/][^' + specials + ']*[^\\s' + specials + ']',
|
||||
// Match any non-space character not matched already. This will match colons and commas, since they're
|
||||
// not matched by "everyThingElse", but will also match any other single character that wasn't already
|
||||
// matched (for example: in "a: 1, b: 2", each of the non-space characters will be matched by oneNotSpace).
|
||||
oneNotSpace = '[^\\s]',
|
||||
|
||||
// Create the actual regular expression by or-ing the above strings. The order is important.
|
||||
bindingToken = RegExp(stringDouble + '|' + stringSingle + '|' + stringRegexp + '|' + everyThingElse + '|' + oneNotSpace, 'g'),
|
||||
|
||||
// Match end of previous token to determine whether a slash is a division or regex.
|
||||
divisionLookBehind = /[\])"'A-Za-z0-9_$]+$/,
|
||||
keywordRegexLookBehind = {'in':1,'return':1,'typeof':1};
|
||||
|
||||
function parseObjectLiteral(objectLiteralString) {
|
||||
// Trim leading and trailing spaces from the string
|
||||
var str = ko.utils.stringTrim(objectLiteralString);
|
||||
|
||||
// Trim braces '{' surrounding the whole object literal
|
||||
if (str.charCodeAt(0) === 123) str = str.slice(1, -1);
|
||||
|
||||
// Split into tokens
|
||||
var result = [], toks = str.match(bindingToken), key, values = [], depth = 0;
|
||||
|
||||
if (toks) {
|
||||
// Append a comma so that we don't need a separate code block to deal with the last item
|
||||
toks.push(',');
|
||||
|
||||
for (var i = 0, tok; tok = toks[i]; ++i) {
|
||||
var c = tok.charCodeAt(0);
|
||||
// A comma signals the end of a key/value pair if depth is zero
|
||||
if (c === 44) { // ","
|
||||
if (depth <= 0) {
|
||||
result.push((key && values.length) ? {key: key, value: values.join('')} : {'unknown': key || values.join('')});
|
||||
key = depth = 0;
|
||||
values = [];
|
||||
continue;
|
||||
}
|
||||
// Simply skip the colon that separates the name and value
|
||||
} else if (c === 58) { // ":"
|
||||
if (!depth && !key && values.length === 1) {
|
||||
key = values.pop();
|
||||
continue;
|
||||
}
|
||||
// A set of slashes is initially matched as a regular expression, but could be division
|
||||
} else if (c === 47 && i && tok.length > 1) { // "/"
|
||||
// Look at the end of the previous token to determine if the slash is actually division
|
||||
var match = toks[i-1].match(divisionLookBehind);
|
||||
if (match && !keywordRegexLookBehind[match[0]]) {
|
||||
// The slash is actually a division punctuator; re-parse the remainder of the string (not including the slash)
|
||||
str = str.substr(str.indexOf(tok) + 1);
|
||||
toks = str.match(bindingToken);
|
||||
toks.push(',');
|
||||
i = -1;
|
||||
// Continue with just the slash
|
||||
tok = '/';
|
||||
}
|
||||
// Increment depth for parentheses, braces, and brackets so that interior commas are ignored
|
||||
} else if (c === 40 || c === 123 || c === 91) { // '(', '{', '['
|
||||
++depth;
|
||||
} else if (c === 41 || c === 125 || c === 93) { // ')', '}', ']'
|
||||
--depth;
|
||||
// The key will be the first token; if it's a string, trim the quotes
|
||||
} else if (!key && !values.length && (c === 34 || c === 39)) { // '"', "'"
|
||||
tok = tok.slice(1, -1);
|
||||
}
|
||||
values.push(tok);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
// Two-way bindings include a write function that allow the handler to update the value even if it's not an observable.
|
||||
var twoWayBindings = {};
|
||||
|
||||
function preProcessBindings(bindingsStringOrKeyValueArray, bindingOptions) {
|
||||
bindingOptions = bindingOptions || {};
|
||||
|
||||
function processKeyValue(key, val) {
|
||||
var writableVal;
|
||||
function callPreprocessHook(obj) {
|
||||
return (obj && obj['preprocess']) ? (val = obj['preprocess'](val, key, processKeyValue)) : true;
|
||||
}
|
||||
if (!bindingParams) {
|
||||
if (!callPreprocessHook(ko['getBindingHandler'](key)))
|
||||
return;
|
||||
|
||||
if (twoWayBindings[key] && (writableVal = getWriteableValue(val))) {
|
||||
// For two-way bindings, provide a write method in case the value
|
||||
// isn't a writable observable.
|
||||
propertyAccessorResultStrings.push("'" + key + "':function(_z){" + writableVal + "=_z}");
|
||||
}
|
||||
}
|
||||
// Values are wrapped in a function so that each value can be accessed independently
|
||||
if (makeValueAccessors) {
|
||||
val = 'function(){return ' + val + ' }';
|
||||
}
|
||||
resultStrings.push("'" + key + "':" + val);
|
||||
}
|
||||
|
||||
var resultStrings = [],
|
||||
propertyAccessorResultStrings = [],
|
||||
makeValueAccessors = bindingOptions['valueAccessors'],
|
||||
bindingParams = bindingOptions['bindingParams'],
|
||||
keyValueArray = typeof bindingsStringOrKeyValueArray === "string" ?
|
||||
parseObjectLiteral(bindingsStringOrKeyValueArray) : bindingsStringOrKeyValueArray;
|
||||
|
||||
ko.utils.arrayForEach(keyValueArray, function(keyValue) {
|
||||
processKeyValue(keyValue.key || keyValue['unknown'], keyValue.value);
|
||||
});
|
||||
|
||||
if (propertyAccessorResultStrings.length)
|
||||
processKeyValue('_ko_property_writers', "{" + propertyAccessorResultStrings.join(",") + " }");
|
||||
|
||||
return resultStrings.join(",");
|
||||
}
|
||||
|
||||
return {
|
||||
bindingRewriteValidators: [],
|
||||
|
||||
twoWayBindings: twoWayBindings,
|
||||
|
||||
parseObjectLiteral: parseObjectLiteral,
|
||||
|
||||
preProcessBindings: preProcessBindings,
|
||||
|
||||
keyValueArrayContainsKey: function(keyValueArray, key) {
|
||||
for (var i = 0; i < keyValueArray.length; i++)
|
||||
if (keyValueArray[i]['key'] == key)
|
||||
return true;
|
||||
return false;
|
||||
},
|
||||
|
||||
// Internal, private KO utility for updating model properties from within bindings
|
||||
// property: If the property being updated is (or might be) an observable, pass it here
|
||||
// If it turns out to be a writable observable, it will be written to directly
|
||||
// allBindings: An object with a get method to retrieve bindings in the current execution context.
|
||||
// This will be searched for a '_ko_property_writers' property in case you're writing to a non-observable
|
||||
// key: The key identifying the property to be written. Example: for { hasFocus: myValue }, write to 'myValue' by specifying the key 'hasFocus'
|
||||
// value: The value to be written
|
||||
// checkIfDifferent: If true, and if the property being written is a writable observable, the value will only be written if
|
||||
// it is !== existing value on that writable observable
|
||||
writeValueToProperty: function(property, allBindings, key, value, checkIfDifferent) {
|
||||
if (!property || !ko.isObservable(property)) {
|
||||
var propWriters = allBindings.get('_ko_property_writers');
|
||||
if (propWriters && propWriters[key])
|
||||
propWriters[key](value);
|
||||
} else if (ko.isWriteableObservable(property) && (!checkIfDifferent || property.peek() !== value)) {
|
||||
property(value);
|
||||
}
|
||||
}
|
||||
};
|
||||
})();
|
||||
|
||||
ko.exportSymbol('expressionRewriting', ko.expressionRewriting);
|
||||
ko.exportSymbol('expressionRewriting.bindingRewriteValidators', ko.expressionRewriting.bindingRewriteValidators);
|
||||
ko.exportSymbol('expressionRewriting.parseObjectLiteral', ko.expressionRewriting.parseObjectLiteral);
|
||||
ko.exportSymbol('expressionRewriting.preProcessBindings', ko.expressionRewriting.preProcessBindings);
|
||||
|
||||
// Making bindings explicitly declare themselves as "two way" isn't ideal in the long term (it would be better if
|
||||
// all bindings could use an official 'property writer' API without needing to declare that they might). However,
|
||||
// since this is not, and has never been, a public API (_ko_property_writers was never documented), it's acceptable
|
||||
// as an internal implementation detail in the short term.
|
||||
// For those developers who rely on _ko_property_writers in their custom bindings, we expose _twoWayBindings as an
|
||||
// undocumented feature that makes it relatively easy to upgrade to KO 3.0. However, this is still not an official
|
||||
// public API, and we reserve the right to remove it at any time if we create a real public property writers API.
|
||||
ko.exportSymbol('expressionRewriting._twoWayBindings', ko.expressionRewriting.twoWayBindings);
|
||||
|
||||
// For backward compatibility, define the following aliases. (Previously, these function names were misleading because
|
||||
// they referred to JSON specifically, even though they actually work with arbitrary JavaScript object literal expressions.)
|
||||
ko.exportSymbol('jsonExpressionRewriting', ko.expressionRewriting);
|
||||
ko.exportSymbol('jsonExpressionRewriting.insertPropertyAccessorsIntoJson', ko.expressionRewriting.preProcessBindings);
|
72
bower_components/knockout/src/binding/selectExtensions.js
vendored
Normal file
72
bower_components/knockout/src/binding/selectExtensions.js
vendored
Normal file
@ -0,0 +1,72 @@
|
||||
(function () {
|
||||
var hasDomDataExpandoProperty = '__ko__hasDomDataOptionValue__';
|
||||
|
||||
// Normally, SELECT elements and their OPTIONs can only take value of type 'string' (because the values
|
||||
// are stored on DOM attributes). ko.selectExtensions provides a way for SELECTs/OPTIONs to have values
|
||||
// that are arbitrary objects. This is very convenient when implementing things like cascading dropdowns.
|
||||
ko.selectExtensions = {
|
||||
readValue : function(element) {
|
||||
switch (ko.utils.tagNameLower(element)) {
|
||||
case 'option':
|
||||
if (element[hasDomDataExpandoProperty] === true)
|
||||
return ko.utils.domData.get(element, ko.bindingHandlers.options.optionValueDomDataKey);
|
||||
return ko.utils.ieVersion <= 7
|
||||
? (element.getAttributeNode('value') && element.getAttributeNode('value').specified ? element.value : element.text)
|
||||
: element.value;
|
||||
case 'select':
|
||||
return element.selectedIndex >= 0 ? ko.selectExtensions.readValue(element.options[element.selectedIndex]) : undefined;
|
||||
default:
|
||||
return element.value;
|
||||
}
|
||||
},
|
||||
|
||||
writeValue: function(element, value, allowUnset) {
|
||||
switch (ko.utils.tagNameLower(element)) {
|
||||
case 'option':
|
||||
switch(typeof value) {
|
||||
case "string":
|
||||
ko.utils.domData.set(element, ko.bindingHandlers.options.optionValueDomDataKey, undefined);
|
||||
if (hasDomDataExpandoProperty in element) { // IE <= 8 throws errors if you delete non-existent properties from a DOM node
|
||||
delete element[hasDomDataExpandoProperty];
|
||||
}
|
||||
element.value = value;
|
||||
break;
|
||||
default:
|
||||
// Store arbitrary object using DomData
|
||||
ko.utils.domData.set(element, ko.bindingHandlers.options.optionValueDomDataKey, value);
|
||||
element[hasDomDataExpandoProperty] = true;
|
||||
|
||||
// Special treatment of numbers is just for backward compatibility. KO 1.2.1 wrote numerical values to element.value.
|
||||
element.value = typeof value === "number" ? value : "";
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 'select':
|
||||
if (value === "" || value === null) // A blank string or null value will select the caption
|
||||
value = undefined;
|
||||
var selection = -1;
|
||||
for (var i = 0, n = element.options.length, optionValue; i < n; ++i) {
|
||||
optionValue = ko.selectExtensions.readValue(element.options[i]);
|
||||
// Include special check to handle selecting a caption with a blank string value
|
||||
if (optionValue == value || (optionValue == "" && value === undefined)) {
|
||||
selection = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (allowUnset || selection >= 0 || (value === undefined && element.size > 1)) {
|
||||
element.selectedIndex = selection;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
if ((value === null) || (value === undefined))
|
||||
value = "";
|
||||
element.value = value;
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
})();
|
||||
|
||||
ko.exportSymbol('selectExtensions', ko.selectExtensions);
|
||||
ko.exportSymbol('selectExtensions.readValue', ko.selectExtensions.readValue);
|
||||
ko.exportSymbol('selectExtensions.writeValue', ko.selectExtensions.writeValue);
|
85
bower_components/knockout/src/components/componentBinding.js
vendored
Normal file
85
bower_components/knockout/src/components/componentBinding.js
vendored
Normal file
@ -0,0 +1,85 @@
|
||||
(function(undefined) {
|
||||
|
||||
var componentLoadingOperationUniqueId = 0;
|
||||
|
||||
ko.bindingHandlers['component'] = {
|
||||
'init': function(element, valueAccessor, ignored1, ignored2, bindingContext) {
|
||||
var currentViewModel,
|
||||
currentLoadingOperationId,
|
||||
disposeAssociatedComponentViewModel = function () {
|
||||
var currentViewModelDispose = currentViewModel && currentViewModel['dispose'];
|
||||
if (typeof currentViewModelDispose === 'function') {
|
||||
currentViewModelDispose.call(currentViewModel);
|
||||
}
|
||||
currentViewModel = null;
|
||||
// Any in-flight loading operation is no longer relevant, so make sure we ignore its completion
|
||||
currentLoadingOperationId = null;
|
||||
},
|
||||
originalChildNodes = ko.utils.makeArray(ko.virtualElements.childNodes(element));
|
||||
|
||||
ko.utils.domNodeDisposal.addDisposeCallback(element, disposeAssociatedComponentViewModel);
|
||||
|
||||
ko.computed(function () {
|
||||
var value = ko.utils.unwrapObservable(valueAccessor()),
|
||||
componentName, componentParams;
|
||||
|
||||
if (typeof value === 'string') {
|
||||
componentName = value;
|
||||
} else {
|
||||
componentName = ko.utils.unwrapObservable(value['name']);
|
||||
componentParams = ko.utils.unwrapObservable(value['params']);
|
||||
}
|
||||
|
||||
if (!componentName) {
|
||||
throw new Error('No component name specified');
|
||||
}
|
||||
|
||||
var loadingOperationId = currentLoadingOperationId = ++componentLoadingOperationUniqueId;
|
||||
ko.components.get(componentName, function(componentDefinition) {
|
||||
// If this is not the current load operation for this element, ignore it.
|
||||
if (currentLoadingOperationId !== loadingOperationId) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Clean up previous state
|
||||
disposeAssociatedComponentViewModel();
|
||||
|
||||
// Instantiate and bind new component. Implicitly this cleans any old DOM nodes.
|
||||
if (!componentDefinition) {
|
||||
throw new Error('Unknown component \'' + componentName + '\'');
|
||||
}
|
||||
cloneTemplateIntoElement(componentName, componentDefinition, element);
|
||||
var componentViewModel = createViewModel(componentDefinition, element, originalChildNodes, componentParams),
|
||||
childBindingContext = bindingContext['createChildContext'](componentViewModel, /* dataItemAlias */ undefined, function(ctx) {
|
||||
ctx['$component'] = componentViewModel;
|
||||
ctx['$componentTemplateNodes'] = originalChildNodes;
|
||||
});
|
||||
currentViewModel = componentViewModel;
|
||||
ko.applyBindingsToDescendants(childBindingContext, element);
|
||||
});
|
||||
}, null, { disposeWhenNodeIsRemoved: element });
|
||||
|
||||
return { 'controlsDescendantBindings': true };
|
||||
}
|
||||
};
|
||||
|
||||
ko.virtualElements.allowedBindings['component'] = true;
|
||||
|
||||
function cloneTemplateIntoElement(componentName, componentDefinition, element) {
|
||||
var template = componentDefinition['template'];
|
||||
if (!template) {
|
||||
throw new Error('Component \'' + componentName + '\' has no template');
|
||||
}
|
||||
|
||||
var clonedNodesArray = ko.utils.cloneNodes(template);
|
||||
ko.virtualElements.setDomNodeChildren(element, clonedNodesArray);
|
||||
}
|
||||
|
||||
function createViewModel(componentDefinition, element, originalChildNodes, componentParams) {
|
||||
var componentViewModelFactory = componentDefinition['createViewModel'];
|
||||
return componentViewModelFactory
|
||||
? componentViewModelFactory.call(componentDefinition, componentParams, { 'element': element, 'templateNodes': originalChildNodes })
|
||||
: componentParams; // Template-only component
|
||||
}
|
||||
|
||||
})();
|
115
bower_components/knockout/src/components/customElements.js
vendored
Normal file
115
bower_components/knockout/src/components/customElements.js
vendored
Normal file
@ -0,0 +1,115 @@
|
||||
(function (undefined) {
|
||||
// Overridable API for determining which component name applies to a given node. By overriding this,
|
||||
// you can for example map specific tagNames to components that are not preregistered.
|
||||
ko.components['getComponentNameForNode'] = function(node) {
|
||||
var tagNameLower = ko.utils.tagNameLower(node);
|
||||
if (ko.components.isRegistered(tagNameLower)) {
|
||||
// Try to determine that this node can be considered a *custom* element; see https://github.com/knockout/knockout/issues/1603
|
||||
if (tagNameLower.indexOf('-') != -1 || ('' + node) == "[object HTMLUnknownElement]" || (ko.utils.ieVersion <= 8 && node.tagName === tagNameLower)) {
|
||||
return tagNameLower;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
ko.components.addBindingsForCustomElement = function(allBindings, node, bindingContext, valueAccessors) {
|
||||
// Determine if it's really a custom element matching a component
|
||||
if (node.nodeType === 1) {
|
||||
var componentName = ko.components['getComponentNameForNode'](node);
|
||||
if (componentName) {
|
||||
// It does represent a component, so add a component binding for it
|
||||
allBindings = allBindings || {};
|
||||
|
||||
if (allBindings['component']) {
|
||||
// Avoid silently overwriting some other 'component' binding that may already be on the element
|
||||
throw new Error('Cannot use the "component" binding on a custom element matching a component');
|
||||
}
|
||||
|
||||
var componentBindingValue = { 'name': componentName, 'params': getComponentParamsFromCustomElement(node, bindingContext) };
|
||||
|
||||
allBindings['component'] = valueAccessors
|
||||
? function() { return componentBindingValue; }
|
||||
: componentBindingValue;
|
||||
}
|
||||
}
|
||||
|
||||
return allBindings;
|
||||
}
|
||||
|
||||
var nativeBindingProviderInstance = new ko.bindingProvider();
|
||||
|
||||
function getComponentParamsFromCustomElement(elem, bindingContext) {
|
||||
var paramsAttribute = elem.getAttribute('params');
|
||||
|
||||
if (paramsAttribute) {
|
||||
var params = nativeBindingProviderInstance['parseBindingsString'](paramsAttribute, bindingContext, elem, { 'valueAccessors': true, 'bindingParams': true }),
|
||||
rawParamComputedValues = ko.utils.objectMap(params, function(paramValue, paramName) {
|
||||
return ko.computed(paramValue, null, { disposeWhenNodeIsRemoved: elem });
|
||||
}),
|
||||
result = ko.utils.objectMap(rawParamComputedValues, function(paramValueComputed, paramName) {
|
||||
var paramValue = paramValueComputed.peek();
|
||||
// Does the evaluation of the parameter value unwrap any observables?
|
||||
if (!paramValueComputed.isActive()) {
|
||||
// No it doesn't, so there's no need for any computed wrapper. Just pass through the supplied value directly.
|
||||
// Example: "someVal: firstName, age: 123" (whether or not firstName is an observable/computed)
|
||||
return paramValue;
|
||||
} else {
|
||||
// Yes it does. Supply a computed property that unwraps both the outer (binding expression)
|
||||
// level of observability, and any inner (resulting model value) level of observability.
|
||||
// This means the component doesn't have to worry about multiple unwrapping. If the value is a
|
||||
// writable observable, the computed will also be writable and pass the value on to the observable.
|
||||
return ko.computed({
|
||||
'read': function() {
|
||||
return ko.utils.unwrapObservable(paramValueComputed());
|
||||
},
|
||||
'write': ko.isWriteableObservable(paramValue) && function(value) {
|
||||
paramValueComputed()(value);
|
||||
},
|
||||
disposeWhenNodeIsRemoved: elem
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
// Give access to the raw computeds, as long as that wouldn't overwrite any custom param also called '$raw'
|
||||
// This is in case the developer wants to react to outer (binding) observability separately from inner
|
||||
// (model value) observability, or in case the model value observable has subobservables.
|
||||
if (!result.hasOwnProperty('$raw')) {
|
||||
result['$raw'] = rawParamComputedValues;
|
||||
}
|
||||
|
||||
return result;
|
||||
} else {
|
||||
// For consistency, absence of a "params" attribute is treated the same as the presence of
|
||||
// any empty one. Otherwise component viewmodels need special code to check whether or not
|
||||
// 'params' or 'params.$raw' is null/undefined before reading subproperties, which is annoying.
|
||||
return { '$raw': {} };
|
||||
}
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------------
|
||||
// Compatibility code for older (pre-HTML5) IE browsers
|
||||
|
||||
if (ko.utils.ieVersion < 9) {
|
||||
// Whenever you preregister a component, enable it as a custom element in the current document
|
||||
ko.components['register'] = (function(originalFunction) {
|
||||
return function(componentName) {
|
||||
document.createElement(componentName); // Allows IE<9 to parse markup containing the custom element
|
||||
return originalFunction.apply(this, arguments);
|
||||
}
|
||||
})(ko.components['register']);
|
||||
|
||||
// Whenever you create a document fragment, enable all preregistered component names as custom elements
|
||||
// This is needed to make innerShiv/jQuery HTML parsing correctly handle the custom elements
|
||||
document.createDocumentFragment = (function(originalFunction) {
|
||||
return function() {
|
||||
var newDocFrag = originalFunction(),
|
||||
allComponents = ko.components._allRegisteredComponents;
|
||||
for (var componentName in allComponents) {
|
||||
if (allComponents.hasOwnProperty(componentName)) {
|
||||
newDocFrag.createElement(componentName);
|
||||
}
|
||||
}
|
||||
return newDocFrag;
|
||||
};
|
||||
})(document.createDocumentFragment);
|
||||
}
|
||||
})();
|
226
bower_components/knockout/src/components/defaultLoader.js
vendored
Normal file
226
bower_components/knockout/src/components/defaultLoader.js
vendored
Normal file
@ -0,0 +1,226 @@
|
||||
(function(undefined) {
|
||||
|
||||
// The default loader is responsible for two things:
|
||||
// 1. Maintaining the default in-memory registry of component configuration objects
|
||||
// (i.e., the thing you're writing to when you call ko.components.register(someName, ...))
|
||||
// 2. Answering requests for components by fetching configuration objects
|
||||
// from that default in-memory registry and resolving them into standard
|
||||
// component definition objects (of the form { createViewModel: ..., template: ... })
|
||||
// Custom loaders may override either of these facilities, i.e.,
|
||||
// 1. To supply configuration objects from some other source (e.g., conventions)
|
||||
// 2. Or, to resolve configuration objects by loading viewmodels/templates via arbitrary logic.
|
||||
|
||||
var defaultConfigRegistry = {};
|
||||
|
||||
ko.components.register = function(componentName, config) {
|
||||
if (!config) {
|
||||
throw new Error('Invalid configuration for ' + componentName);
|
||||
}
|
||||
|
||||
if (ko.components.isRegistered(componentName)) {
|
||||
throw new Error('Component ' + componentName + ' is already registered');
|
||||
}
|
||||
|
||||
defaultConfigRegistry[componentName] = config;
|
||||
};
|
||||
|
||||
ko.components.isRegistered = function(componentName) {
|
||||
return defaultConfigRegistry.hasOwnProperty(componentName);
|
||||
};
|
||||
|
||||
ko.components.unregister = function(componentName) {
|
||||
delete defaultConfigRegistry[componentName];
|
||||
ko.components.clearCachedDefinition(componentName);
|
||||
};
|
||||
|
||||
ko.components.defaultLoader = {
|
||||
'getConfig': function(componentName, callback) {
|
||||
var result = defaultConfigRegistry.hasOwnProperty(componentName)
|
||||
? defaultConfigRegistry[componentName]
|
||||
: null;
|
||||
callback(result);
|
||||
},
|
||||
|
||||
'loadComponent': function(componentName, config, callback) {
|
||||
var errorCallback = makeErrorCallback(componentName);
|
||||
possiblyGetConfigFromAmd(errorCallback, config, function(loadedConfig) {
|
||||
resolveConfig(componentName, errorCallback, loadedConfig, callback);
|
||||
});
|
||||
},
|
||||
|
||||
'loadTemplate': function(componentName, templateConfig, callback) {
|
||||
resolveTemplate(makeErrorCallback(componentName), templateConfig, callback);
|
||||
},
|
||||
|
||||
'loadViewModel': function(componentName, viewModelConfig, callback) {
|
||||
resolveViewModel(makeErrorCallback(componentName), viewModelConfig, callback);
|
||||
}
|
||||
};
|
||||
|
||||
var createViewModelKey = 'createViewModel';
|
||||
|
||||
// Takes a config object of the form { template: ..., viewModel: ... }, and asynchronously convert it
|
||||
// into the standard component definition format:
|
||||
// { template: <ArrayOfDomNodes>, createViewModel: function(params, componentInfo) { ... } }.
|
||||
// Since both template and viewModel may need to be resolved asynchronously, both tasks are performed
|
||||
// in parallel, and the results joined when both are ready. We don't depend on any promises infrastructure,
|
||||
// so this is implemented manually below.
|
||||
function resolveConfig(componentName, errorCallback, config, callback) {
|
||||
var result = {},
|
||||
makeCallBackWhenZero = 2,
|
||||
tryIssueCallback = function() {
|
||||
if (--makeCallBackWhenZero === 0) {
|
||||
callback(result);
|
||||
}
|
||||
},
|
||||
templateConfig = config['template'],
|
||||
viewModelConfig = config['viewModel'];
|
||||
|
||||
if (templateConfig) {
|
||||
possiblyGetConfigFromAmd(errorCallback, templateConfig, function(loadedConfig) {
|
||||
ko.components._getFirstResultFromLoaders('loadTemplate', [componentName, loadedConfig], function(resolvedTemplate) {
|
||||
result['template'] = resolvedTemplate;
|
||||
tryIssueCallback();
|
||||
});
|
||||
});
|
||||
} else {
|
||||
tryIssueCallback();
|
||||
}
|
||||
|
||||
if (viewModelConfig) {
|
||||
possiblyGetConfigFromAmd(errorCallback, viewModelConfig, function(loadedConfig) {
|
||||
ko.components._getFirstResultFromLoaders('loadViewModel', [componentName, loadedConfig], function(resolvedViewModel) {
|
||||
result[createViewModelKey] = resolvedViewModel;
|
||||
tryIssueCallback();
|
||||
});
|
||||
});
|
||||
} else {
|
||||
tryIssueCallback();
|
||||
}
|
||||
}
|
||||
|
||||
function resolveTemplate(errorCallback, templateConfig, callback) {
|
||||
if (typeof templateConfig === 'string') {
|
||||
// Markup - parse it
|
||||
callback(ko.utils.parseHtmlFragment(templateConfig));
|
||||
} else if (templateConfig instanceof Array) {
|
||||
// Assume already an array of DOM nodes - pass through unchanged
|
||||
callback(templateConfig);
|
||||
} else if (isDocumentFragment(templateConfig)) {
|
||||
// Document fragment - use its child nodes
|
||||
callback(ko.utils.makeArray(templateConfig.childNodes));
|
||||
} else if (templateConfig['element']) {
|
||||
var element = templateConfig['element'];
|
||||
if (isDomElement(element)) {
|
||||
// Element instance - copy its child nodes
|
||||
callback(cloneNodesFromTemplateSourceElement(element));
|
||||
} else if (typeof element === 'string') {
|
||||
// Element ID - find it, then copy its child nodes
|
||||
var elemInstance = document.getElementById(element);
|
||||
if (elemInstance) {
|
||||
callback(cloneNodesFromTemplateSourceElement(elemInstance));
|
||||
} else {
|
||||
errorCallback('Cannot find element with ID ' + element);
|
||||
}
|
||||
} else {
|
||||
errorCallback('Unknown element type: ' + element);
|
||||
}
|
||||
} else {
|
||||
errorCallback('Unknown template value: ' + templateConfig);
|
||||
}
|
||||
}
|
||||
|
||||
function resolveViewModel(errorCallback, viewModelConfig, callback) {
|
||||
if (typeof viewModelConfig === 'function') {
|
||||
// Constructor - convert to standard factory function format
|
||||
// By design, this does *not* supply componentInfo to the constructor, as the intent is that
|
||||
// componentInfo contains non-viewmodel data (e.g., the component's element) that should only
|
||||
// be used in factory functions, not viewmodel constructors.
|
||||
callback(function (params /*, componentInfo */) {
|
||||
return new viewModelConfig(params);
|
||||
});
|
||||
} else if (typeof viewModelConfig[createViewModelKey] === 'function') {
|
||||
// Already a factory function - use it as-is
|
||||
callback(viewModelConfig[createViewModelKey]);
|
||||
} else if ('instance' in viewModelConfig) {
|
||||
// Fixed object instance - promote to createViewModel format for API consistency
|
||||
var fixedInstance = viewModelConfig['instance'];
|
||||
callback(function (params, componentInfo) {
|
||||
return fixedInstance;
|
||||
});
|
||||
} else if ('viewModel' in viewModelConfig) {
|
||||
// Resolved AMD module whose value is of the form { viewModel: ... }
|
||||
resolveViewModel(errorCallback, viewModelConfig['viewModel'], callback);
|
||||
} else {
|
||||
errorCallback('Unknown viewModel value: ' + viewModelConfig);
|
||||
}
|
||||
}
|
||||
|
||||
function cloneNodesFromTemplateSourceElement(elemInstance) {
|
||||
switch (ko.utils.tagNameLower(elemInstance)) {
|
||||
case 'script':
|
||||
return ko.utils.parseHtmlFragment(elemInstance.text);
|
||||
case 'textarea':
|
||||
return ko.utils.parseHtmlFragment(elemInstance.value);
|
||||
case 'template':
|
||||
// For browsers with proper <template> element support (i.e., where the .content property
|
||||
// gives a document fragment), use that document fragment.
|
||||
if (isDocumentFragment(elemInstance.content)) {
|
||||
return ko.utils.cloneNodes(elemInstance.content.childNodes);
|
||||
}
|
||||
}
|
||||
|
||||
// Regular elements such as <div>, and <template> elements on old browsers that don't really
|
||||
// understand <template> and just treat it as a regular container
|
||||
return ko.utils.cloneNodes(elemInstance.childNodes);
|
||||
}
|
||||
|
||||
function isDomElement(obj) {
|
||||
if (window['HTMLElement']) {
|
||||
return obj instanceof HTMLElement;
|
||||
} else {
|
||||
return obj && obj.tagName && obj.nodeType === 1;
|
||||
}
|
||||
}
|
||||
|
||||
function isDocumentFragment(obj) {
|
||||
if (window['DocumentFragment']) {
|
||||
return obj instanceof DocumentFragment;
|
||||
} else {
|
||||
return obj && obj.nodeType === 11;
|
||||
}
|
||||
}
|
||||
|
||||
function possiblyGetConfigFromAmd(errorCallback, config, callback) {
|
||||
if (typeof config['require'] === 'string') {
|
||||
// The config is the value of an AMD module
|
||||
if (amdRequire || window['require']) {
|
||||
(amdRequire || window['require'])([config['require']], callback);
|
||||
} else {
|
||||
errorCallback('Uses require, but no AMD loader is present');
|
||||
}
|
||||
} else {
|
||||
callback(config);
|
||||
}
|
||||
}
|
||||
|
||||
function makeErrorCallback(componentName) {
|
||||
return function (message) {
|
||||
throw new Error('Component \'' + componentName + '\': ' + message);
|
||||
};
|
||||
}
|
||||
|
||||
ko.exportSymbol('components.register', ko.components.register);
|
||||
ko.exportSymbol('components.isRegistered', ko.components.isRegistered);
|
||||
ko.exportSymbol('components.unregister', ko.components.unregister);
|
||||
|
||||
// Expose the default loader so that developers can directly ask it for configuration
|
||||
// or to resolve configuration
|
||||
ko.exportSymbol('components.defaultLoader', ko.components.defaultLoader);
|
||||
|
||||
// By default, the default loader is the only registered component loader
|
||||
ko.components['loaders'].push(ko.components.defaultLoader);
|
||||
|
||||
// Privately expose the underlying config registry for use in old-IE shim
|
||||
ko.components._allRegisteredComponents = defaultConfigRegistry;
|
||||
})();
|
142
bower_components/knockout/src/components/loaderRegistry.js
vendored
Normal file
142
bower_components/knockout/src/components/loaderRegistry.js
vendored
Normal file
@ -0,0 +1,142 @@
|
||||
(function(undefined) {
|
||||
var loadingSubscribablesCache = {}, // Tracks component loads that are currently in flight
|
||||
loadedDefinitionsCache = {}; // Tracks component loads that have already completed
|
||||
|
||||
ko.components = {
|
||||
get: function(componentName, callback) {
|
||||
var cachedDefinition = getObjectOwnProperty(loadedDefinitionsCache, componentName);
|
||||
if (cachedDefinition) {
|
||||
// It's already loaded and cached. Reuse the same definition object.
|
||||
// Note that for API consistency, even cache hits complete asynchronously by default.
|
||||
// You can bypass this by putting synchronous:true on your component config.
|
||||
if (cachedDefinition.isSynchronousComponent) {
|
||||
ko.dependencyDetection.ignore(function() { // See comment in loaderRegistryBehaviors.js for reasoning
|
||||
callback(cachedDefinition.definition);
|
||||
});
|
||||
} else {
|
||||
ko.tasks.schedule(function() { callback(cachedDefinition.definition); });
|
||||
}
|
||||
} else {
|
||||
// Join the loading process that is already underway, or start a new one.
|
||||
loadComponentAndNotify(componentName, callback);
|
||||
}
|
||||
},
|
||||
|
||||
clearCachedDefinition: function(componentName) {
|
||||
delete loadedDefinitionsCache[componentName];
|
||||
},
|
||||
|
||||
_getFirstResultFromLoaders: getFirstResultFromLoaders
|
||||
};
|
||||
|
||||
function getObjectOwnProperty(obj, propName) {
|
||||
return obj.hasOwnProperty(propName) ? obj[propName] : undefined;
|
||||
}
|
||||
|
||||
function loadComponentAndNotify(componentName, callback) {
|
||||
var subscribable = getObjectOwnProperty(loadingSubscribablesCache, componentName),
|
||||
completedAsync;
|
||||
if (!subscribable) {
|
||||
// It's not started loading yet. Start loading, and when it's done, move it to loadedDefinitionsCache.
|
||||
subscribable = loadingSubscribablesCache[componentName] = new ko.subscribable();
|
||||
subscribable.subscribe(callback);
|
||||
|
||||
beginLoadingComponent(componentName, function(definition, config) {
|
||||
var isSynchronousComponent = !!(config && config['synchronous']);
|
||||
loadedDefinitionsCache[componentName] = { definition: definition, isSynchronousComponent: isSynchronousComponent };
|
||||
delete loadingSubscribablesCache[componentName];
|
||||
|
||||
// For API consistency, all loads complete asynchronously. However we want to avoid
|
||||
// adding an extra task schedule if it's unnecessary (i.e., the completion is already
|
||||
// async).
|
||||
//
|
||||
// You can bypass the 'always asynchronous' feature by putting the synchronous:true
|
||||
// flag on your component configuration when you register it.
|
||||
if (completedAsync || isSynchronousComponent) {
|
||||
// Note that notifySubscribers ignores any dependencies read within the callback.
|
||||
// See comment in loaderRegistryBehaviors.js for reasoning
|
||||
subscribable['notifySubscribers'](definition);
|
||||
} else {
|
||||
ko.tasks.schedule(function() {
|
||||
subscribable['notifySubscribers'](definition);
|
||||
});
|
||||
}
|
||||
});
|
||||
completedAsync = true;
|
||||
} else {
|
||||
subscribable.subscribe(callback);
|
||||
}
|
||||
}
|
||||
|
||||
function beginLoadingComponent(componentName, callback) {
|
||||
getFirstResultFromLoaders('getConfig', [componentName], function(config) {
|
||||
if (config) {
|
||||
// We have a config, so now load its definition
|
||||
getFirstResultFromLoaders('loadComponent', [componentName, config], function(definition) {
|
||||
callback(definition, config);
|
||||
});
|
||||
} else {
|
||||
// The component has no config - it's unknown to all the loaders.
|
||||
// Note that this is not an error (e.g., a module loading error) - that would abort the
|
||||
// process and this callback would not run. For this callback to run, all loaders must
|
||||
// have confirmed they don't know about this component.
|
||||
callback(null, null);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function getFirstResultFromLoaders(methodName, argsExceptCallback, callback, candidateLoaders) {
|
||||
// On the first call in the stack, start with the full set of loaders
|
||||
if (!candidateLoaders) {
|
||||
candidateLoaders = ko.components['loaders'].slice(0); // Use a copy, because we'll be mutating this array
|
||||
}
|
||||
|
||||
// Try the next candidate
|
||||
var currentCandidateLoader = candidateLoaders.shift();
|
||||
if (currentCandidateLoader) {
|
||||
var methodInstance = currentCandidateLoader[methodName];
|
||||
if (methodInstance) {
|
||||
var wasAborted = false,
|
||||
synchronousReturnValue = methodInstance.apply(currentCandidateLoader, argsExceptCallback.concat(function(result) {
|
||||
if (wasAborted) {
|
||||
callback(null);
|
||||
} else if (result !== null) {
|
||||
// This candidate returned a value. Use it.
|
||||
callback(result);
|
||||
} else {
|
||||
// Try the next candidate
|
||||
getFirstResultFromLoaders(methodName, argsExceptCallback, callback, candidateLoaders);
|
||||
}
|
||||
}));
|
||||
|
||||
// Currently, loaders may not return anything synchronously. This leaves open the possibility
|
||||
// that we'll extend the API to support synchronous return values in the future. It won't be
|
||||
// a breaking change, because currently no loader is allowed to return anything except undefined.
|
||||
if (synchronousReturnValue !== undefined) {
|
||||
wasAborted = true;
|
||||
|
||||
// Method to suppress exceptions will remain undocumented. This is only to keep
|
||||
// KO's specs running tidily, since we can observe the loading got aborted without
|
||||
// having exceptions cluttering up the console too.
|
||||
if (!currentCandidateLoader['suppressLoaderExceptions']) {
|
||||
throw new Error('Component loaders must supply values by invoking the callback, not by returning values synchronously.');
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// This candidate doesn't have the relevant handler. Synchronously move on to the next one.
|
||||
getFirstResultFromLoaders(methodName, argsExceptCallback, callback, candidateLoaders);
|
||||
}
|
||||
} else {
|
||||
// No candidates returned a value
|
||||
callback(null);
|
||||
}
|
||||
}
|
||||
|
||||
// Reference the loaders via string name so it's possible for developers
|
||||
// to replace the whole array by assigning to ko.components.loaders
|
||||
ko.components['loaders'] = [];
|
||||
|
||||
ko.exportSymbol('components', ko.components);
|
||||
ko.exportSymbol('components.get', ko.components.get);
|
||||
ko.exportSymbol('components.clearCachedDefinition', ko.components.clearCachedDefinition);
|
||||
})();
|
15
bower_components/knockout/src/google-closure-compiler-utils.js
vendored
Normal file
15
bower_components/knockout/src/google-closure-compiler-utils.js
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// Google Closure Compiler helpers (used only to make the minified file smaller)
|
||||
ko.exportSymbol = function(koPath, object) {
|
||||
var tokens = koPath.split(".");
|
||||
|
||||
// In the future, "ko" may become distinct from "koExports" (so that non-exported objects are not reachable)
|
||||
// At that point, "target" would be set to: (typeof koExports !== "undefined" ? koExports : ko)
|
||||
var target = ko;
|
||||
|
||||
for (var i = 0; i < tokens.length - 1; i++)
|
||||
target = target[tokens[i]];
|
||||
target[tokens[tokens.length - 1]] = object;
|
||||
};
|
||||
ko.exportProperty = function(owner, publicName, object) {
|
||||
owner[publicName] = object;
|
||||
};
|
70
bower_components/knockout/src/memoization.js
vendored
Normal file
70
bower_components/knockout/src/memoization.js
vendored
Normal file
@ -0,0 +1,70 @@
|
||||
|
||||
ko.memoization = (function () {
|
||||
var memos = {};
|
||||
|
||||
function randomMax8HexChars() {
|
||||
return (((1 + Math.random()) * 0x100000000) | 0).toString(16).substring(1);
|
||||
}
|
||||
function generateRandomId() {
|
||||
return randomMax8HexChars() + randomMax8HexChars();
|
||||
}
|
||||
function findMemoNodes(rootNode, appendToArray) {
|
||||
if (!rootNode)
|
||||
return;
|
||||
if (rootNode.nodeType == 8) {
|
||||
var memoId = ko.memoization.parseMemoText(rootNode.nodeValue);
|
||||
if (memoId != null)
|
||||
appendToArray.push({ domNode: rootNode, memoId: memoId });
|
||||
} else if (rootNode.nodeType == 1) {
|
||||
for (var i = 0, childNodes = rootNode.childNodes, j = childNodes.length; i < j; i++)
|
||||
findMemoNodes(childNodes[i], appendToArray);
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
memoize: function (callback) {
|
||||
if (typeof callback != "function")
|
||||
throw new Error("You can only pass a function to ko.memoization.memoize()");
|
||||
var memoId = generateRandomId();
|
||||
memos[memoId] = callback;
|
||||
return "<!--[ko_memo:" + memoId + "]-->";
|
||||
},
|
||||
|
||||
unmemoize: function (memoId, callbackParams) {
|
||||
var callback = memos[memoId];
|
||||
if (callback === undefined)
|
||||
throw new Error("Couldn't find any memo with ID " + memoId + ". Perhaps it's already been unmemoized.");
|
||||
try {
|
||||
callback.apply(null, callbackParams || []);
|
||||
return true;
|
||||
}
|
||||
finally { delete memos[memoId]; }
|
||||
},
|
||||
|
||||
unmemoizeDomNodeAndDescendants: function (domNode, extraCallbackParamsArray) {
|
||||
var memos = [];
|
||||
findMemoNodes(domNode, memos);
|
||||
for (var i = 0, j = memos.length; i < j; i++) {
|
||||
var node = memos[i].domNode;
|
||||
var combinedParams = [node];
|
||||
if (extraCallbackParamsArray)
|
||||
ko.utils.arrayPushAll(combinedParams, extraCallbackParamsArray);
|
||||
ko.memoization.unmemoize(memos[i].memoId, combinedParams);
|
||||
node.nodeValue = ""; // Neuter this node so we don't try to unmemoize it again
|
||||
if (node.parentNode)
|
||||
node.parentNode.removeChild(node); // If possible, erase it totally (not always possible - someone else might just hold a reference to it then call unmemoizeDomNodeAndDescendants again)
|
||||
}
|
||||
},
|
||||
|
||||
parseMemoText: function (memoText) {
|
||||
var match = memoText.match(/^\[ko_memo\:(.*?)\]$/);
|
||||
return match ? match[1] : null;
|
||||
}
|
||||
};
|
||||
})();
|
||||
|
||||
ko.exportSymbol('memoization', ko.memoization);
|
||||
ko.exportSymbol('memoization.memoize', ko.memoization.memoize);
|
||||
ko.exportSymbol('memoization.unmemoize', ko.memoization.unmemoize);
|
||||
ko.exportSymbol('memoization.parseMemoText', ko.memoization.parseMemoText);
|
||||
ko.exportSymbol('memoization.unmemoizeDomNodeAndDescendants', ko.memoization.unmemoizeDomNodeAndDescendants);
|
3
bower_components/knockout/src/namespace.js
vendored
Normal file
3
bower_components/knockout/src/namespace.js
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
// Internally, all KO objects are attached to koExports (even the non-exported ones whose names will be minified by the closure compiler).
|
||||
// In the future, the following "ko" variable may be made distinct from "koExports" so that private objects are not externally reachable.
|
||||
var ko = typeof koExports !== 'undefined' ? koExports : {};
|
7
bower_components/knockout/src/options.js
vendored
Normal file
7
bower_components/knockout/src/options.js
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
// For any options that may affect various areas of Knockout and aren't directly associated with data binding.
|
||||
ko.options = {
|
||||
'deferUpdates': false,
|
||||
'useOnlyNativeEvents': false
|
||||
};
|
||||
|
||||
//ko.exportSymbol('options', ko.options); // 'options' isn't minified
|
64
bower_components/knockout/src/subscribables/dependencyDetection.js
vendored
Normal file
64
bower_components/knockout/src/subscribables/dependencyDetection.js
vendored
Normal file
@ -0,0 +1,64 @@
|
||||
|
||||
ko.computedContext = ko.dependencyDetection = (function () {
|
||||
var outerFrames = [],
|
||||
currentFrame,
|
||||
lastId = 0;
|
||||
|
||||
// Return a unique ID that can be assigned to an observable for dependency tracking.
|
||||
// Theoretically, you could eventually overflow the number storage size, resulting
|
||||
// in duplicate IDs. But in JavaScript, the largest exact integral value is 2^53
|
||||
// or 9,007,199,254,740,992. If you created 1,000,000 IDs per second, it would
|
||||
// take over 285 years to reach that number.
|
||||
// Reference http://blog.vjeux.com/2010/javascript/javascript-max_int-number-limits.html
|
||||
function getId() {
|
||||
return ++lastId;
|
||||
}
|
||||
|
||||
function begin(options) {
|
||||
outerFrames.push(currentFrame);
|
||||
currentFrame = options;
|
||||
}
|
||||
|
||||
function end() {
|
||||
currentFrame = outerFrames.pop();
|
||||
}
|
||||
|
||||
return {
|
||||
begin: begin,
|
||||
|
||||
end: end,
|
||||
|
||||
registerDependency: function (subscribable) {
|
||||
if (currentFrame) {
|
||||
if (!ko.isSubscribable(subscribable))
|
||||
throw new Error("Only subscribable things can act as dependencies");
|
||||
currentFrame.callback.call(currentFrame.callbackTarget, subscribable, subscribable._id || (subscribable._id = getId()));
|
||||
}
|
||||
},
|
||||
|
||||
ignore: function (callback, callbackTarget, callbackArgs) {
|
||||
try {
|
||||
begin();
|
||||
return callback.apply(callbackTarget, callbackArgs || []);
|
||||
} finally {
|
||||
end();
|
||||
}
|
||||
},
|
||||
|
||||
getDependenciesCount: function () {
|
||||
if (currentFrame)
|
||||
return currentFrame.computed.getDependenciesCount();
|
||||
},
|
||||
|
||||
isInitial: function() {
|
||||
if (currentFrame)
|
||||
return currentFrame.isInitial;
|
||||
}
|
||||
};
|
||||
})();
|
||||
|
||||
ko.exportSymbol('computedContext', ko.computedContext);
|
||||
ko.exportSymbol('computedContext.getDependenciesCount', ko.computedContext.getDependenciesCount);
|
||||
ko.exportSymbol('computedContext.isInitial', ko.computedContext.isInitial);
|
||||
|
||||
ko.exportSymbol('ignoreDependencies', ko.ignoreDependencies = ko.dependencyDetection.ignore);
|
467
bower_components/knockout/src/subscribables/dependentObservable.js
vendored
Normal file
467
bower_components/knockout/src/subscribables/dependentObservable.js
vendored
Normal file
@ -0,0 +1,467 @@
|
||||
var computedState = ko.utils.createSymbolOrString('_state');
|
||||
|
||||
ko.computed = ko.dependentObservable = function (evaluatorFunctionOrOptions, evaluatorFunctionTarget, options) {
|
||||
if (typeof evaluatorFunctionOrOptions === "object") {
|
||||
// Single-parameter syntax - everything is on this "options" param
|
||||
options = evaluatorFunctionOrOptions;
|
||||
} else {
|
||||
// Multi-parameter syntax - construct the options according to the params passed
|
||||
options = options || {};
|
||||
if (evaluatorFunctionOrOptions) {
|
||||
options["read"] = evaluatorFunctionOrOptions;
|
||||
}
|
||||
}
|
||||
if (typeof options["read"] != "function")
|
||||
throw Error("Pass a function that returns the value of the ko.computed");
|
||||
|
||||
var writeFunction = options["write"];
|
||||
var state = {
|
||||
latestValue: undefined,
|
||||
isStale: true,
|
||||
isBeingEvaluated: false,
|
||||
suppressDisposalUntilDisposeWhenReturnsFalse: false,
|
||||
isDisposed: false,
|
||||
pure: false,
|
||||
isSleeping: false,
|
||||
readFunction: options["read"],
|
||||
evaluatorFunctionTarget: evaluatorFunctionTarget || options["owner"],
|
||||
disposeWhenNodeIsRemoved: options["disposeWhenNodeIsRemoved"] || options.disposeWhenNodeIsRemoved || null,
|
||||
disposeWhen: options["disposeWhen"] || options.disposeWhen,
|
||||
domNodeDisposalCallback: null,
|
||||
dependencyTracking: {},
|
||||
dependenciesCount: 0,
|
||||
evaluationTimeoutInstance: null
|
||||
};
|
||||
|
||||
function computedObservable() {
|
||||
if (arguments.length > 0) {
|
||||
if (typeof writeFunction === "function") {
|
||||
// Writing a value
|
||||
writeFunction.apply(state.evaluatorFunctionTarget, arguments);
|
||||
} else {
|
||||
throw new Error("Cannot write a value to a ko.computed unless you specify a 'write' option. If you wish to read the current value, don't pass any parameters.");
|
||||
}
|
||||
return this; // Permits chained assignments
|
||||
} else {
|
||||
// Reading the value
|
||||
ko.dependencyDetection.registerDependency(computedObservable);
|
||||
if (state.isStale || (state.isSleeping && computedObservable.haveDependenciesChanged())) {
|
||||
computedObservable.evaluateImmediate();
|
||||
}
|
||||
return state.latestValue;
|
||||
}
|
||||
}
|
||||
|
||||
computedObservable[computedState] = state;
|
||||
computedObservable.hasWriteFunction = typeof writeFunction === "function";
|
||||
|
||||
// Inherit from 'subscribable'
|
||||
if (!ko.utils.canSetPrototype) {
|
||||
// 'subscribable' won't be on the prototype chain unless we put it there directly
|
||||
ko.utils.extend(computedObservable, ko.subscribable['fn']);
|
||||
}
|
||||
ko.subscribable['fn'].init(computedObservable);
|
||||
|
||||
// Inherit from 'computed'
|
||||
ko.utils.setPrototypeOfOrExtend(computedObservable, computedFn);
|
||||
|
||||
if (options['pure']) {
|
||||
state.pure = true;
|
||||
state.isSleeping = true; // Starts off sleeping; will awake on the first subscription
|
||||
ko.utils.extend(computedObservable, pureComputedOverrides);
|
||||
} else if (options['deferEvaluation']) {
|
||||
ko.utils.extend(computedObservable, deferEvaluationOverrides);
|
||||
}
|
||||
|
||||
if (ko.options['deferUpdates']) {
|
||||
ko.extenders['deferred'](computedObservable, true);
|
||||
}
|
||||
|
||||
if (DEBUG) {
|
||||
// #1731 - Aid debugging by exposing the computed's options
|
||||
computedObservable["_options"] = options;
|
||||
}
|
||||
|
||||
if (state.disposeWhenNodeIsRemoved) {
|
||||
// Since this computed is associated with a DOM node, and we don't want to dispose the computed
|
||||
// until the DOM node is *removed* from the document (as opposed to never having been in the document),
|
||||
// we'll prevent disposal until "disposeWhen" first returns false.
|
||||
state.suppressDisposalUntilDisposeWhenReturnsFalse = true;
|
||||
|
||||
// disposeWhenNodeIsRemoved: true can be used to opt into the "only dispose after first false result"
|
||||
// behaviour even if there's no specific node to watch. In that case, clear the option so we don't try
|
||||
// to watch for a non-node's disposal. This technique is intended for KO's internal use only and shouldn't
|
||||
// be documented or used by application code, as it's likely to change in a future version of KO.
|
||||
if (!state.disposeWhenNodeIsRemoved.nodeType) {
|
||||
state.disposeWhenNodeIsRemoved = null;
|
||||
}
|
||||
}
|
||||
|
||||
// Evaluate, unless sleeping or deferEvaluation is true
|
||||
if (!state.isSleeping && !options['deferEvaluation']) {
|
||||
computedObservable.evaluateImmediate();
|
||||
}
|
||||
|
||||
// Attach a DOM node disposal callback so that the computed will be proactively disposed as soon as the node is
|
||||
// removed using ko.removeNode. But skip if isActive is false (there will never be any dependencies to dispose).
|
||||
if (state.disposeWhenNodeIsRemoved && computedObservable.isActive()) {
|
||||
ko.utils.domNodeDisposal.addDisposeCallback(state.disposeWhenNodeIsRemoved, state.domNodeDisposalCallback = function () {
|
||||
computedObservable.dispose();
|
||||
});
|
||||
}
|
||||
|
||||
return computedObservable;
|
||||
};
|
||||
|
||||
// Utility function that disposes a given dependencyTracking entry
|
||||
function computedDisposeDependencyCallback(id, entryToDispose) {
|
||||
if (entryToDispose !== null && entryToDispose.dispose) {
|
||||
entryToDispose.dispose();
|
||||
}
|
||||
}
|
||||
|
||||
// This function gets called each time a dependency is detected while evaluating a computed.
|
||||
// It's factored out as a shared function to avoid creating unnecessary function instances during evaluation.
|
||||
function computedBeginDependencyDetectionCallback(subscribable, id) {
|
||||
var computedObservable = this.computedObservable,
|
||||
state = computedObservable[computedState];
|
||||
if (!state.isDisposed) {
|
||||
if (this.disposalCount && this.disposalCandidates[id]) {
|
||||
// Don't want to dispose this subscription, as it's still being used
|
||||
computedObservable.addDependencyTracking(id, subscribable, this.disposalCandidates[id]);
|
||||
this.disposalCandidates[id] = null; // No need to actually delete the property - disposalCandidates is a transient object anyway
|
||||
--this.disposalCount;
|
||||
} else if (!state.dependencyTracking[id]) {
|
||||
// Brand new subscription - add it
|
||||
computedObservable.addDependencyTracking(id, subscribable, state.isSleeping ? { _target: subscribable } : computedObservable.subscribeToDependency(subscribable));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var computedFn = {
|
||||
"equalityComparer": valuesArePrimitiveAndEqual,
|
||||
getDependenciesCount: function () {
|
||||
return this[computedState].dependenciesCount;
|
||||
},
|
||||
addDependencyTracking: function (id, target, trackingObj) {
|
||||
if (this[computedState].pure && target === this) {
|
||||
throw Error("A 'pure' computed must not be called recursively");
|
||||
}
|
||||
|
||||
this[computedState].dependencyTracking[id] = trackingObj;
|
||||
trackingObj._order = this[computedState].dependenciesCount++;
|
||||
trackingObj._version = target.getVersion();
|
||||
},
|
||||
haveDependenciesChanged: function () {
|
||||
var id, dependency, dependencyTracking = this[computedState].dependencyTracking;
|
||||
for (id in dependencyTracking) {
|
||||
if (dependencyTracking.hasOwnProperty(id)) {
|
||||
dependency = dependencyTracking[id];
|
||||
if (dependency._target.hasChanged(dependency._version)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
markDirty: function () {
|
||||
// Process "dirty" events if we can handle delayed notifications
|
||||
if (this._evalDelayed && !this[computedState].isBeingEvaluated) {
|
||||
this._evalDelayed();
|
||||
}
|
||||
},
|
||||
isActive: function () {
|
||||
return this[computedState].isStale || this[computedState].dependenciesCount > 0;
|
||||
},
|
||||
respondToChange: function () {
|
||||
// Ignore "change" events if we've already scheduled a delayed notification
|
||||
if (!this._notificationIsPending) {
|
||||
this.evaluatePossiblyAsync();
|
||||
}
|
||||
},
|
||||
subscribeToDependency: function (target) {
|
||||
if (target._deferUpdates && !this[computedState].disposeWhenNodeIsRemoved) {
|
||||
var dirtySub = target.subscribe(this.markDirty, this, 'dirty'),
|
||||
changeSub = target.subscribe(this.respondToChange, this);
|
||||
return {
|
||||
_target: target,
|
||||
dispose: function () {
|
||||
dirtySub.dispose();
|
||||
changeSub.dispose();
|
||||
}
|
||||
};
|
||||
} else {
|
||||
return target.subscribe(this.evaluatePossiblyAsync, this);
|
||||
}
|
||||
},
|
||||
evaluatePossiblyAsync: function () {
|
||||
var computedObservable = this,
|
||||
throttleEvaluationTimeout = computedObservable['throttleEvaluation'];
|
||||
if (throttleEvaluationTimeout && throttleEvaluationTimeout >= 0) {
|
||||
clearTimeout(this[computedState].evaluationTimeoutInstance);
|
||||
this[computedState].evaluationTimeoutInstance = ko.utils.setTimeout(function () {
|
||||
computedObservable.evaluateImmediate(true /*notifyChange*/);
|
||||
}, throttleEvaluationTimeout);
|
||||
} else if (computedObservable._evalDelayed) {
|
||||
computedObservable._evalDelayed();
|
||||
} else {
|
||||
computedObservable.evaluateImmediate(true /*notifyChange*/);
|
||||
}
|
||||
},
|
||||
evaluateImmediate: function (notifyChange) {
|
||||
var computedObservable = this,
|
||||
state = computedObservable[computedState],
|
||||
disposeWhen = state.disposeWhen;
|
||||
|
||||
if (state.isBeingEvaluated) {
|
||||
// If the evaluation of a ko.computed causes side effects, it's possible that it will trigger its own re-evaluation.
|
||||
// This is not desirable (it's hard for a developer to realise a chain of dependencies might cause this, and they almost
|
||||
// certainly didn't intend infinite re-evaluations). So, for predictability, we simply prevent ko.computeds from causing
|
||||
// their own re-evaluation. Further discussion at https://github.com/SteveSanderson/knockout/pull/387
|
||||
return;
|
||||
}
|
||||
|
||||
// Do not evaluate (and possibly capture new dependencies) if disposed
|
||||
if (state.isDisposed) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (state.disposeWhenNodeIsRemoved && !ko.utils.domNodeIsAttachedToDocument(state.disposeWhenNodeIsRemoved) || disposeWhen && disposeWhen()) {
|
||||
// See comment above about suppressDisposalUntilDisposeWhenReturnsFalse
|
||||
if (!state.suppressDisposalUntilDisposeWhenReturnsFalse) {
|
||||
computedObservable.dispose();
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
// It just did return false, so we can stop suppressing now
|
||||
state.suppressDisposalUntilDisposeWhenReturnsFalse = false;
|
||||
}
|
||||
|
||||
state.isBeingEvaluated = true;
|
||||
try {
|
||||
this.evaluateImmediate_CallReadWithDependencyDetection(notifyChange);
|
||||
} finally {
|
||||
state.isBeingEvaluated = false;
|
||||
}
|
||||
|
||||
if (!state.dependenciesCount) {
|
||||
computedObservable.dispose();
|
||||
}
|
||||
},
|
||||
evaluateImmediate_CallReadWithDependencyDetection: function (notifyChange) {
|
||||
// This function is really just part of the evaluateImmediate logic. You would never call it from anywhere else.
|
||||
// Factoring it out into a separate function means it can be independent of the try/catch block in evaluateImmediate,
|
||||
// which contributes to saving about 40% off the CPU overhead of computed evaluation (on V8 at least).
|
||||
|
||||
var computedObservable = this,
|
||||
state = computedObservable[computedState];
|
||||
|
||||
// Initially, we assume that none of the subscriptions are still being used (i.e., all are candidates for disposal).
|
||||
// Then, during evaluation, we cross off any that are in fact still being used.
|
||||
var isInitial = state.pure ? undefined : !state.dependenciesCount, // If we're evaluating when there are no previous dependencies, it must be the first time
|
||||
dependencyDetectionContext = {
|
||||
computedObservable: computedObservable,
|
||||
disposalCandidates: state.dependencyTracking,
|
||||
disposalCount: state.dependenciesCount
|
||||
};
|
||||
|
||||
ko.dependencyDetection.begin({
|
||||
callbackTarget: dependencyDetectionContext,
|
||||
callback: computedBeginDependencyDetectionCallback,
|
||||
computed: computedObservable,
|
||||
isInitial: isInitial
|
||||
});
|
||||
|
||||
state.dependencyTracking = {};
|
||||
state.dependenciesCount = 0;
|
||||
|
||||
var newValue = this.evaluateImmediate_CallReadThenEndDependencyDetection(state, dependencyDetectionContext);
|
||||
|
||||
if (computedObservable.isDifferent(state.latestValue, newValue)) {
|
||||
if (!state.isSleeping) {
|
||||
computedObservable["notifySubscribers"](state.latestValue, "beforeChange");
|
||||
}
|
||||
|
||||
state.latestValue = newValue;
|
||||
|
||||
if (state.isSleeping) {
|
||||
computedObservable.updateVersion();
|
||||
} else if (notifyChange) {
|
||||
computedObservable["notifySubscribers"](state.latestValue);
|
||||
}
|
||||
}
|
||||
|
||||
if (isInitial) {
|
||||
computedObservable["notifySubscribers"](state.latestValue, "awake");
|
||||
}
|
||||
},
|
||||
evaluateImmediate_CallReadThenEndDependencyDetection: function (state, dependencyDetectionContext) {
|
||||
// This function is really part of the evaluateImmediate_CallReadWithDependencyDetection logic.
|
||||
// You'd never call it from anywhere else. Factoring it out means that evaluateImmediate_CallReadWithDependencyDetection
|
||||
// can be independent of try/finally blocks, which contributes to saving about 40% off the CPU
|
||||
// overhead of computed evaluation (on V8 at least).
|
||||
|
||||
try {
|
||||
var readFunction = state.readFunction;
|
||||
return state.evaluatorFunctionTarget ? readFunction.call(state.evaluatorFunctionTarget) : readFunction();
|
||||
} finally {
|
||||
ko.dependencyDetection.end();
|
||||
|
||||
// For each subscription no longer being used, remove it from the active subscriptions list and dispose it
|
||||
if (dependencyDetectionContext.disposalCount && !state.isSleeping) {
|
||||
ko.utils.objectForEach(dependencyDetectionContext.disposalCandidates, computedDisposeDependencyCallback);
|
||||
}
|
||||
|
||||
state.isStale = false;
|
||||
}
|
||||
},
|
||||
peek: function () {
|
||||
// Peek won't re-evaluate, except while the computed is sleeping or to get the initial value when "deferEvaluation" is set.
|
||||
var state = this[computedState];
|
||||
if ((state.isStale && !state.dependenciesCount) || (state.isSleeping && this.haveDependenciesChanged())) {
|
||||
this.evaluateImmediate();
|
||||
}
|
||||
return state.latestValue;
|
||||
},
|
||||
limit: function (limitFunction) {
|
||||
// Override the limit function with one that delays evaluation as well
|
||||
ko.subscribable['fn'].limit.call(this, limitFunction);
|
||||
this._evalDelayed = function () {
|
||||
this._limitBeforeChange(this[computedState].latestValue);
|
||||
|
||||
this[computedState].isStale = true; // Mark as dirty
|
||||
|
||||
// Pass the observable to the "limit" code, which will access it when
|
||||
// it's time to do the notification.
|
||||
this._limitChange(this);
|
||||
}
|
||||
},
|
||||
dispose: function () {
|
||||
var state = this[computedState];
|
||||
if (!state.isSleeping && state.dependencyTracking) {
|
||||
ko.utils.objectForEach(state.dependencyTracking, function (id, dependency) {
|
||||
if (dependency.dispose)
|
||||
dependency.dispose();
|
||||
});
|
||||
}
|
||||
if (state.disposeWhenNodeIsRemoved && state.domNodeDisposalCallback) {
|
||||
ko.utils.domNodeDisposal.removeDisposeCallback(state.disposeWhenNodeIsRemoved, state.domNodeDisposalCallback);
|
||||
}
|
||||
state.dependencyTracking = null;
|
||||
state.dependenciesCount = 0;
|
||||
state.isDisposed = true;
|
||||
state.isStale = false;
|
||||
state.isSleeping = false;
|
||||
state.disposeWhenNodeIsRemoved = null;
|
||||
}
|
||||
};
|
||||
|
||||
var pureComputedOverrides = {
|
||||
beforeSubscriptionAdd: function (event) {
|
||||
// If asleep, wake up the computed by subscribing to any dependencies.
|
||||
var computedObservable = this,
|
||||
state = computedObservable[computedState];
|
||||
if (!state.isDisposed && state.isSleeping && event == 'change') {
|
||||
state.isSleeping = false;
|
||||
if (state.isStale || computedObservable.haveDependenciesChanged()) {
|
||||
state.dependencyTracking = null;
|
||||
state.dependenciesCount = 0;
|
||||
state.isStale = true;
|
||||
computedObservable.evaluateImmediate();
|
||||
} else {
|
||||
// First put the dependencies in order
|
||||
var dependeciesOrder = [];
|
||||
ko.utils.objectForEach(state.dependencyTracking, function (id, dependency) {
|
||||
dependeciesOrder[dependency._order] = id;
|
||||
});
|
||||
// Next, subscribe to each one
|
||||
ko.utils.arrayForEach(dependeciesOrder, function (id, order) {
|
||||
var dependency = state.dependencyTracking[id],
|
||||
subscription = computedObservable.subscribeToDependency(dependency._target);
|
||||
subscription._order = order;
|
||||
subscription._version = dependency._version;
|
||||
state.dependencyTracking[id] = subscription;
|
||||
});
|
||||
}
|
||||
if (!state.isDisposed) { // test since evaluating could trigger disposal
|
||||
computedObservable["notifySubscribers"](state.latestValue, "awake");
|
||||
}
|
||||
}
|
||||
},
|
||||
afterSubscriptionRemove: function (event) {
|
||||
var state = this[computedState];
|
||||
if (!state.isDisposed && event == 'change' && !this.hasSubscriptionsForEvent('change')) {
|
||||
ko.utils.objectForEach(state.dependencyTracking, function (id, dependency) {
|
||||
if (dependency.dispose) {
|
||||
state.dependencyTracking[id] = {
|
||||
_target: dependency._target,
|
||||
_order: dependency._order,
|
||||
_version: dependency._version
|
||||
};
|
||||
dependency.dispose();
|
||||
}
|
||||
});
|
||||
state.isSleeping = true;
|
||||
this["notifySubscribers"](undefined, "asleep");
|
||||
}
|
||||
},
|
||||
getVersion: function () {
|
||||
// Because a pure computed is not automatically updated while it is sleeping, we can't
|
||||
// simply return the version number. Instead, we check if any of the dependencies have
|
||||
// changed and conditionally re-evaluate the computed observable.
|
||||
var state = this[computedState];
|
||||
if (state.isSleeping && (state.isStale || this.haveDependenciesChanged())) {
|
||||
this.evaluateImmediate();
|
||||
}
|
||||
return ko.subscribable['fn'].getVersion.call(this);
|
||||
}
|
||||
};
|
||||
|
||||
var deferEvaluationOverrides = {
|
||||
beforeSubscriptionAdd: function (event) {
|
||||
// This will force a computed with deferEvaluation to evaluate when the first subscription is registered.
|
||||
if (event == 'change' || event == 'beforeChange') {
|
||||
this.peek();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Note that for browsers that don't support proto assignment, the
|
||||
// inheritance chain is created manually in the ko.computed constructor
|
||||
if (ko.utils.canSetPrototype) {
|
||||
ko.utils.setPrototypeOf(computedFn, ko.subscribable['fn']);
|
||||
}
|
||||
|
||||
// Set the proto chain values for ko.hasPrototype
|
||||
var protoProp = ko.observable.protoProperty; // == "__ko_proto__"
|
||||
ko.computed[protoProp] = ko.observable;
|
||||
computedFn[protoProp] = ko.computed;
|
||||
|
||||
ko.isComputed = function (instance) {
|
||||
return ko.hasPrototype(instance, ko.computed);
|
||||
};
|
||||
|
||||
ko.isPureComputed = function (instance) {
|
||||
return ko.hasPrototype(instance, ko.computed)
|
||||
&& instance[computedState] && instance[computedState].pure;
|
||||
};
|
||||
|
||||
ko.exportSymbol('computed', ko.computed);
|
||||
ko.exportSymbol('dependentObservable', ko.computed); // export ko.dependentObservable for backwards compatibility (1.x)
|
||||
ko.exportSymbol('isComputed', ko.isComputed);
|
||||
ko.exportSymbol('isPureComputed', ko.isPureComputed);
|
||||
ko.exportSymbol('computed.fn', computedFn);
|
||||
ko.exportProperty(computedFn, 'peek', computedFn.peek);
|
||||
ko.exportProperty(computedFn, 'dispose', computedFn.dispose);
|
||||
ko.exportProperty(computedFn, 'isActive', computedFn.isActive);
|
||||
ko.exportProperty(computedFn, 'getDependenciesCount', computedFn.getDependenciesCount);
|
||||
|
||||
ko.pureComputed = function (evaluatorFunctionOrOptions, evaluatorFunctionTarget) {
|
||||
if (typeof evaluatorFunctionOrOptions === 'function') {
|
||||
return ko.computed(evaluatorFunctionOrOptions, evaluatorFunctionTarget, {'pure':true});
|
||||
} else {
|
||||
evaluatorFunctionOrOptions = ko.utils.extend({}, evaluatorFunctionOrOptions); // make a copy of the parameter object
|
||||
evaluatorFunctionOrOptions['pure'] = true;
|
||||
return ko.computed(evaluatorFunctionOrOptions, evaluatorFunctionTarget);
|
||||
}
|
||||
}
|
||||
ko.exportSymbol('pureComputed', ko.pureComputed);
|
106
bower_components/knockout/src/subscribables/extenders.js
vendored
Normal file
106
bower_components/knockout/src/subscribables/extenders.js
vendored
Normal file
@ -0,0 +1,106 @@
|
||||
ko.extenders = {
|
||||
'throttle': function(target, timeout) {
|
||||
// Throttling means two things:
|
||||
|
||||
// (1) For dependent observables, we throttle *evaluations* so that, no matter how fast its dependencies
|
||||
// notify updates, the target doesn't re-evaluate (and hence doesn't notify) faster than a certain rate
|
||||
target['throttleEvaluation'] = timeout;
|
||||
|
||||
// (2) For writable targets (observables, or writable dependent observables), we throttle *writes*
|
||||
// so the target cannot change value synchronously or faster than a certain rate
|
||||
var writeTimeoutInstance = null;
|
||||
return ko.dependentObservable({
|
||||
'read': target,
|
||||
'write': function(value) {
|
||||
clearTimeout(writeTimeoutInstance);
|
||||
writeTimeoutInstance = ko.utils.setTimeout(function() {
|
||||
target(value);
|
||||
}, timeout);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
'rateLimit': function(target, options) {
|
||||
var timeout, method, limitFunction;
|
||||
|
||||
if (typeof options == 'number') {
|
||||
timeout = options;
|
||||
} else {
|
||||
timeout = options['timeout'];
|
||||
method = options['method'];
|
||||
}
|
||||
|
||||
// rateLimit supersedes deferred updates
|
||||
target._deferUpdates = false;
|
||||
|
||||
limitFunction = method == 'notifyWhenChangesStop' ? debounce : throttle;
|
||||
target.limit(function(callback) {
|
||||
return limitFunction(callback, timeout);
|
||||
});
|
||||
},
|
||||
|
||||
'deferred': function(target, options) {
|
||||
if (options !== true) {
|
||||
throw new Error('The \'deferred\' extender only accepts the value \'true\', because it is not supported to turn deferral off once enabled.')
|
||||
}
|
||||
|
||||
if (!target._deferUpdates) {
|
||||
target._deferUpdates = true;
|
||||
target.limit(function (callback) {
|
||||
var handle;
|
||||
return function () {
|
||||
ko.tasks.cancel(handle);
|
||||
handle = ko.tasks.schedule(callback);
|
||||
target['notifySubscribers'](undefined, 'dirty');
|
||||
};
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
'notify': function(target, notifyWhen) {
|
||||
target["equalityComparer"] = notifyWhen == "always" ?
|
||||
null : // null equalityComparer means to always notify
|
||||
valuesArePrimitiveAndEqual;
|
||||
}
|
||||
};
|
||||
|
||||
var primitiveTypes = { 'undefined':1, 'boolean':1, 'number':1, 'string':1 };
|
||||
function valuesArePrimitiveAndEqual(a, b) {
|
||||
var oldValueIsPrimitive = (a === null) || (typeof(a) in primitiveTypes);
|
||||
return oldValueIsPrimitive ? (a === b) : false;
|
||||
}
|
||||
|
||||
function throttle(callback, timeout) {
|
||||
var timeoutInstance;
|
||||
return function () {
|
||||
if (!timeoutInstance) {
|
||||
timeoutInstance = ko.utils.setTimeout(function () {
|
||||
timeoutInstance = undefined;
|
||||
callback();
|
||||
}, timeout);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
function debounce(callback, timeout) {
|
||||
var timeoutInstance;
|
||||
return function () {
|
||||
clearTimeout(timeoutInstance);
|
||||
timeoutInstance = ko.utils.setTimeout(callback, timeout);
|
||||
};
|
||||
}
|
||||
|
||||
function applyExtenders(requestedExtenders) {
|
||||
var target = this;
|
||||
if (requestedExtenders) {
|
||||
ko.utils.objectForEach(requestedExtenders, function(key, value) {
|
||||
var extenderHandler = ko.extenders[key];
|
||||
if (typeof extenderHandler == 'function') {
|
||||
target = extenderHandler(target, value) || target;
|
||||
}
|
||||
});
|
||||
}
|
||||
return target;
|
||||
}
|
||||
|
||||
ko.exportSymbol('extenders', ko.extenders);
|
96
bower_components/knockout/src/subscribables/mappingHelpers.js
vendored
Normal file
96
bower_components/knockout/src/subscribables/mappingHelpers.js
vendored
Normal file
@ -0,0 +1,96 @@
|
||||
|
||||
(function() {
|
||||
var maxNestedObservableDepth = 10; // Escape the (unlikely) pathalogical case where an observable's current value is itself (or similar reference cycle)
|
||||
|
||||
ko.toJS = function(rootObject) {
|
||||
if (arguments.length == 0)
|
||||
throw new Error("When calling ko.toJS, pass the object you want to convert.");
|
||||
|
||||
// We just unwrap everything at every level in the object graph
|
||||
return mapJsObjectGraph(rootObject, function(valueToMap) {
|
||||
// Loop because an observable's value might in turn be another observable wrapper
|
||||
for (var i = 0; ko.isObservable(valueToMap) && (i < maxNestedObservableDepth); i++)
|
||||
valueToMap = valueToMap();
|
||||
return valueToMap;
|
||||
});
|
||||
};
|
||||
|
||||
ko.toJSON = function(rootObject, replacer, space) { // replacer and space are optional
|
||||
var plainJavaScriptObject = ko.toJS(rootObject);
|
||||
return ko.utils.stringifyJson(plainJavaScriptObject, replacer, space);
|
||||
};
|
||||
|
||||
function mapJsObjectGraph(rootObject, mapInputCallback, visitedObjects) {
|
||||
visitedObjects = visitedObjects || new objectLookup();
|
||||
|
||||
rootObject = mapInputCallback(rootObject);
|
||||
var canHaveProperties = (typeof rootObject == "object") && (rootObject !== null) && (rootObject !== undefined) && (!(rootObject instanceof RegExp)) && (!(rootObject instanceof Date)) && (!(rootObject instanceof String)) && (!(rootObject instanceof Number)) && (!(rootObject instanceof Boolean));
|
||||
if (!canHaveProperties)
|
||||
return rootObject;
|
||||
|
||||
var outputProperties = rootObject instanceof Array ? [] : {};
|
||||
visitedObjects.save(rootObject, outputProperties);
|
||||
|
||||
visitPropertiesOrArrayEntries(rootObject, function(indexer) {
|
||||
var propertyValue = mapInputCallback(rootObject[indexer]);
|
||||
|
||||
switch (typeof propertyValue) {
|
||||
case "boolean":
|
||||
case "number":
|
||||
case "string":
|
||||
case "function":
|
||||
outputProperties[indexer] = propertyValue;
|
||||
break;
|
||||
case "object":
|
||||
case "undefined":
|
||||
var previouslyMappedValue = visitedObjects.get(propertyValue);
|
||||
outputProperties[indexer] = (previouslyMappedValue !== undefined)
|
||||
? previouslyMappedValue
|
||||
: mapJsObjectGraph(propertyValue, mapInputCallback, visitedObjects);
|
||||
break;
|
||||
}
|
||||
});
|
||||
|
||||
return outputProperties;
|
||||
}
|
||||
|
||||
function visitPropertiesOrArrayEntries(rootObject, visitorCallback) {
|
||||
if (rootObject instanceof Array) {
|
||||
for (var i = 0; i < rootObject.length; i++)
|
||||
visitorCallback(i);
|
||||
|
||||
// For arrays, also respect toJSON property for custom mappings (fixes #278)
|
||||
if (typeof rootObject['toJSON'] == 'function')
|
||||
visitorCallback('toJSON');
|
||||
} else {
|
||||
for (var propertyName in rootObject) {
|
||||
visitorCallback(propertyName);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function objectLookup() {
|
||||
this.keys = [];
|
||||
this.values = [];
|
||||
};
|
||||
|
||||
objectLookup.prototype = {
|
||||
constructor: objectLookup,
|
||||
save: function(key, value) {
|
||||
var existingIndex = ko.utils.arrayIndexOf(this.keys, key);
|
||||
if (existingIndex >= 0)
|
||||
this.values[existingIndex] = value;
|
||||
else {
|
||||
this.keys.push(key);
|
||||
this.values.push(value);
|
||||
}
|
||||
},
|
||||
get: function(key) {
|
||||
var existingIndex = ko.utils.arrayIndexOf(this.keys, key);
|
||||
return (existingIndex >= 0) ? this.values[existingIndex] : undefined;
|
||||
}
|
||||
};
|
||||
})();
|
||||
|
||||
ko.exportSymbol('toJS', ko.toJS);
|
||||
ko.exportSymbol('toJSON', ko.toJSON);
|
86
bower_components/knockout/src/subscribables/observable.js
vendored
Normal file
86
bower_components/knockout/src/subscribables/observable.js
vendored
Normal file
@ -0,0 +1,86 @@
|
||||
var observableLatestValue = ko.utils.createSymbolOrString('_latestValue');
|
||||
|
||||
ko.observable = function (initialValue) {
|
||||
function observable() {
|
||||
if (arguments.length > 0) {
|
||||
// Write
|
||||
|
||||
// Ignore writes if the value hasn't changed
|
||||
if (observable.isDifferent(observable[observableLatestValue], arguments[0])) {
|
||||
observable.valueWillMutate();
|
||||
observable[observableLatestValue] = arguments[0];
|
||||
observable.valueHasMutated();
|
||||
}
|
||||
return this; // Permits chained assignments
|
||||
}
|
||||
else {
|
||||
// Read
|
||||
ko.dependencyDetection.registerDependency(observable); // The caller only needs to be notified of changes if they did a "read" operation
|
||||
return observable[observableLatestValue];
|
||||
}
|
||||
}
|
||||
|
||||
observable[observableLatestValue] = initialValue;
|
||||
|
||||
// Inherit from 'subscribable'
|
||||
if (!ko.utils.canSetPrototype) {
|
||||
// 'subscribable' won't be on the prototype chain unless we put it there directly
|
||||
ko.utils.extend(observable, ko.subscribable['fn']);
|
||||
}
|
||||
ko.subscribable['fn'].init(observable);
|
||||
|
||||
// Inherit from 'observable'
|
||||
ko.utils.setPrototypeOfOrExtend(observable, observableFn);
|
||||
|
||||
if (ko.options['deferUpdates']) {
|
||||
ko.extenders['deferred'](observable, true);
|
||||
}
|
||||
|
||||
return observable;
|
||||
}
|
||||
|
||||
// Define prototype for observables
|
||||
var observableFn = {
|
||||
'equalityComparer': valuesArePrimitiveAndEqual,
|
||||
peek: function() { return this[observableLatestValue]; },
|
||||
valueHasMutated: function () { this['notifySubscribers'](this[observableLatestValue]); },
|
||||
valueWillMutate: function () { this['notifySubscribers'](this[observableLatestValue], 'beforeChange'); }
|
||||
};
|
||||
|
||||
// Note that for browsers that don't support proto assignment, the
|
||||
// inheritance chain is created manually in the ko.observable constructor
|
||||
if (ko.utils.canSetPrototype) {
|
||||
ko.utils.setPrototypeOf(observableFn, ko.subscribable['fn']);
|
||||
}
|
||||
|
||||
var protoProperty = ko.observable.protoProperty = '__ko_proto__';
|
||||
observableFn[protoProperty] = ko.observable;
|
||||
|
||||
ko.hasPrototype = function(instance, prototype) {
|
||||
if ((instance === null) || (instance === undefined) || (instance[protoProperty] === undefined)) return false;
|
||||
if (instance[protoProperty] === prototype) return true;
|
||||
return ko.hasPrototype(instance[protoProperty], prototype); // Walk the prototype chain
|
||||
};
|
||||
|
||||
ko.isObservable = function (instance) {
|
||||
return ko.hasPrototype(instance, ko.observable);
|
||||
}
|
||||
ko.isWriteableObservable = function (instance) {
|
||||
// Observable
|
||||
if ((typeof instance == 'function') && instance[protoProperty] === ko.observable)
|
||||
return true;
|
||||
// Writeable dependent observable
|
||||
if ((typeof instance == 'function') && (instance[protoProperty] === ko.dependentObservable) && (instance.hasWriteFunction))
|
||||
return true;
|
||||
// Anything else
|
||||
return false;
|
||||
}
|
||||
|
||||
ko.exportSymbol('observable', ko.observable);
|
||||
ko.exportSymbol('isObservable', ko.isObservable);
|
||||
ko.exportSymbol('isWriteableObservable', ko.isWriteableObservable);
|
||||
ko.exportSymbol('isWritableObservable', ko.isWriteableObservable);
|
||||
ko.exportSymbol('observable.fn', observableFn);
|
||||
ko.exportProperty(observableFn, 'peek', observableFn.peek);
|
||||
ko.exportProperty(observableFn, 'valueHasMutated', observableFn.valueHasMutated);
|
||||
ko.exportProperty(observableFn, 'valueWillMutate', observableFn.valueWillMutate);
|
145
bower_components/knockout/src/subscribables/observableArray.changeTracking.js
vendored
Normal file
145
bower_components/knockout/src/subscribables/observableArray.changeTracking.js
vendored
Normal file
@ -0,0 +1,145 @@
|
||||
var arrayChangeEventName = 'arrayChange';
|
||||
ko.extenders['trackArrayChanges'] = function(target, options) {
|
||||
// Use the provided options--each call to trackArrayChanges overwrites the previously set options
|
||||
target.compareArrayOptions = {};
|
||||
if (options && typeof options == "object") {
|
||||
ko.utils.extend(target.compareArrayOptions, options);
|
||||
}
|
||||
target.compareArrayOptions['sparse'] = true;
|
||||
|
||||
// Only modify the target observable once
|
||||
if (target.cacheDiffForKnownOperation) {
|
||||
return;
|
||||
}
|
||||
var trackingChanges = false,
|
||||
cachedDiff = null,
|
||||
arrayChangeSubscription,
|
||||
pendingNotifications = 0,
|
||||
underlyingBeforeSubscriptionAddFunction = target.beforeSubscriptionAdd,
|
||||
underlyingAfterSubscriptionRemoveFunction = target.afterSubscriptionRemove;
|
||||
|
||||
// Watch "subscribe" calls, and for array change events, ensure change tracking is enabled
|
||||
target.beforeSubscriptionAdd = function (event) {
|
||||
if (underlyingBeforeSubscriptionAddFunction)
|
||||
underlyingBeforeSubscriptionAddFunction.call(target, event);
|
||||
if (event === arrayChangeEventName) {
|
||||
trackChanges();
|
||||
}
|
||||
};
|
||||
// Watch "dispose" calls, and for array change events, ensure change tracking is disabled when all are disposed
|
||||
target.afterSubscriptionRemove = function (event) {
|
||||
if (underlyingAfterSubscriptionRemoveFunction)
|
||||
underlyingAfterSubscriptionRemoveFunction.call(target, event);
|
||||
if (event === arrayChangeEventName && !target.hasSubscriptionsForEvent(arrayChangeEventName)) {
|
||||
arrayChangeSubscription.dispose();
|
||||
trackingChanges = false;
|
||||
}
|
||||
};
|
||||
|
||||
function trackChanges() {
|
||||
// Calling 'trackChanges' multiple times is the same as calling it once
|
||||
if (trackingChanges) {
|
||||
return;
|
||||
}
|
||||
|
||||
trackingChanges = true;
|
||||
|
||||
// Intercept "notifySubscribers" to track how many times it was called.
|
||||
var underlyingNotifySubscribersFunction = target['notifySubscribers'];
|
||||
target['notifySubscribers'] = function(valueToNotify, event) {
|
||||
if (!event || event === defaultEvent) {
|
||||
++pendingNotifications;
|
||||
}
|
||||
return underlyingNotifySubscribersFunction.apply(this, arguments);
|
||||
};
|
||||
|
||||
// Each time the array changes value, capture a clone so that on the next
|
||||
// change it's possible to produce a diff
|
||||
var previousContents = [].concat(target.peek() || []);
|
||||
cachedDiff = null;
|
||||
arrayChangeSubscription = target.subscribe(function(currentContents) {
|
||||
// Make a copy of the current contents and ensure it's an array
|
||||
currentContents = [].concat(currentContents || []);
|
||||
|
||||
// Compute the diff and issue notifications, but only if someone is listening
|
||||
if (target.hasSubscriptionsForEvent(arrayChangeEventName)) {
|
||||
var changes = getChanges(previousContents, currentContents);
|
||||
}
|
||||
|
||||
// Eliminate references to the old, removed items, so they can be GCed
|
||||
previousContents = currentContents;
|
||||
cachedDiff = null;
|
||||
pendingNotifications = 0;
|
||||
|
||||
if (changes && changes.length) {
|
||||
target['notifySubscribers'](changes, arrayChangeEventName);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function getChanges(previousContents, currentContents) {
|
||||
// We try to re-use cached diffs.
|
||||
// The scenarios where pendingNotifications > 1 are when using rate-limiting or the Deferred Updates
|
||||
// plugin, which without this check would not be compatible with arrayChange notifications. Normally,
|
||||
// notifications are issued immediately so we wouldn't be queueing up more than one.
|
||||
if (!cachedDiff || pendingNotifications > 1) {
|
||||
cachedDiff = ko.utils.compareArrays(previousContents, currentContents, target.compareArrayOptions);
|
||||
}
|
||||
|
||||
return cachedDiff;
|
||||
}
|
||||
|
||||
target.cacheDiffForKnownOperation = function(rawArray, operationName, args) {
|
||||
// Only run if we're currently tracking changes for this observable array
|
||||
// and there aren't any pending deferred notifications.
|
||||
if (!trackingChanges || pendingNotifications) {
|
||||
return;
|
||||
}
|
||||
var diff = [],
|
||||
arrayLength = rawArray.length,
|
||||
argsLength = args.length,
|
||||
offset = 0;
|
||||
|
||||
function pushDiff(status, value, index) {
|
||||
return diff[diff.length] = { 'status': status, 'value': value, 'index': index };
|
||||
}
|
||||
switch (operationName) {
|
||||
case 'push':
|
||||
offset = arrayLength;
|
||||
case 'unshift':
|
||||
for (var index = 0; index < argsLength; index++) {
|
||||
pushDiff('added', args[index], offset + index);
|
||||
}
|
||||
break;
|
||||
|
||||
case 'pop':
|
||||
offset = arrayLength - 1;
|
||||
case 'shift':
|
||||
if (arrayLength) {
|
||||
pushDiff('deleted', rawArray[offset], offset);
|
||||
}
|
||||
break;
|
||||
|
||||
case 'splice':
|
||||
// Negative start index means 'from end of array'. After that we clamp to [0...arrayLength].
|
||||
// See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice
|
||||
var startIndex = Math.min(Math.max(0, args[0] < 0 ? arrayLength + args[0] : args[0]), arrayLength),
|
||||
endDeleteIndex = argsLength === 1 ? arrayLength : Math.min(startIndex + (args[1] || 0), arrayLength),
|
||||
endAddIndex = startIndex + argsLength - 2,
|
||||
endIndex = Math.max(endDeleteIndex, endAddIndex),
|
||||
additions = [], deletions = [];
|
||||
for (var index = startIndex, argsIndex = 2; index < endIndex; ++index, ++argsIndex) {
|
||||
if (index < endDeleteIndex)
|
||||
deletions.push(pushDiff('deleted', rawArray[index], index));
|
||||
if (index < endAddIndex)
|
||||
additions.push(pushDiff('added', args[argsIndex], index));
|
||||
}
|
||||
ko.utils.findMovesInArrayComparison(deletions, additions);
|
||||
break;
|
||||
|
||||
default:
|
||||
return;
|
||||
}
|
||||
cachedDiff = diff;
|
||||
};
|
||||
};
|
123
bower_components/knockout/src/subscribables/observableArray.js
vendored
Normal file
123
bower_components/knockout/src/subscribables/observableArray.js
vendored
Normal file
@ -0,0 +1,123 @@
|
||||
ko.observableArray = function (initialValues) {
|
||||
initialValues = initialValues || [];
|
||||
|
||||
if (typeof initialValues != 'object' || !('length' in initialValues))
|
||||
throw new Error("The argument passed when initializing an observable array must be an array, or null, or undefined.");
|
||||
|
||||
var result = ko.observable(initialValues);
|
||||
ko.utils.setPrototypeOfOrExtend(result, ko.observableArray['fn']);
|
||||
return result.extend({'trackArrayChanges':true});
|
||||
};
|
||||
|
||||
ko.observableArray['fn'] = {
|
||||
'remove': function (valueOrPredicate) {
|
||||
var underlyingArray = this.peek();
|
||||
var removedValues = [];
|
||||
var predicate = typeof valueOrPredicate == "function" && !ko.isObservable(valueOrPredicate) ? valueOrPredicate : function (value) { return value === valueOrPredicate; };
|
||||
for (var i = 0; i < underlyingArray.length; i++) {
|
||||
var value = underlyingArray[i];
|
||||
if (predicate(value)) {
|
||||
if (removedValues.length === 0) {
|
||||
this.valueWillMutate();
|
||||
}
|
||||
removedValues.push(value);
|
||||
underlyingArray.splice(i, 1);
|
||||
i--;
|
||||
}
|
||||
}
|
||||
if (removedValues.length) {
|
||||
this.valueHasMutated();
|
||||
}
|
||||
return removedValues;
|
||||
},
|
||||
|
||||
'removeAll': function (arrayOfValues) {
|
||||
// If you passed zero args, we remove everything
|
||||
if (arrayOfValues === undefined) {
|
||||
var underlyingArray = this.peek();
|
||||
var allValues = underlyingArray.slice(0);
|
||||
this.valueWillMutate();
|
||||
underlyingArray.splice(0, underlyingArray.length);
|
||||
this.valueHasMutated();
|
||||
return allValues;
|
||||
}
|
||||
// If you passed an arg, we interpret it as an array of entries to remove
|
||||
if (!arrayOfValues)
|
||||
return [];
|
||||
return this['remove'](function (value) {
|
||||
return ko.utils.arrayIndexOf(arrayOfValues, value) >= 0;
|
||||
});
|
||||
},
|
||||
|
||||
'destroy': function (valueOrPredicate) {
|
||||
var underlyingArray = this.peek();
|
||||
var predicate = typeof valueOrPredicate == "function" && !ko.isObservable(valueOrPredicate) ? valueOrPredicate : function (value) { return value === valueOrPredicate; };
|
||||
this.valueWillMutate();
|
||||
for (var i = underlyingArray.length - 1; i >= 0; i--) {
|
||||
var value = underlyingArray[i];
|
||||
if (predicate(value))
|
||||
underlyingArray[i]["_destroy"] = true;
|
||||
}
|
||||
this.valueHasMutated();
|
||||
},
|
||||
|
||||
'destroyAll': function (arrayOfValues) {
|
||||
// If you passed zero args, we destroy everything
|
||||
if (arrayOfValues === undefined)
|
||||
return this['destroy'](function() { return true });
|
||||
|
||||
// If you passed an arg, we interpret it as an array of entries to destroy
|
||||
if (!arrayOfValues)
|
||||
return [];
|
||||
return this['destroy'](function (value) {
|
||||
return ko.utils.arrayIndexOf(arrayOfValues, value) >= 0;
|
||||
});
|
||||
},
|
||||
|
||||
'indexOf': function (item) {
|
||||
var underlyingArray = this();
|
||||
return ko.utils.arrayIndexOf(underlyingArray, item);
|
||||
},
|
||||
|
||||
'replace': function(oldItem, newItem) {
|
||||
var index = this['indexOf'](oldItem);
|
||||
if (index >= 0) {
|
||||
this.valueWillMutate();
|
||||
this.peek()[index] = newItem;
|
||||
this.valueHasMutated();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Note that for browsers that don't support proto assignment, the
|
||||
// inheritance chain is created manually in the ko.observableArray constructor
|
||||
if (ko.utils.canSetPrototype) {
|
||||
ko.utils.setPrototypeOf(ko.observableArray['fn'], ko.observable['fn']);
|
||||
}
|
||||
|
||||
// Populate ko.observableArray.fn with read/write functions from native arrays
|
||||
// Important: Do not add any additional functions here that may reasonably be used to *read* data from the array
|
||||
// because we'll eval them without causing subscriptions, so ko.computed output could end up getting stale
|
||||
ko.utils.arrayForEach(["pop", "push", "reverse", "shift", "sort", "splice", "unshift"], function (methodName) {
|
||||
ko.observableArray['fn'][methodName] = function () {
|
||||
// Use "peek" to avoid creating a subscription in any computed that we're executing in the context of
|
||||
// (for consistency with mutating regular observables)
|
||||
var underlyingArray = this.peek();
|
||||
this.valueWillMutate();
|
||||
this.cacheDiffForKnownOperation(underlyingArray, methodName, arguments);
|
||||
var methodCallResult = underlyingArray[methodName].apply(underlyingArray, arguments);
|
||||
this.valueHasMutated();
|
||||
// The native sort and reverse methods return a reference to the array, but it makes more sense to return the observable array instead.
|
||||
return methodCallResult === underlyingArray ? this : methodCallResult;
|
||||
};
|
||||
});
|
||||
|
||||
// Populate ko.observableArray.fn with read-only functions from native arrays
|
||||
ko.utils.arrayForEach(["slice"], function (methodName) {
|
||||
ko.observableArray['fn'][methodName] = function () {
|
||||
var underlyingArray = this();
|
||||
return underlyingArray[methodName].apply(underlyingArray, arguments);
|
||||
};
|
||||
});
|
||||
|
||||
ko.exportSymbol('observableArray', ko.observableArray);
|
171
bower_components/knockout/src/subscribables/subscribable.js
vendored
Normal file
171
bower_components/knockout/src/subscribables/subscribable.js
vendored
Normal file
@ -0,0 +1,171 @@
|
||||
|
||||
ko.subscription = function (target, callback, disposeCallback) {
|
||||
this._target = target;
|
||||
this.callback = callback;
|
||||
this.disposeCallback = disposeCallback;
|
||||
this.isDisposed = false;
|
||||
ko.exportProperty(this, 'dispose', this.dispose);
|
||||
};
|
||||
ko.subscription.prototype.dispose = function () {
|
||||
this.isDisposed = true;
|
||||
this.disposeCallback();
|
||||
};
|
||||
|
||||
ko.subscribable = function () {
|
||||
ko.utils.setPrototypeOfOrExtend(this, ko_subscribable_fn);
|
||||
ko_subscribable_fn.init(this);
|
||||
}
|
||||
|
||||
var defaultEvent = "change";
|
||||
|
||||
// Moved out of "limit" to avoid the extra closure
|
||||
function limitNotifySubscribers(value, event) {
|
||||
if (!event || event === defaultEvent) {
|
||||
this._limitChange(value);
|
||||
} else if (event === 'beforeChange') {
|
||||
this._limitBeforeChange(value);
|
||||
} else {
|
||||
this._origNotifySubscribers(value, event);
|
||||
}
|
||||
}
|
||||
|
||||
var ko_subscribable_fn = {
|
||||
init: function(instance) {
|
||||
instance._subscriptions = {};
|
||||
instance._versionNumber = 1;
|
||||
},
|
||||
|
||||
subscribe: function (callback, callbackTarget, event) {
|
||||
var self = this;
|
||||
|
||||
event = event || defaultEvent;
|
||||
var boundCallback = callbackTarget ? callback.bind(callbackTarget) : callback;
|
||||
|
||||
var subscription = new ko.subscription(self, boundCallback, function () {
|
||||
ko.utils.arrayRemoveItem(self._subscriptions[event], subscription);
|
||||
if (self.afterSubscriptionRemove)
|
||||
self.afterSubscriptionRemove(event);
|
||||
});
|
||||
|
||||
if (self.beforeSubscriptionAdd)
|
||||
self.beforeSubscriptionAdd(event);
|
||||
|
||||
if (!self._subscriptions[event])
|
||||
self._subscriptions[event] = [];
|
||||
self._subscriptions[event].push(subscription);
|
||||
|
||||
return subscription;
|
||||
},
|
||||
|
||||
"notifySubscribers": function (valueToNotify, event) {
|
||||
event = event || defaultEvent;
|
||||
if (event === defaultEvent) {
|
||||
this.updateVersion();
|
||||
}
|
||||
if (this.hasSubscriptionsForEvent(event)) {
|
||||
try {
|
||||
ko.dependencyDetection.begin(); // Begin suppressing dependency detection (by setting the top frame to undefined)
|
||||
for (var a = this._subscriptions[event].slice(0), i = 0, subscription; subscription = a[i]; ++i) {
|
||||
// In case a subscription was disposed during the arrayForEach cycle, check
|
||||
// for isDisposed on each subscription before invoking its callback
|
||||
if (!subscription.isDisposed)
|
||||
subscription.callback(valueToNotify);
|
||||
}
|
||||
} finally {
|
||||
ko.dependencyDetection.end(); // End suppressing dependency detection
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
getVersion: function () {
|
||||
return this._versionNumber;
|
||||
},
|
||||
|
||||
hasChanged: function (versionToCheck) {
|
||||
return this.getVersion() !== versionToCheck;
|
||||
},
|
||||
|
||||
updateVersion: function () {
|
||||
++this._versionNumber;
|
||||
},
|
||||
|
||||
limit: function(limitFunction) {
|
||||
var self = this, selfIsObservable = ko.isObservable(self),
|
||||
ignoreBeforeChange, previousValue, pendingValue, beforeChange = 'beforeChange';
|
||||
|
||||
if (!self._origNotifySubscribers) {
|
||||
self._origNotifySubscribers = self["notifySubscribers"];
|
||||
self["notifySubscribers"] = limitNotifySubscribers;
|
||||
}
|
||||
|
||||
var finish = limitFunction(function() {
|
||||
self._notificationIsPending = false;
|
||||
|
||||
// If an observable provided a reference to itself, access it to get the latest value.
|
||||
// This allows computed observables to delay calculating their value until needed.
|
||||
if (selfIsObservable && pendingValue === self) {
|
||||
pendingValue = self();
|
||||
}
|
||||
ignoreBeforeChange = false;
|
||||
if (self.isDifferent(previousValue, pendingValue)) {
|
||||
self._origNotifySubscribers(previousValue = pendingValue);
|
||||
}
|
||||
});
|
||||
|
||||
self._limitChange = function(value) {
|
||||
self._notificationIsPending = ignoreBeforeChange = true;
|
||||
pendingValue = value;
|
||||
finish();
|
||||
};
|
||||
self._limitBeforeChange = function(value) {
|
||||
if (!ignoreBeforeChange) {
|
||||
previousValue = value;
|
||||
self._origNotifySubscribers(value, beforeChange);
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
hasSubscriptionsForEvent: function(event) {
|
||||
return this._subscriptions[event] && this._subscriptions[event].length;
|
||||
},
|
||||
|
||||
getSubscriptionsCount: function (event) {
|
||||
if (event) {
|
||||
return this._subscriptions[event] && this._subscriptions[event].length || 0;
|
||||
} else {
|
||||
var total = 0;
|
||||
ko.utils.objectForEach(this._subscriptions, function(eventName, subscriptions) {
|
||||
if (eventName !== 'dirty')
|
||||
total += subscriptions.length;
|
||||
});
|
||||
return total;
|
||||
}
|
||||
},
|
||||
|
||||
isDifferent: function(oldValue, newValue) {
|
||||
return !this['equalityComparer'] || !this['equalityComparer'](oldValue, newValue);
|
||||
},
|
||||
|
||||
extend: applyExtenders
|
||||
};
|
||||
|
||||
ko.exportProperty(ko_subscribable_fn, 'subscribe', ko_subscribable_fn.subscribe);
|
||||
ko.exportProperty(ko_subscribable_fn, 'extend', ko_subscribable_fn.extend);
|
||||
ko.exportProperty(ko_subscribable_fn, 'getSubscriptionsCount', ko_subscribable_fn.getSubscriptionsCount);
|
||||
|
||||
// For browsers that support proto assignment, we overwrite the prototype of each
|
||||
// observable instance. Since observables are functions, we need Function.prototype
|
||||
// to still be in the prototype chain.
|
||||
if (ko.utils.canSetPrototype) {
|
||||
ko.utils.setPrototypeOf(ko_subscribable_fn, Function.prototype);
|
||||
}
|
||||
|
||||
ko.subscribable['fn'] = ko_subscribable_fn;
|
||||
|
||||
|
||||
ko.isSubscribable = function (instance) {
|
||||
return instance != null && typeof instance.subscribe == "function" && typeof instance["notifySubscribers"] == "function";
|
||||
};
|
||||
|
||||
ko.exportSymbol('subscribable', ko.subscribable);
|
||||
ko.exportSymbol('isSubscribable', ko.isSubscribable);
|
108
bower_components/knockout/src/tasks.js
vendored
Normal file
108
bower_components/knockout/src/tasks.js
vendored
Normal file
@ -0,0 +1,108 @@
|
||||
ko.tasks = (function () {
|
||||
var scheduler,
|
||||
taskQueue = [],
|
||||
taskQueueLength = 0,
|
||||
nextHandle = 1,
|
||||
nextIndexToProcess = 0;
|
||||
|
||||
if (window['MutationObserver']) {
|
||||
// Chrome 27+, Firefox 14+, IE 11+, Opera 15+, Safari 6.1+
|
||||
// From https://github.com/petkaantonov/bluebird * Copyright (c) 2014 Petka Antonov * License: MIT
|
||||
scheduler = (function (callback) {
|
||||
var div = document.createElement("div");
|
||||
new MutationObserver(callback).observe(div, {attributes: true});
|
||||
return function () { div.classList.toggle("foo"); };
|
||||
})(scheduledProcess);
|
||||
} else if (document && "onreadystatechange" in document.createElement("script")) {
|
||||
// IE 6-10
|
||||
// From https://github.com/YuzuJS/setImmediate * Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, and Domenic Denicola * License: MIT
|
||||
scheduler = function (callback) {
|
||||
var script = document.createElement("script");
|
||||
script.onreadystatechange = function () {
|
||||
script.onreadystatechange = null;
|
||||
document.documentElement.removeChild(script);
|
||||
script = null;
|
||||
callback();
|
||||
};
|
||||
document.documentElement.appendChild(script);
|
||||
};
|
||||
} else {
|
||||
scheduler = function (callback) {
|
||||
setTimeout(callback, 0);
|
||||
};
|
||||
}
|
||||
|
||||
function processTasks() {
|
||||
if (taskQueueLength) {
|
||||
// Each mark represents the end of a logical group of tasks and the number of these groups is
|
||||
// limited to prevent unchecked recursion.
|
||||
var mark = taskQueueLength, countMarks = 0;
|
||||
|
||||
// nextIndexToProcess keeps track of where we are in the queue; processTasks can be called recursively without issue
|
||||
for (var task; nextIndexToProcess < taskQueueLength; ) {
|
||||
if (task = taskQueue[nextIndexToProcess++]) {
|
||||
if (nextIndexToProcess > mark) {
|
||||
if (++countMarks >= 5000) {
|
||||
nextIndexToProcess = taskQueueLength; // skip all tasks remaining in the queue since any of them could be causing the recursion
|
||||
ko.utils.deferError(Error("'Too much recursion' after processing " + countMarks + " task groups."));
|
||||
break;
|
||||
}
|
||||
mark = taskQueueLength;
|
||||
}
|
||||
try {
|
||||
task();
|
||||
} catch (ex) {
|
||||
ko.utils.deferError(ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function scheduledProcess() {
|
||||
processTasks();
|
||||
|
||||
// Reset the queue
|
||||
nextIndexToProcess = taskQueueLength = taskQueue.length = 0;
|
||||
}
|
||||
|
||||
function scheduleTaskProcessing() {
|
||||
ko.tasks['scheduler'](scheduledProcess);
|
||||
}
|
||||
|
||||
var tasks = {
|
||||
'scheduler': scheduler, // Allow overriding the scheduler
|
||||
|
||||
schedule: function (func) {
|
||||
if (!taskQueueLength) {
|
||||
scheduleTaskProcessing();
|
||||
}
|
||||
|
||||
taskQueue[taskQueueLength++] = func;
|
||||
return nextHandle++;
|
||||
},
|
||||
|
||||
cancel: function (handle) {
|
||||
var index = handle - (nextHandle - taskQueueLength);
|
||||
if (index >= nextIndexToProcess && index < taskQueueLength) {
|
||||
taskQueue[index] = null;
|
||||
}
|
||||
},
|
||||
|
||||
// For testing only: reset the queue and return the previous queue length
|
||||
'resetForTesting': function () {
|
||||
var length = taskQueueLength - nextIndexToProcess;
|
||||
nextIndexToProcess = taskQueueLength = taskQueue.length = 0;
|
||||
return length;
|
||||
},
|
||||
|
||||
runEarly: processTasks
|
||||
};
|
||||
|
||||
return tasks;
|
||||
})();
|
||||
|
||||
ko.exportSymbol('tasks', ko.tasks);
|
||||
ko.exportSymbol('tasks.schedule', ko.tasks.schedule);
|
||||
//ko.exportSymbol('tasks.cancel', ko.tasks.cancel); "cancel" isn't minified
|
||||
ko.exportSymbol('tasks.runEarly', ko.tasks.runEarly);
|
84
bower_components/knockout/src/templating/jquery.tmpl/jqueryTmplTemplateEngine.js
vendored
Normal file
84
bower_components/knockout/src/templating/jquery.tmpl/jqueryTmplTemplateEngine.js
vendored
Normal file
@ -0,0 +1,84 @@
|
||||
(function() {
|
||||
ko.jqueryTmplTemplateEngine = function () {
|
||||
// Detect which version of jquery-tmpl you're using. Unfortunately jquery-tmpl
|
||||
// doesn't expose a version number, so we have to infer it.
|
||||
// Note that as of Knockout 1.3, we only support jQuery.tmpl 1.0.0pre and later,
|
||||
// which KO internally refers to as version "2", so older versions are no longer detected.
|
||||
var jQueryTmplVersion = this.jQueryTmplVersion = (function() {
|
||||
if (!jQueryInstance || !(jQueryInstance['tmpl']))
|
||||
return 0;
|
||||
// Since it exposes no official version number, we use our own numbering system. To be updated as jquery-tmpl evolves.
|
||||
try {
|
||||
if (jQueryInstance['tmpl']['tag']['tmpl']['open'].toString().indexOf('__') >= 0) {
|
||||
// Since 1.0.0pre, custom tags should append markup to an array called "__"
|
||||
return 2; // Final version of jquery.tmpl
|
||||
}
|
||||
} catch(ex) { /* Apparently not the version we were looking for */ }
|
||||
|
||||
return 1; // Any older version that we don't support
|
||||
})();
|
||||
|
||||
function ensureHasReferencedJQueryTemplates() {
|
||||
if (jQueryTmplVersion < 2)
|
||||
throw new Error("Your version of jQuery.tmpl is too old. Please upgrade to jQuery.tmpl 1.0.0pre or later.");
|
||||
}
|
||||
|
||||
function executeTemplate(compiledTemplate, data, jQueryTemplateOptions) {
|
||||
return jQueryInstance['tmpl'](compiledTemplate, data, jQueryTemplateOptions);
|
||||
}
|
||||
|
||||
this['renderTemplateSource'] = function(templateSource, bindingContext, options, templateDocument) {
|
||||
templateDocument = templateDocument || document;
|
||||
options = options || {};
|
||||
ensureHasReferencedJQueryTemplates();
|
||||
|
||||
// Ensure we have stored a precompiled version of this template (don't want to reparse on every render)
|
||||
var precompiled = templateSource['data']('precompiled');
|
||||
if (!precompiled) {
|
||||
var templateText = templateSource['text']() || "";
|
||||
// Wrap in "with($whatever.koBindingContext) { ... }"
|
||||
templateText = "{{ko_with $item.koBindingContext}}" + templateText + "{{/ko_with}}";
|
||||
|
||||
precompiled = jQueryInstance['template'](null, templateText);
|
||||
templateSource['data']('precompiled', precompiled);
|
||||
}
|
||||
|
||||
var data = [bindingContext['$data']]; // Prewrap the data in an array to stop jquery.tmpl from trying to unwrap any arrays
|
||||
var jQueryTemplateOptions = jQueryInstance['extend']({ 'koBindingContext': bindingContext }, options['templateOptions']);
|
||||
|
||||
var resultNodes = executeTemplate(precompiled, data, jQueryTemplateOptions);
|
||||
resultNodes['appendTo'](templateDocument.createElement("div")); // Using "appendTo" forces jQuery/jQuery.tmpl to perform necessary cleanup work
|
||||
|
||||
jQueryInstance['fragments'] = {}; // Clear jQuery's fragment cache to avoid a memory leak after a large number of template renders
|
||||
return resultNodes;
|
||||
};
|
||||
|
||||
this['createJavaScriptEvaluatorBlock'] = function(script) {
|
||||
return "{{ko_code ((function() { return " + script + " })()) }}";
|
||||
};
|
||||
|
||||
this['addTemplate'] = function(templateName, templateMarkup) {
|
||||
document.write("<script type='text/html' id='" + templateName + "'>" + templateMarkup + "<" + "/script>");
|
||||
};
|
||||
|
||||
if (jQueryTmplVersion > 0) {
|
||||
jQueryInstance['tmpl']['tag']['ko_code'] = {
|
||||
open: "__.push($1 || '');"
|
||||
};
|
||||
jQueryInstance['tmpl']['tag']['ko_with'] = {
|
||||
open: "with($1) {",
|
||||
close: "} "
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
ko.jqueryTmplTemplateEngine.prototype = new ko.templateEngine();
|
||||
ko.jqueryTmplTemplateEngine.prototype.constructor = ko.jqueryTmplTemplateEngine;
|
||||
|
||||
// Use this one by default *only if jquery.tmpl is referenced*
|
||||
var jqueryTmplTemplateEngineInstance = new ko.jqueryTmplTemplateEngine();
|
||||
if (jqueryTmplTemplateEngineInstance.jQueryTmplVersion > 0)
|
||||
ko.setTemplateEngine(jqueryTmplTemplateEngineInstance);
|
||||
|
||||
ko.exportSymbol('jqueryTmplTemplateEngine', ko.jqueryTmplTemplateEngine);
|
||||
})();
|
23
bower_components/knockout/src/templating/native/nativeTemplateEngine.js
vendored
Normal file
23
bower_components/knockout/src/templating/native/nativeTemplateEngine.js
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
ko.nativeTemplateEngine = function () {
|
||||
this['allowTemplateRewriting'] = false;
|
||||
}
|
||||
|
||||
ko.nativeTemplateEngine.prototype = new ko.templateEngine();
|
||||
ko.nativeTemplateEngine.prototype.constructor = ko.nativeTemplateEngine;
|
||||
ko.nativeTemplateEngine.prototype['renderTemplateSource'] = function (templateSource, bindingContext, options, templateDocument) {
|
||||
var useNodesIfAvailable = !(ko.utils.ieVersion < 9), // IE<9 cloneNode doesn't work properly
|
||||
templateNodesFunc = useNodesIfAvailable ? templateSource['nodes'] : null,
|
||||
templateNodes = templateNodesFunc ? templateSource['nodes']() : null;
|
||||
|
||||
if (templateNodes) {
|
||||
return ko.utils.makeArray(templateNodes.cloneNode(true).childNodes);
|
||||
} else {
|
||||
var templateText = templateSource['text']();
|
||||
return ko.utils.parseHtmlFragment(templateText, templateDocument);
|
||||
}
|
||||
};
|
||||
|
||||
ko.nativeTemplateEngine.instance = new ko.nativeTemplateEngine();
|
||||
ko.setTemplateEngine(ko.nativeTemplateEngine.instance);
|
||||
|
||||
ko.exportSymbol('nativeTemplateEngine', ko.nativeTemplateEngine);
|
72
bower_components/knockout/src/templating/templateEngine.js
vendored
Normal file
72
bower_components/knockout/src/templating/templateEngine.js
vendored
Normal file
@ -0,0 +1,72 @@
|
||||
// If you want to make a custom template engine,
|
||||
//
|
||||
// [1] Inherit from this class (like ko.nativeTemplateEngine does)
|
||||
// [2] Override 'renderTemplateSource', supplying a function with this signature:
|
||||
//
|
||||
// function (templateSource, bindingContext, options) {
|
||||
// // - templateSource.text() is the text of the template you should render
|
||||
// // - bindingContext.$data is the data you should pass into the template
|
||||
// // - you might also want to make bindingContext.$parent, bindingContext.$parents,
|
||||
// // and bindingContext.$root available in the template too
|
||||
// // - options gives you access to any other properties set on "data-bind: { template: options }"
|
||||
// // - templateDocument is the document object of the template
|
||||
// //
|
||||
// // Return value: an array of DOM nodes
|
||||
// }
|
||||
//
|
||||
// [3] Override 'createJavaScriptEvaluatorBlock', supplying a function with this signature:
|
||||
//
|
||||
// function (script) {
|
||||
// // Return value: Whatever syntax means "Evaluate the JavaScript statement 'script' and output the result"
|
||||
// // For example, the jquery.tmpl template engine converts 'someScript' to '${ someScript }'
|
||||
// }
|
||||
//
|
||||
// This is only necessary if you want to allow data-bind attributes to reference arbitrary template variables.
|
||||
// If you don't want to allow that, you can set the property 'allowTemplateRewriting' to false (like ko.nativeTemplateEngine does)
|
||||
// and then you don't need to override 'createJavaScriptEvaluatorBlock'.
|
||||
|
||||
ko.templateEngine = function () { };
|
||||
|
||||
ko.templateEngine.prototype['renderTemplateSource'] = function (templateSource, bindingContext, options, templateDocument) {
|
||||
throw new Error("Override renderTemplateSource");
|
||||
};
|
||||
|
||||
ko.templateEngine.prototype['createJavaScriptEvaluatorBlock'] = function (script) {
|
||||
throw new Error("Override createJavaScriptEvaluatorBlock");
|
||||
};
|
||||
|
||||
ko.templateEngine.prototype['makeTemplateSource'] = function(template, templateDocument) {
|
||||
// Named template
|
||||
if (typeof template == "string") {
|
||||
templateDocument = templateDocument || document;
|
||||
var elem = templateDocument.getElementById(template);
|
||||
if (!elem)
|
||||
throw new Error("Cannot find template with ID " + template);
|
||||
return new ko.templateSources.domElement(elem);
|
||||
} else if ((template.nodeType == 1) || (template.nodeType == 8)) {
|
||||
// Anonymous template
|
||||
return new ko.templateSources.anonymousTemplate(template);
|
||||
} else
|
||||
throw new Error("Unknown template type: " + template);
|
||||
};
|
||||
|
||||
ko.templateEngine.prototype['renderTemplate'] = function (template, bindingContext, options, templateDocument) {
|
||||
var templateSource = this['makeTemplateSource'](template, templateDocument);
|
||||
return this['renderTemplateSource'](templateSource, bindingContext, options, templateDocument);
|
||||
};
|
||||
|
||||
ko.templateEngine.prototype['isTemplateRewritten'] = function (template, templateDocument) {
|
||||
// Skip rewriting if requested
|
||||
if (this['allowTemplateRewriting'] === false)
|
||||
return true;
|
||||
return this['makeTemplateSource'](template, templateDocument)['data']("isRewritten");
|
||||
};
|
||||
|
||||
ko.templateEngine.prototype['rewriteTemplate'] = function (template, rewriterCallback, templateDocument) {
|
||||
var templateSource = this['makeTemplateSource'](template, templateDocument);
|
||||
var rewritten = rewriterCallback(templateSource['text']());
|
||||
templateSource['text'](rewritten);
|
||||
templateSource['data']("isRewritten", true);
|
||||
};
|
||||
|
||||
ko.exportSymbol('templateEngine', ko.templateEngine);
|
66
bower_components/knockout/src/templating/templateRewriting.js
vendored
Normal file
66
bower_components/knockout/src/templating/templateRewriting.js
vendored
Normal file
@ -0,0 +1,66 @@
|
||||
|
||||
ko.templateRewriting = (function () {
|
||||
var memoizeDataBindingAttributeSyntaxRegex = /(<([a-z]+\d*)(?:\s+(?!data-bind\s*=\s*)[a-z0-9\-]+(?:=(?:\"[^\"]*\"|\'[^\']*\'|[^>]*))?)*\s+)data-bind\s*=\s*(["'])([\s\S]*?)\3/gi;
|
||||
var memoizeVirtualContainerBindingSyntaxRegex = /<!--\s*ko\b\s*([\s\S]*?)\s*-->/g;
|
||||
|
||||
function validateDataBindValuesForRewriting(keyValueArray) {
|
||||
var allValidators = ko.expressionRewriting.bindingRewriteValidators;
|
||||
for (var i = 0; i < keyValueArray.length; i++) {
|
||||
var key = keyValueArray[i]['key'];
|
||||
if (allValidators.hasOwnProperty(key)) {
|
||||
var validator = allValidators[key];
|
||||
|
||||
if (typeof validator === "function") {
|
||||
var possibleErrorMessage = validator(keyValueArray[i]['value']);
|
||||
if (possibleErrorMessage)
|
||||
throw new Error(possibleErrorMessage);
|
||||
} else if (!validator) {
|
||||
throw new Error("This template engine does not support the '" + key + "' binding within its templates");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function constructMemoizedTagReplacement(dataBindAttributeValue, tagToRetain, nodeName, templateEngine) {
|
||||
var dataBindKeyValueArray = ko.expressionRewriting.parseObjectLiteral(dataBindAttributeValue);
|
||||
validateDataBindValuesForRewriting(dataBindKeyValueArray);
|
||||
var rewrittenDataBindAttributeValue = ko.expressionRewriting.preProcessBindings(dataBindKeyValueArray, {'valueAccessors':true});
|
||||
|
||||
// For no obvious reason, Opera fails to evaluate rewrittenDataBindAttributeValue unless it's wrapped in an additional
|
||||
// anonymous function, even though Opera's built-in debugger can evaluate it anyway. No other browser requires this
|
||||
// extra indirection.
|
||||
var applyBindingsToNextSiblingScript =
|
||||
"ko.__tr_ambtns(function($context,$element){return(function(){return{ " + rewrittenDataBindAttributeValue + " } })()},'" + nodeName.toLowerCase() + "')";
|
||||
return templateEngine['createJavaScriptEvaluatorBlock'](applyBindingsToNextSiblingScript) + tagToRetain;
|
||||
}
|
||||
|
||||
return {
|
||||
ensureTemplateIsRewritten: function (template, templateEngine, templateDocument) {
|
||||
if (!templateEngine['isTemplateRewritten'](template, templateDocument))
|
||||
templateEngine['rewriteTemplate'](template, function (htmlString) {
|
||||
return ko.templateRewriting.memoizeBindingAttributeSyntax(htmlString, templateEngine);
|
||||
}, templateDocument);
|
||||
},
|
||||
|
||||
memoizeBindingAttributeSyntax: function (htmlString, templateEngine) {
|
||||
return htmlString.replace(memoizeDataBindingAttributeSyntaxRegex, function () {
|
||||
return constructMemoizedTagReplacement(/* dataBindAttributeValue: */ arguments[4], /* tagToRetain: */ arguments[1], /* nodeName: */ arguments[2], templateEngine);
|
||||
}).replace(memoizeVirtualContainerBindingSyntaxRegex, function() {
|
||||
return constructMemoizedTagReplacement(/* dataBindAttributeValue: */ arguments[1], /* tagToRetain: */ "<!-- ko -->", /* nodeName: */ "#comment", templateEngine);
|
||||
});
|
||||
},
|
||||
|
||||
applyMemoizedBindingsToNextSibling: function (bindings, nodeName) {
|
||||
return ko.memoization.memoize(function (domNode, bindingContext) {
|
||||
var nodeToBind = domNode.nextSibling;
|
||||
if (nodeToBind && nodeToBind.nodeName.toLowerCase() === nodeName) {
|
||||
ko.applyBindingAccessorsToNode(nodeToBind, bindings, bindingContext);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
})();
|
||||
|
||||
|
||||
// Exported only because it has to be referenced by string lookup from within rewritten template
|
||||
ko.exportSymbol('__tr_ambtns', ko.templateRewriting.applyMemoizedBindingsToNextSibling);
|
123
bower_components/knockout/src/templating/templateSources.js
vendored
Normal file
123
bower_components/knockout/src/templating/templateSources.js
vendored
Normal file
@ -0,0 +1,123 @@
|
||||
(function() {
|
||||
// A template source represents a read/write way of accessing a template. This is to eliminate the need for template loading/saving
|
||||
// logic to be duplicated in every template engine (and means they can all work with anonymous templates, etc.)
|
||||
//
|
||||
// Two are provided by default:
|
||||
// 1. ko.templateSources.domElement - reads/writes the text content of an arbitrary DOM element
|
||||
// 2. ko.templateSources.anonymousElement - uses ko.utils.domData to read/write text *associated* with the DOM element, but
|
||||
// without reading/writing the actual element text content, since it will be overwritten
|
||||
// with the rendered template output.
|
||||
// You can implement your own template source if you want to fetch/store templates somewhere other than in DOM elements.
|
||||
// Template sources need to have the following functions:
|
||||
// text() - returns the template text from your storage location
|
||||
// text(value) - writes the supplied template text to your storage location
|
||||
// data(key) - reads values stored using data(key, value) - see below
|
||||
// data(key, value) - associates "value" with this template and the key "key". Is used to store information like "isRewritten".
|
||||
//
|
||||
// Optionally, template sources can also have the following functions:
|
||||
// nodes() - returns a DOM element containing the nodes of this template, where available
|
||||
// nodes(value) - writes the given DOM element to your storage location
|
||||
// If a DOM element is available for a given template source, template engines are encouraged to use it in preference over text()
|
||||
// for improved speed. However, all templateSources must supply text() even if they don't supply nodes().
|
||||
//
|
||||
// Once you've implemented a templateSource, make your template engine use it by subclassing whatever template engine you were
|
||||
// using and overriding "makeTemplateSource" to return an instance of your custom template source.
|
||||
|
||||
ko.templateSources = {};
|
||||
|
||||
// ---- ko.templateSources.domElement -----
|
||||
|
||||
// template types
|
||||
var templateScript = 1,
|
||||
templateTextArea = 2,
|
||||
templateTemplate = 3,
|
||||
templateElement = 4;
|
||||
|
||||
ko.templateSources.domElement = function(element) {
|
||||
this.domElement = element;
|
||||
|
||||
if (element) {
|
||||
var tagNameLower = ko.utils.tagNameLower(element);
|
||||
this.templateType =
|
||||
tagNameLower === "script" ? templateScript :
|
||||
tagNameLower === "textarea" ? templateTextArea :
|
||||
// For browsers with proper <template> element support, where the .content property gives a document fragment
|
||||
tagNameLower == "template" && element.content && element.content.nodeType === 11 ? templateTemplate :
|
||||
templateElement;
|
||||
}
|
||||
}
|
||||
|
||||
ko.templateSources.domElement.prototype['text'] = function(/* valueToWrite */) {
|
||||
var elemContentsProperty = this.templateType === templateScript ? "text"
|
||||
: this.templateType === templateTextArea ? "value"
|
||||
: "innerHTML";
|
||||
|
||||
if (arguments.length == 0) {
|
||||
return this.domElement[elemContentsProperty];
|
||||
} else {
|
||||
var valueToWrite = arguments[0];
|
||||
if (elemContentsProperty === "innerHTML")
|
||||
ko.utils.setHtml(this.domElement, valueToWrite);
|
||||
else
|
||||
this.domElement[elemContentsProperty] = valueToWrite;
|
||||
}
|
||||
};
|
||||
|
||||
var dataDomDataPrefix = ko.utils.domData.nextKey() + "_";
|
||||
ko.templateSources.domElement.prototype['data'] = function(key /*, valueToWrite */) {
|
||||
if (arguments.length === 1) {
|
||||
return ko.utils.domData.get(this.domElement, dataDomDataPrefix + key);
|
||||
} else {
|
||||
ko.utils.domData.set(this.domElement, dataDomDataPrefix + key, arguments[1]);
|
||||
}
|
||||
};
|
||||
|
||||
var templatesDomDataKey = ko.utils.domData.nextKey();
|
||||
function getTemplateDomData(element) {
|
||||
return ko.utils.domData.get(element, templatesDomDataKey) || {};
|
||||
}
|
||||
function setTemplateDomData(element, data) {
|
||||
ko.utils.domData.set(element, templatesDomDataKey, data);
|
||||
}
|
||||
|
||||
ko.templateSources.domElement.prototype['nodes'] = function(/* valueToWrite */) {
|
||||
var element = this.domElement;
|
||||
if (arguments.length == 0) {
|
||||
var templateData = getTemplateDomData(element),
|
||||
containerData = templateData.containerData;
|
||||
return containerData || (
|
||||
this.templateType === templateTemplate ? element.content :
|
||||
this.templateType === templateElement ? element :
|
||||
undefined);
|
||||
} else {
|
||||
var valueToWrite = arguments[0];
|
||||
setTemplateDomData(element, {containerData: valueToWrite});
|
||||
}
|
||||
};
|
||||
|
||||
// ---- ko.templateSources.anonymousTemplate -----
|
||||
// Anonymous templates are normally saved/retrieved as DOM nodes through "nodes".
|
||||
// For compatibility, you can also read "text"; it will be serialized from the nodes on demand.
|
||||
// Writing to "text" is still supported, but then the template data will not be available as DOM nodes.
|
||||
|
||||
ko.templateSources.anonymousTemplate = function(element) {
|
||||
this.domElement = element;
|
||||
}
|
||||
ko.templateSources.anonymousTemplate.prototype = new ko.templateSources.domElement();
|
||||
ko.templateSources.anonymousTemplate.prototype.constructor = ko.templateSources.anonymousTemplate;
|
||||
ko.templateSources.anonymousTemplate.prototype['text'] = function(/* valueToWrite */) {
|
||||
if (arguments.length == 0) {
|
||||
var templateData = getTemplateDomData(this.domElement);
|
||||
if (templateData.textData === undefined && templateData.containerData)
|
||||
templateData.textData = templateData.containerData.innerHTML;
|
||||
return templateData.textData;
|
||||
} else {
|
||||
var valueToWrite = arguments[0];
|
||||
setTemplateDomData(this.domElement, {textData: valueToWrite});
|
||||
}
|
||||
};
|
||||
|
||||
ko.exportSymbol('templateSources', ko.templateSources);
|
||||
ko.exportSymbol('templateSources.domElement', ko.templateSources.domElement);
|
||||
ko.exportSymbol('templateSources.anonymousTemplate', ko.templateSources.anonymousTemplate);
|
||||
})();
|
304
bower_components/knockout/src/templating/templating.js
vendored
Normal file
304
bower_components/knockout/src/templating/templating.js
vendored
Normal file
@ -0,0 +1,304 @@
|
||||
(function () {
|
||||
var _templateEngine;
|
||||
ko.setTemplateEngine = function (templateEngine) {
|
||||
if ((templateEngine != undefined) && !(templateEngine instanceof ko.templateEngine))
|
||||
throw new Error("templateEngine must inherit from ko.templateEngine");
|
||||
_templateEngine = templateEngine;
|
||||
}
|
||||
|
||||
function invokeForEachNodeInContinuousRange(firstNode, lastNode, action) {
|
||||
var node, nextInQueue = firstNode, firstOutOfRangeNode = ko.virtualElements.nextSibling(lastNode);
|
||||
while (nextInQueue && ((node = nextInQueue) !== firstOutOfRangeNode)) {
|
||||
nextInQueue = ko.virtualElements.nextSibling(node);
|
||||
action(node, nextInQueue);
|
||||
}
|
||||
}
|
||||
|
||||
function activateBindingsOnContinuousNodeArray(continuousNodeArray, bindingContext) {
|
||||
// To be used on any nodes that have been rendered by a template and have been inserted into some parent element
|
||||
// Walks through continuousNodeArray (which *must* be continuous, i.e., an uninterrupted sequence of sibling nodes, because
|
||||
// the algorithm for walking them relies on this), and for each top-level item in the virtual-element sense,
|
||||
// (1) Does a regular "applyBindings" to associate bindingContext with this node and to activate any non-memoized bindings
|
||||
// (2) Unmemoizes any memos in the DOM subtree (e.g., to activate bindings that had been memoized during template rewriting)
|
||||
|
||||
if (continuousNodeArray.length) {
|
||||
var firstNode = continuousNodeArray[0],
|
||||
lastNode = continuousNodeArray[continuousNodeArray.length - 1],
|
||||
parentNode = firstNode.parentNode,
|
||||
provider = ko.bindingProvider['instance'],
|
||||
preprocessNode = provider['preprocessNode'];
|
||||
|
||||
if (preprocessNode) {
|
||||
invokeForEachNodeInContinuousRange(firstNode, lastNode, function(node, nextNodeInRange) {
|
||||
var nodePreviousSibling = node.previousSibling;
|
||||
var newNodes = preprocessNode.call(provider, node);
|
||||
if (newNodes) {
|
||||
if (node === firstNode)
|
||||
firstNode = newNodes[0] || nextNodeInRange;
|
||||
if (node === lastNode)
|
||||
lastNode = newNodes[newNodes.length - 1] || nodePreviousSibling;
|
||||
}
|
||||
});
|
||||
|
||||
// Because preprocessNode can change the nodes, including the first and last nodes, update continuousNodeArray to match.
|
||||
// We need the full set, including inner nodes, because the unmemoize step might remove the first node (and so the real
|
||||
// first node needs to be in the array).
|
||||
continuousNodeArray.length = 0;
|
||||
if (!firstNode) { // preprocessNode might have removed all the nodes, in which case there's nothing left to do
|
||||
return;
|
||||
}
|
||||
if (firstNode === lastNode) {
|
||||
continuousNodeArray.push(firstNode);
|
||||
} else {
|
||||
continuousNodeArray.push(firstNode, lastNode);
|
||||
ko.utils.fixUpContinuousNodeArray(continuousNodeArray, parentNode);
|
||||
}
|
||||
}
|
||||
|
||||
// Need to applyBindings *before* unmemoziation, because unmemoization might introduce extra nodes (that we don't want to re-bind)
|
||||
// whereas a regular applyBindings won't introduce new memoized nodes
|
||||
invokeForEachNodeInContinuousRange(firstNode, lastNode, function(node) {
|
||||
if (node.nodeType === 1 || node.nodeType === 8)
|
||||
ko.applyBindings(bindingContext, node);
|
||||
});
|
||||
invokeForEachNodeInContinuousRange(firstNode, lastNode, function(node) {
|
||||
if (node.nodeType === 1 || node.nodeType === 8)
|
||||
ko.memoization.unmemoizeDomNodeAndDescendants(node, [bindingContext]);
|
||||
});
|
||||
|
||||
// Make sure any changes done by applyBindings or unmemoize are reflected in the array
|
||||
ko.utils.fixUpContinuousNodeArray(continuousNodeArray, parentNode);
|
||||
}
|
||||
}
|
||||
|
||||
function getFirstNodeFromPossibleArray(nodeOrNodeArray) {
|
||||
return nodeOrNodeArray.nodeType ? nodeOrNodeArray
|
||||
: nodeOrNodeArray.length > 0 ? nodeOrNodeArray[0]
|
||||
: null;
|
||||
}
|
||||
|
||||
function executeTemplate(targetNodeOrNodeArray, renderMode, template, bindingContext, options) {
|
||||
options = options || {};
|
||||
var firstTargetNode = targetNodeOrNodeArray && getFirstNodeFromPossibleArray(targetNodeOrNodeArray);
|
||||
var templateDocument = (firstTargetNode || template || {}).ownerDocument;
|
||||
var templateEngineToUse = (options['templateEngine'] || _templateEngine);
|
||||
ko.templateRewriting.ensureTemplateIsRewritten(template, templateEngineToUse, templateDocument);
|
||||
var renderedNodesArray = templateEngineToUse['renderTemplate'](template, bindingContext, options, templateDocument);
|
||||
|
||||
// Loosely check result is an array of DOM nodes
|
||||
if ((typeof renderedNodesArray.length != "number") || (renderedNodesArray.length > 0 && typeof renderedNodesArray[0].nodeType != "number"))
|
||||
throw new Error("Template engine must return an array of DOM nodes");
|
||||
|
||||
var haveAddedNodesToParent = false;
|
||||
switch (renderMode) {
|
||||
case "replaceChildren":
|
||||
ko.virtualElements.setDomNodeChildren(targetNodeOrNodeArray, renderedNodesArray);
|
||||
haveAddedNodesToParent = true;
|
||||
break;
|
||||
case "replaceNode":
|
||||
ko.utils.replaceDomNodes(targetNodeOrNodeArray, renderedNodesArray);
|
||||
haveAddedNodesToParent = true;
|
||||
break;
|
||||
case "ignoreTargetNode": break;
|
||||
default:
|
||||
throw new Error("Unknown renderMode: " + renderMode);
|
||||
}
|
||||
|
||||
if (haveAddedNodesToParent) {
|
||||
activateBindingsOnContinuousNodeArray(renderedNodesArray, bindingContext);
|
||||
if (options['afterRender'])
|
||||
ko.dependencyDetection.ignore(options['afterRender'], null, [renderedNodesArray, bindingContext['$data']]);
|
||||
}
|
||||
|
||||
return renderedNodesArray;
|
||||
}
|
||||
|
||||
function resolveTemplateName(template, data, context) {
|
||||
// The template can be specified as:
|
||||
if (ko.isObservable(template)) {
|
||||
// 1. An observable, with string value
|
||||
return template();
|
||||
} else if (typeof template === 'function') {
|
||||
// 2. A function of (data, context) returning a string
|
||||
return template(data, context);
|
||||
} else {
|
||||
// 3. A string
|
||||
return template;
|
||||
}
|
||||
}
|
||||
|
||||
ko.renderTemplate = function (template, dataOrBindingContext, options, targetNodeOrNodeArray, renderMode) {
|
||||
options = options || {};
|
||||
if ((options['templateEngine'] || _templateEngine) == undefined)
|
||||
throw new Error("Set a template engine before calling renderTemplate");
|
||||
renderMode = renderMode || "replaceChildren";
|
||||
|
||||
if (targetNodeOrNodeArray) {
|
||||
var firstTargetNode = getFirstNodeFromPossibleArray(targetNodeOrNodeArray);
|
||||
|
||||
var whenToDispose = function () { return (!firstTargetNode) || !ko.utils.domNodeIsAttachedToDocument(firstTargetNode); }; // Passive disposal (on next evaluation)
|
||||
var activelyDisposeWhenNodeIsRemoved = (firstTargetNode && renderMode == "replaceNode") ? firstTargetNode.parentNode : firstTargetNode;
|
||||
|
||||
return ko.dependentObservable( // So the DOM is automatically updated when any dependency changes
|
||||
function () {
|
||||
// Ensure we've got a proper binding context to work with
|
||||
var bindingContext = (dataOrBindingContext && (dataOrBindingContext instanceof ko.bindingContext))
|
||||
? dataOrBindingContext
|
||||
: new ko.bindingContext(ko.utils.unwrapObservable(dataOrBindingContext));
|
||||
|
||||
var templateName = resolveTemplateName(template, bindingContext['$data'], bindingContext),
|
||||
renderedNodesArray = executeTemplate(targetNodeOrNodeArray, renderMode, templateName, bindingContext, options);
|
||||
|
||||
if (renderMode == "replaceNode") {
|
||||
targetNodeOrNodeArray = renderedNodesArray;
|
||||
firstTargetNode = getFirstNodeFromPossibleArray(targetNodeOrNodeArray);
|
||||
}
|
||||
},
|
||||
null,
|
||||
{ disposeWhen: whenToDispose, disposeWhenNodeIsRemoved: activelyDisposeWhenNodeIsRemoved }
|
||||
);
|
||||
} else {
|
||||
// We don't yet have a DOM node to evaluate, so use a memo and render the template later when there is a DOM node
|
||||
return ko.memoization.memoize(function (domNode) {
|
||||
ko.renderTemplate(template, dataOrBindingContext, options, domNode, "replaceNode");
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
ko.renderTemplateForEach = function (template, arrayOrObservableArray, options, targetNode, parentBindingContext) {
|
||||
// Since setDomNodeChildrenFromArrayMapping always calls executeTemplateForArrayItem and then
|
||||
// activateBindingsCallback for added items, we can store the binding context in the former to use in the latter.
|
||||
var arrayItemContext;
|
||||
|
||||
// This will be called by setDomNodeChildrenFromArrayMapping to get the nodes to add to targetNode
|
||||
var executeTemplateForArrayItem = function (arrayValue, index) {
|
||||
// Support selecting template as a function of the data being rendered
|
||||
arrayItemContext = parentBindingContext['createChildContext'](arrayValue, options['as'], function(context) {
|
||||
context['$index'] = index;
|
||||
});
|
||||
|
||||
var templateName = resolveTemplateName(template, arrayValue, arrayItemContext);
|
||||
return executeTemplate(null, "ignoreTargetNode", templateName, arrayItemContext, options);
|
||||
}
|
||||
|
||||
// This will be called whenever setDomNodeChildrenFromArrayMapping has added nodes to targetNode
|
||||
var activateBindingsCallback = function(arrayValue, addedNodesArray, index) {
|
||||
activateBindingsOnContinuousNodeArray(addedNodesArray, arrayItemContext);
|
||||
if (options['afterRender'])
|
||||
options['afterRender'](addedNodesArray, arrayValue);
|
||||
|
||||
// release the "cache" variable, so that it can be collected by
|
||||
// the GC when its value isn't used from within the bindings anymore.
|
||||
arrayItemContext = null;
|
||||
};
|
||||
|
||||
return ko.dependentObservable(function () {
|
||||
var unwrappedArray = ko.utils.unwrapObservable(arrayOrObservableArray) || [];
|
||||
if (typeof unwrappedArray.length == "undefined") // Coerce single value into array
|
||||
unwrappedArray = [unwrappedArray];
|
||||
|
||||
// Filter out any entries marked as destroyed
|
||||
var filteredArray = ko.utils.arrayFilter(unwrappedArray, function(item) {
|
||||
return options['includeDestroyed'] || item === undefined || item === null || !ko.utils.unwrapObservable(item['_destroy']);
|
||||
});
|
||||
|
||||
// Call setDomNodeChildrenFromArrayMapping, ignoring any observables unwrapped within (most likely from a callback function).
|
||||
// If the array items are observables, though, they will be unwrapped in executeTemplateForArrayItem and managed within setDomNodeChildrenFromArrayMapping.
|
||||
ko.dependencyDetection.ignore(ko.utils.setDomNodeChildrenFromArrayMapping, null, [targetNode, filteredArray, executeTemplateForArrayItem, options, activateBindingsCallback]);
|
||||
|
||||
}, null, { disposeWhenNodeIsRemoved: targetNode });
|
||||
};
|
||||
|
||||
var templateComputedDomDataKey = ko.utils.domData.nextKey();
|
||||
function disposeOldComputedAndStoreNewOne(element, newComputed) {
|
||||
var oldComputed = ko.utils.domData.get(element, templateComputedDomDataKey);
|
||||
if (oldComputed && (typeof(oldComputed.dispose) == 'function'))
|
||||
oldComputed.dispose();
|
||||
ko.utils.domData.set(element, templateComputedDomDataKey, (newComputed && newComputed.isActive()) ? newComputed : undefined);
|
||||
}
|
||||
|
||||
ko.bindingHandlers['template'] = {
|
||||
'init': function(element, valueAccessor) {
|
||||
// Support anonymous templates
|
||||
var bindingValue = ko.utils.unwrapObservable(valueAccessor());
|
||||
if (typeof bindingValue == "string" || bindingValue['name']) {
|
||||
// It's a named template - clear the element
|
||||
ko.virtualElements.emptyNode(element);
|
||||
} else if ('nodes' in bindingValue) {
|
||||
// We've been given an array of DOM nodes. Save them as the template source.
|
||||
// There is no known use case for the node array being an observable array (if the output
|
||||
// varies, put that behavior *into* your template - that's what templates are for), and
|
||||
// the implementation would be a mess, so assert that it's not observable.
|
||||
var nodes = bindingValue['nodes'] || [];
|
||||
if (ko.isObservable(nodes)) {
|
||||
throw new Error('The "nodes" option must be a plain, non-observable array.');
|
||||
}
|
||||
var container = ko.utils.moveCleanedNodesToContainerElement(nodes); // This also removes the nodes from their current parent
|
||||
new ko.templateSources.anonymousTemplate(element)['nodes'](container);
|
||||
} else {
|
||||
// It's an anonymous template - store the element contents, then clear the element
|
||||
var templateNodes = ko.virtualElements.childNodes(element),
|
||||
container = ko.utils.moveCleanedNodesToContainerElement(templateNodes); // This also removes the nodes from their current parent
|
||||
new ko.templateSources.anonymousTemplate(element)['nodes'](container);
|
||||
}
|
||||
return { 'controlsDescendantBindings': true };
|
||||
},
|
||||
'update': function (element, valueAccessor, allBindings, viewModel, bindingContext) {
|
||||
var value = valueAccessor(),
|
||||
dataValue,
|
||||
options = ko.utils.unwrapObservable(value),
|
||||
shouldDisplay = true,
|
||||
templateComputed = null,
|
||||
templateName;
|
||||
|
||||
if (typeof options == "string") {
|
||||
templateName = value;
|
||||
options = {};
|
||||
} else {
|
||||
templateName = options['name'];
|
||||
|
||||
// Support "if"/"ifnot" conditions
|
||||
if ('if' in options)
|
||||
shouldDisplay = ko.utils.unwrapObservable(options['if']);
|
||||
if (shouldDisplay && 'ifnot' in options)
|
||||
shouldDisplay = !ko.utils.unwrapObservable(options['ifnot']);
|
||||
|
||||
dataValue = ko.utils.unwrapObservable(options['data']);
|
||||
}
|
||||
|
||||
if ('foreach' in options) {
|
||||
// Render once for each data point (treating data set as empty if shouldDisplay==false)
|
||||
var dataArray = (shouldDisplay && options['foreach']) || [];
|
||||
templateComputed = ko.renderTemplateForEach(templateName || element, dataArray, options, element, bindingContext);
|
||||
} else if (!shouldDisplay) {
|
||||
ko.virtualElements.emptyNode(element);
|
||||
} else {
|
||||
// Render once for this single data point (or use the viewModel if no data was provided)
|
||||
var innerBindingContext = ('data' in options) ?
|
||||
bindingContext['createChildContext'](dataValue, options['as']) : // Given an explitit 'data' value, we create a child binding context for it
|
||||
bindingContext; // Given no explicit 'data' value, we retain the same binding context
|
||||
templateComputed = ko.renderTemplate(templateName || element, innerBindingContext, options, element);
|
||||
}
|
||||
|
||||
// It only makes sense to have a single template computed per element (otherwise which one should have its output displayed?)
|
||||
disposeOldComputedAndStoreNewOne(element, templateComputed);
|
||||
}
|
||||
};
|
||||
|
||||
// Anonymous templates can't be rewritten. Give a nice error message if you try to do it.
|
||||
ko.expressionRewriting.bindingRewriteValidators['template'] = function(bindingValue) {
|
||||
var parsedBindingValue = ko.expressionRewriting.parseObjectLiteral(bindingValue);
|
||||
|
||||
if ((parsedBindingValue.length == 1) && parsedBindingValue[0]['unknown'])
|
||||
return null; // It looks like a string literal, not an object literal, so treat it as a named template (which is allowed for rewriting)
|
||||
|
||||
if (ko.expressionRewriting.keyValueArrayContainsKey(parsedBindingValue, "name"))
|
||||
return null; // Named templates can be rewritten, so return "no error"
|
||||
return "This template engine does not support anonymous templates nested within its templates";
|
||||
};
|
||||
|
||||
ko.virtualElements.allowedBindings['template'] = true;
|
||||
})();
|
||||
|
||||
ko.exportSymbol('setTemplateEngine', ko.setTemplateEngine);
|
||||
ko.exportSymbol('renderTemplate', ko.renderTemplate);
|
50
bower_components/knockout/src/utils.domData.js
vendored
Normal file
50
bower_components/knockout/src/utils.domData.js
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
|
||||
ko.utils.domData = new (function () {
|
||||
var uniqueId = 0;
|
||||
var dataStoreKeyExpandoPropertyName = "__ko__" + (new Date).getTime();
|
||||
var dataStore = {};
|
||||
|
||||
function getAll(node, createIfNotFound) {
|
||||
var dataStoreKey = node[dataStoreKeyExpandoPropertyName];
|
||||
var hasExistingDataStore = dataStoreKey && (dataStoreKey !== "null") && dataStore[dataStoreKey];
|
||||
if (!hasExistingDataStore) {
|
||||
if (!createIfNotFound)
|
||||
return undefined;
|
||||
dataStoreKey = node[dataStoreKeyExpandoPropertyName] = "ko" + uniqueId++;
|
||||
dataStore[dataStoreKey] = {};
|
||||
}
|
||||
return dataStore[dataStoreKey];
|
||||
}
|
||||
|
||||
return {
|
||||
get: function (node, key) {
|
||||
var allDataForNode = getAll(node, false);
|
||||
return allDataForNode === undefined ? undefined : allDataForNode[key];
|
||||
},
|
||||
set: function (node, key, value) {
|
||||
if (value === undefined) {
|
||||
// Make sure we don't actually create a new domData key if we are actually deleting a value
|
||||
if (getAll(node, false) === undefined)
|
||||
return;
|
||||
}
|
||||
var allDataForNode = getAll(node, true);
|
||||
allDataForNode[key] = value;
|
||||
},
|
||||
clear: function (node) {
|
||||
var dataStoreKey = node[dataStoreKeyExpandoPropertyName];
|
||||
if (dataStoreKey) {
|
||||
delete dataStore[dataStoreKey];
|
||||
node[dataStoreKeyExpandoPropertyName] = null;
|
||||
return true; // Exposing "did clean" flag purely so specs can infer whether things have been cleaned up as intended
|
||||
}
|
||||
return false;
|
||||
},
|
||||
|
||||
nextKey: function () {
|
||||
return (uniqueId++) + dataStoreKeyExpandoPropertyName;
|
||||
}
|
||||
};
|
||||
})();
|
||||
|
||||
ko.exportSymbol('utils.domData', ko.utils.domData);
|
||||
ko.exportSymbol('utils.domData.clear', ko.utils.domData.clear); // Exporting only so specs can clear up after themselves fully
|
129
bower_components/knockout/src/utils.domManipulation.js
vendored
Normal file
129
bower_components/knockout/src/utils.domManipulation.js
vendored
Normal file
@ -0,0 +1,129 @@
|
||||
(function () {
|
||||
var none = [0, "", ""],
|
||||
table = [1, "<table>", "</table>"],
|
||||
tbody = [2, "<table><tbody>", "</tbody></table>"],
|
||||
tr = [3, "<table><tbody><tr>", "</tr></tbody></table>"],
|
||||
select = [1, "<select multiple='multiple'>", "</select>"],
|
||||
lookup = {
|
||||
'thead': table,
|
||||
'tbody': table,
|
||||
'tfoot': table,
|
||||
'tr': tbody,
|
||||
'td': tr,
|
||||
'th': tr,
|
||||
'option': select,
|
||||
'optgroup': select
|
||||
},
|
||||
|
||||
// This is needed for old IE if you're *not* using either jQuery or innerShiv. Doesn't affect other cases.
|
||||
mayRequireCreateElementHack = ko.utils.ieVersion <= 8;
|
||||
|
||||
function getWrap(tags) {
|
||||
var m = tags.match(/^<([a-z]+)[ >]/);
|
||||
return (m && lookup[m[1]]) || none;
|
||||
}
|
||||
|
||||
function simpleHtmlParse(html, documentContext) {
|
||||
documentContext || (documentContext = document);
|
||||
var windowContext = documentContext['parentWindow'] || documentContext['defaultView'] || window;
|
||||
|
||||
// Based on jQuery's "clean" function, but only accounting for table-related elements.
|
||||
// If you have referenced jQuery, this won't be used anyway - KO will use jQuery's "clean" function directly
|
||||
|
||||
// Note that there's still an issue in IE < 9 whereby it will discard comment nodes that are the first child of
|
||||
// a descendant node. For example: "<div><!-- mycomment -->abc</div>" will get parsed as "<div>abc</div>"
|
||||
// This won't affect anyone who has referenced jQuery, and there's always the workaround of inserting a dummy node
|
||||
// (possibly a text node) in front of the comment. So, KO does not attempt to workaround this IE issue automatically at present.
|
||||
|
||||
// Trim whitespace, otherwise indexOf won't work as expected
|
||||
var tags = ko.utils.stringTrim(html).toLowerCase(), div = documentContext.createElement("div"),
|
||||
wrap = getWrap(tags),
|
||||
depth = wrap[0];
|
||||
|
||||
// Go to html and back, then peel off extra wrappers
|
||||
// Note that we always prefix with some dummy text, because otherwise, IE<9 will strip out leading comment nodes in descendants. Total madness.
|
||||
var markup = "ignored<div>" + wrap[1] + html + wrap[2] + "</div>";
|
||||
if (typeof windowContext['innerShiv'] == "function") {
|
||||
// Note that innerShiv is deprecated in favour of html5shiv. We should consider adding
|
||||
// support for html5shiv (except if no explicit support is needed, e.g., if html5shiv
|
||||
// somehow shims the native APIs so it just works anyway)
|
||||
div.appendChild(windowContext['innerShiv'](markup));
|
||||
} else {
|
||||
if (mayRequireCreateElementHack) {
|
||||
// The document.createElement('my-element') trick to enable custom elements in IE6-8
|
||||
// only works if we assign innerHTML on an element associated with that document.
|
||||
documentContext.appendChild(div);
|
||||
}
|
||||
|
||||
div.innerHTML = markup;
|
||||
|
||||
if (mayRequireCreateElementHack) {
|
||||
div.parentNode.removeChild(div);
|
||||
}
|
||||
}
|
||||
|
||||
// Move to the right depth
|
||||
while (depth--)
|
||||
div = div.lastChild;
|
||||
|
||||
return ko.utils.makeArray(div.lastChild.childNodes);
|
||||
}
|
||||
|
||||
function jQueryHtmlParse(html, documentContext) {
|
||||
// jQuery's "parseHTML" function was introduced in jQuery 1.8.0 and is a documented public API.
|
||||
if (jQueryInstance['parseHTML']) {
|
||||
return jQueryInstance['parseHTML'](html, documentContext) || []; // Ensure we always return an array and never null
|
||||
} else {
|
||||
// For jQuery < 1.8.0, we fall back on the undocumented internal "clean" function.
|
||||
var elems = jQueryInstance['clean']([html], documentContext);
|
||||
|
||||
// As of jQuery 1.7.1, jQuery parses the HTML by appending it to some dummy parent nodes held in an in-memory document fragment.
|
||||
// Unfortunately, it never clears the dummy parent nodes from the document fragment, so it leaks memory over time.
|
||||
// Fix this by finding the top-most dummy parent element, and detaching it from its owner fragment.
|
||||
if (elems && elems[0]) {
|
||||
// Find the top-most parent element that's a direct child of a document fragment
|
||||
var elem = elems[0];
|
||||
while (elem.parentNode && elem.parentNode.nodeType !== 11 /* i.e., DocumentFragment */)
|
||||
elem = elem.parentNode;
|
||||
// ... then detach it
|
||||
if (elem.parentNode)
|
||||
elem.parentNode.removeChild(elem);
|
||||
}
|
||||
|
||||
return elems;
|
||||
}
|
||||
}
|
||||
|
||||
ko.utils.parseHtmlFragment = function(html, documentContext) {
|
||||
return jQueryInstance ?
|
||||
jQueryHtmlParse(html, documentContext) : // As below, benefit from jQuery's optimisations where possible
|
||||
simpleHtmlParse(html, documentContext); // ... otherwise, this simple logic will do in most common cases.
|
||||
};
|
||||
|
||||
ko.utils.setHtml = function(node, html) {
|
||||
ko.utils.emptyDomNode(node);
|
||||
|
||||
// There's no legitimate reason to display a stringified observable without unwrapping it, so we'll unwrap it
|
||||
html = ko.utils.unwrapObservable(html);
|
||||
|
||||
if ((html !== null) && (html !== undefined)) {
|
||||
if (typeof html != 'string')
|
||||
html = html.toString();
|
||||
|
||||
// jQuery contains a lot of sophisticated code to parse arbitrary HTML fragments,
|
||||
// for example <tr> elements which are not normally allowed to exist on their own.
|
||||
// If you've referenced jQuery we'll use that rather than duplicating its code.
|
||||
if (jQueryInstance) {
|
||||
jQueryInstance(node)['html'](html);
|
||||
} else {
|
||||
// ... otherwise, use KO's own parsing logic.
|
||||
var parsedNodes = ko.utils.parseHtmlFragment(html, node.ownerDocument);
|
||||
for (var i = 0; i < parsedNodes.length; i++)
|
||||
node.appendChild(parsedNodes[i]);
|
||||
}
|
||||
}
|
||||
};
|
||||
})();
|
||||
|
||||
ko.exportSymbol('utils.parseHtmlFragment', ko.utils.parseHtmlFragment);
|
||||
ko.exportSymbol('utils.setHtml', ko.utils.setHtml);
|
103
bower_components/knockout/src/utils.domNodeDisposal.js
vendored
Normal file
103
bower_components/knockout/src/utils.domNodeDisposal.js
vendored
Normal file
@ -0,0 +1,103 @@
|
||||
|
||||
ko.utils.domNodeDisposal = new (function () {
|
||||
var domDataKey = ko.utils.domData.nextKey();
|
||||
var cleanableNodeTypes = { 1: true, 8: true, 9: true }; // Element, Comment, Document
|
||||
var cleanableNodeTypesWithDescendants = { 1: true, 9: true }; // Element, Document
|
||||
|
||||
function getDisposeCallbacksCollection(node, createIfNotFound) {
|
||||
var allDisposeCallbacks = ko.utils.domData.get(node, domDataKey);
|
||||
if ((allDisposeCallbacks === undefined) && createIfNotFound) {
|
||||
allDisposeCallbacks = [];
|
||||
ko.utils.domData.set(node, domDataKey, allDisposeCallbacks);
|
||||
}
|
||||
return allDisposeCallbacks;
|
||||
}
|
||||
function destroyCallbacksCollection(node) {
|
||||
ko.utils.domData.set(node, domDataKey, undefined);
|
||||
}
|
||||
|
||||
function cleanSingleNode(node) {
|
||||
// Run all the dispose callbacks
|
||||
var callbacks = getDisposeCallbacksCollection(node, false);
|
||||
if (callbacks) {
|
||||
callbacks = callbacks.slice(0); // Clone, as the array may be modified during iteration (typically, callbacks will remove themselves)
|
||||
for (var i = 0; i < callbacks.length; i++)
|
||||
callbacks[i](node);
|
||||
}
|
||||
|
||||
// Erase the DOM data
|
||||
ko.utils.domData.clear(node);
|
||||
|
||||
// Perform cleanup needed by external libraries (currently only jQuery, but can be extended)
|
||||
ko.utils.domNodeDisposal["cleanExternalData"](node);
|
||||
|
||||
// Clear any immediate-child comment nodes, as these wouldn't have been found by
|
||||
// node.getElementsByTagName("*") in cleanNode() (comment nodes aren't elements)
|
||||
if (cleanableNodeTypesWithDescendants[node.nodeType])
|
||||
cleanImmediateCommentTypeChildren(node);
|
||||
}
|
||||
|
||||
function cleanImmediateCommentTypeChildren(nodeWithChildren) {
|
||||
var child, nextChild = nodeWithChildren.firstChild;
|
||||
while (child = nextChild) {
|
||||
nextChild = child.nextSibling;
|
||||
if (child.nodeType === 8)
|
||||
cleanSingleNode(child);
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
addDisposeCallback : function(node, callback) {
|
||||
if (typeof callback != "function")
|
||||
throw new Error("Callback must be a function");
|
||||
getDisposeCallbacksCollection(node, true).push(callback);
|
||||
},
|
||||
|
||||
removeDisposeCallback : function(node, callback) {
|
||||
var callbacksCollection = getDisposeCallbacksCollection(node, false);
|
||||
if (callbacksCollection) {
|
||||
ko.utils.arrayRemoveItem(callbacksCollection, callback);
|
||||
if (callbacksCollection.length == 0)
|
||||
destroyCallbacksCollection(node);
|
||||
}
|
||||
},
|
||||
|
||||
cleanNode : function(node) {
|
||||
// First clean this node, where applicable
|
||||
if (cleanableNodeTypes[node.nodeType]) {
|
||||
cleanSingleNode(node);
|
||||
|
||||
// ... then its descendants, where applicable
|
||||
if (cleanableNodeTypesWithDescendants[node.nodeType]) {
|
||||
// Clone the descendants list in case it changes during iteration
|
||||
var descendants = [];
|
||||
ko.utils.arrayPushAll(descendants, node.getElementsByTagName("*"));
|
||||
for (var i = 0, j = descendants.length; i < j; i++)
|
||||
cleanSingleNode(descendants[i]);
|
||||
}
|
||||
}
|
||||
return node;
|
||||
},
|
||||
|
||||
removeNode : function(node) {
|
||||
ko.cleanNode(node);
|
||||
if (node.parentNode)
|
||||
node.parentNode.removeChild(node);
|
||||
},
|
||||
|
||||
"cleanExternalData" : function (node) {
|
||||
// Special support for jQuery here because it's so commonly used.
|
||||
// Many jQuery plugins (including jquery.tmpl) store data using jQuery's equivalent of domData
|
||||
// so notify it to tear down any resources associated with the node & descendants here.
|
||||
if (jQueryInstance && (typeof jQueryInstance['cleanData'] == "function"))
|
||||
jQueryInstance['cleanData']([node]);
|
||||
}
|
||||
};
|
||||
})();
|
||||
ko.cleanNode = ko.utils.domNodeDisposal.cleanNode; // Shorthand name for convenience
|
||||
ko.removeNode = ko.utils.domNodeDisposal.removeNode; // Shorthand name for convenience
|
||||
ko.exportSymbol('cleanNode', ko.cleanNode);
|
||||
ko.exportSymbol('removeNode', ko.removeNode);
|
||||
ko.exportSymbol('utils.domNodeDisposal', ko.utils.domNodeDisposal);
|
||||
ko.exportSymbol('utils.domNodeDisposal.addDisposeCallback', ko.utils.domNodeDisposal.addDisposeCallback);
|
||||
ko.exportSymbol('utils.domNodeDisposal.removeDisposeCallback', ko.utils.domNodeDisposal.removeDisposeCallback);
|
625
bower_components/knockout/src/utils.js
vendored
Normal file
625
bower_components/knockout/src/utils.js
vendored
Normal file
@ -0,0 +1,625 @@
|
||||
ko.utils = (function () {
|
||||
function objectForEach(obj, action) {
|
||||
for (var prop in obj) {
|
||||
if (obj.hasOwnProperty(prop)) {
|
||||
action(prop, obj[prop]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function extend(target, source) {
|
||||
if (source) {
|
||||
for(var prop in source) {
|
||||
if(source.hasOwnProperty(prop)) {
|
||||
target[prop] = source[prop];
|
||||
}
|
||||
}
|
||||
}
|
||||
return target;
|
||||
}
|
||||
|
||||
function setPrototypeOf(obj, proto) {
|
||||
obj.__proto__ = proto;
|
||||
return obj;
|
||||
}
|
||||
|
||||
var canSetPrototype = ({ __proto__: [] } instanceof Array);
|
||||
var canUseSymbols = !DEBUG && typeof Symbol === 'function';
|
||||
|
||||
// Represent the known event types in a compact way, then at runtime transform it into a hash with event name as key (for fast lookup)
|
||||
var knownEvents = {}, knownEventTypesByEventName = {};
|
||||
var keyEventTypeName = (navigator && /Firefox\/2/i.test(navigator.userAgent)) ? 'KeyboardEvent' : 'UIEvents';
|
||||
knownEvents[keyEventTypeName] = ['keyup', 'keydown', 'keypress'];
|
||||
knownEvents['MouseEvents'] = ['click', 'dblclick', 'mousedown', 'mouseup', 'mousemove', 'mouseover', 'mouseout', 'mouseenter', 'mouseleave'];
|
||||
objectForEach(knownEvents, function(eventType, knownEventsForType) {
|
||||
if (knownEventsForType.length) {
|
||||
for (var i = 0, j = knownEventsForType.length; i < j; i++)
|
||||
knownEventTypesByEventName[knownEventsForType[i]] = eventType;
|
||||
}
|
||||
});
|
||||
var eventsThatMustBeRegisteredUsingAttachEvent = { 'propertychange': true }; // Workaround for an IE9 issue - https://github.com/SteveSanderson/knockout/issues/406
|
||||
|
||||
// Detect IE versions for bug workarounds (uses IE conditionals, not UA string, for robustness)
|
||||
// Note that, since IE 10 does not support conditional comments, the following logic only detects IE < 10.
|
||||
// Currently this is by design, since IE 10+ behaves correctly when treated as a standard browser.
|
||||
// If there is a future need to detect specific versions of IE10+, we will amend this.
|
||||
var ieVersion = document && (function() {
|
||||
var version = 3, div = document.createElement('div'), iElems = div.getElementsByTagName('i');
|
||||
|
||||
// Keep constructing conditional HTML blocks until we hit one that resolves to an empty fragment
|
||||
while (
|
||||
div.innerHTML = '<!--[if gt IE ' + (++version) + ']><i></i><![endif]-->',
|
||||
iElems[0]
|
||||
) {}
|
||||
return version > 4 ? version : undefined;
|
||||
}());
|
||||
var isIe6 = ieVersion === 6,
|
||||
isIe7 = ieVersion === 7;
|
||||
|
||||
function isClickOnCheckableElement(element, eventType) {
|
||||
if ((ko.utils.tagNameLower(element) !== "input") || !element.type) return false;
|
||||
if (eventType.toLowerCase() != "click") return false;
|
||||
var inputType = element.type;
|
||||
return (inputType == "checkbox") || (inputType == "radio");
|
||||
}
|
||||
|
||||
// For details on the pattern for changing node classes
|
||||
// see: https://github.com/knockout/knockout/issues/1597
|
||||
var cssClassNameRegex = /\S+/g;
|
||||
|
||||
function toggleDomNodeCssClass(node, classNames, shouldHaveClass) {
|
||||
var addOrRemoveFn;
|
||||
if (classNames) {
|
||||
if (typeof node.classList === 'object') {
|
||||
addOrRemoveFn = node.classList[shouldHaveClass ? 'add' : 'remove'];
|
||||
ko.utils.arrayForEach(classNames.match(cssClassNameRegex), function(className) {
|
||||
addOrRemoveFn.call(node.classList, className);
|
||||
});
|
||||
} else if (typeof node.className['baseVal'] === 'string') {
|
||||
// SVG tag .classNames is an SVGAnimatedString instance
|
||||
toggleObjectClassPropertyString(node.className, 'baseVal', classNames, shouldHaveClass);
|
||||
} else {
|
||||
// node.className ought to be a string.
|
||||
toggleObjectClassPropertyString(node, 'className', classNames, shouldHaveClass);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function toggleObjectClassPropertyString(obj, prop, classNames, shouldHaveClass) {
|
||||
// obj/prop is either a node/'className' or a SVGAnimatedString/'baseVal'.
|
||||
var currentClassNames = obj[prop].match(cssClassNameRegex) || [];
|
||||
ko.utils.arrayForEach(classNames.match(cssClassNameRegex), function(className) {
|
||||
ko.utils.addOrRemoveItem(currentClassNames, className, shouldHaveClass);
|
||||
});
|
||||
obj[prop] = currentClassNames.join(" ");
|
||||
}
|
||||
|
||||
return {
|
||||
fieldsIncludedWithJsonPost: ['authenticity_token', /^__RequestVerificationToken(_.*)?$/],
|
||||
|
||||
arrayForEach: function (array, action) {
|
||||
for (var i = 0, j = array.length; i < j; i++)
|
||||
action(array[i], i);
|
||||
},
|
||||
|
||||
arrayIndexOf: function (array, item) {
|
||||
if (typeof Array.prototype.indexOf == "function")
|
||||
return Array.prototype.indexOf.call(array, item);
|
||||
for (var i = 0, j = array.length; i < j; i++)
|
||||
if (array[i] === item)
|
||||
return i;
|
||||
return -1;
|
||||
},
|
||||
|
||||
arrayFirst: function (array, predicate, predicateOwner) {
|
||||
for (var i = 0, j = array.length; i < j; i++)
|
||||
if (predicate.call(predicateOwner, array[i], i))
|
||||
return array[i];
|
||||
return null;
|
||||
},
|
||||
|
||||
arrayRemoveItem: function (array, itemToRemove) {
|
||||
var index = ko.utils.arrayIndexOf(array, itemToRemove);
|
||||
if (index > 0) {
|
||||
array.splice(index, 1);
|
||||
}
|
||||
else if (index === 0) {
|
||||
array.shift();
|
||||
}
|
||||
},
|
||||
|
||||
arrayGetDistinctValues: function (array) {
|
||||
array = array || [];
|
||||
var result = [];
|
||||
for (var i = 0, j = array.length; i < j; i++) {
|
||||
if (ko.utils.arrayIndexOf(result, array[i]) < 0)
|
||||
result.push(array[i]);
|
||||
}
|
||||
return result;
|
||||
},
|
||||
|
||||
arrayMap: function (array, mapping) {
|
||||
array = array || [];
|
||||
var result = [];
|
||||
for (var i = 0, j = array.length; i < j; i++)
|
||||
result.push(mapping(array[i], i));
|
||||
return result;
|
||||
},
|
||||
|
||||
arrayFilter: function (array, predicate) {
|
||||
array = array || [];
|
||||
var result = [];
|
||||
for (var i = 0, j = array.length; i < j; i++)
|
||||
if (predicate(array[i], i))
|
||||
result.push(array[i]);
|
||||
return result;
|
||||
},
|
||||
|
||||
arrayPushAll: function (array, valuesToPush) {
|
||||
if (valuesToPush instanceof Array)
|
||||
array.push.apply(array, valuesToPush);
|
||||
else
|
||||
for (var i = 0, j = valuesToPush.length; i < j; i++)
|
||||
array.push(valuesToPush[i]);
|
||||
return array;
|
||||
},
|
||||
|
||||
addOrRemoveItem: function(array, value, included) {
|
||||
var existingEntryIndex = ko.utils.arrayIndexOf(ko.utils.peekObservable(array), value);
|
||||
if (existingEntryIndex < 0) {
|
||||
if (included)
|
||||
array.push(value);
|
||||
} else {
|
||||
if (!included)
|
||||
array.splice(existingEntryIndex, 1);
|
||||
}
|
||||
},
|
||||
|
||||
canSetPrototype: canSetPrototype,
|
||||
|
||||
extend: extend,
|
||||
|
||||
setPrototypeOf: setPrototypeOf,
|
||||
|
||||
setPrototypeOfOrExtend: canSetPrototype ? setPrototypeOf : extend,
|
||||
|
||||
objectForEach: objectForEach,
|
||||
|
||||
objectMap: function(source, mapping) {
|
||||
if (!source)
|
||||
return source;
|
||||
var target = {};
|
||||
for (var prop in source) {
|
||||
if (source.hasOwnProperty(prop)) {
|
||||
target[prop] = mapping(source[prop], prop, source);
|
||||
}
|
||||
}
|
||||
return target;
|
||||
},
|
||||
|
||||
emptyDomNode: function (domNode) {
|
||||
while (domNode.firstChild) {
|
||||
ko.removeNode(domNode.firstChild);
|
||||
}
|
||||
},
|
||||
|
||||
moveCleanedNodesToContainerElement: function(nodes) {
|
||||
// Ensure it's a real array, as we're about to reparent the nodes and
|
||||
// we don't want the underlying collection to change while we're doing that.
|
||||
var nodesArray = ko.utils.makeArray(nodes);
|
||||
var templateDocument = (nodesArray[0] && nodesArray[0].ownerDocument) || document;
|
||||
|
||||
var container = templateDocument.createElement('div');
|
||||
for (var i = 0, j = nodesArray.length; i < j; i++) {
|
||||
container.appendChild(ko.cleanNode(nodesArray[i]));
|
||||
}
|
||||
return container;
|
||||
},
|
||||
|
||||
cloneNodes: function (nodesArray, shouldCleanNodes) {
|
||||
for (var i = 0, j = nodesArray.length, newNodesArray = []; i < j; i++) {
|
||||
var clonedNode = nodesArray[i].cloneNode(true);
|
||||
newNodesArray.push(shouldCleanNodes ? ko.cleanNode(clonedNode) : clonedNode);
|
||||
}
|
||||
return newNodesArray;
|
||||
},
|
||||
|
||||
setDomNodeChildren: function (domNode, childNodes) {
|
||||
ko.utils.emptyDomNode(domNode);
|
||||
if (childNodes) {
|
||||
for (var i = 0, j = childNodes.length; i < j; i++)
|
||||
domNode.appendChild(childNodes[i]);
|
||||
}
|
||||
},
|
||||
|
||||
replaceDomNodes: function (nodeToReplaceOrNodeArray, newNodesArray) {
|
||||
var nodesToReplaceArray = nodeToReplaceOrNodeArray.nodeType ? [nodeToReplaceOrNodeArray] : nodeToReplaceOrNodeArray;
|
||||
if (nodesToReplaceArray.length > 0) {
|
||||
var insertionPoint = nodesToReplaceArray[0];
|
||||
var parent = insertionPoint.parentNode;
|
||||
for (var i = 0, j = newNodesArray.length; i < j; i++)
|
||||
parent.insertBefore(newNodesArray[i], insertionPoint);
|
||||
for (var i = 0, j = nodesToReplaceArray.length; i < j; i++) {
|
||||
ko.removeNode(nodesToReplaceArray[i]);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
fixUpContinuousNodeArray: function(continuousNodeArray, parentNode) {
|
||||
// Before acting on a set of nodes that were previously outputted by a template function, we have to reconcile
|
||||
// them against what is in the DOM right now. It may be that some of the nodes have already been removed, or that
|
||||
// new nodes might have been inserted in the middle, for example by a binding. Also, there may previously have been
|
||||
// leading comment nodes (created by rewritten string-based templates) that have since been removed during binding.
|
||||
// So, this function translates the old "map" output array into its best guess of the set of current DOM nodes.
|
||||
//
|
||||
// Rules:
|
||||
// [A] Any leading nodes that have been removed should be ignored
|
||||
// These most likely correspond to memoization nodes that were already removed during binding
|
||||
// See https://github.com/knockout/knockout/pull/440
|
||||
// [B] Any trailing nodes that have been remove should be ignored
|
||||
// This prevents the code here from adding unrelated nodes to the array while processing rule [C]
|
||||
// See https://github.com/knockout/knockout/pull/1903
|
||||
// [C] We want to output a continuous series of nodes. So, ignore any nodes that have already been removed,
|
||||
// and include any nodes that have been inserted among the previous collection
|
||||
|
||||
if (continuousNodeArray.length) {
|
||||
// The parent node can be a virtual element; so get the real parent node
|
||||
parentNode = (parentNode.nodeType === 8 && parentNode.parentNode) || parentNode;
|
||||
|
||||
// Rule [A]
|
||||
while (continuousNodeArray.length && continuousNodeArray[0].parentNode !== parentNode)
|
||||
continuousNodeArray.splice(0, 1);
|
||||
|
||||
// Rule [B]
|
||||
while (continuousNodeArray.length > 1 && continuousNodeArray[continuousNodeArray.length - 1].parentNode !== parentNode)
|
||||
continuousNodeArray.length--;
|
||||
|
||||
// Rule [C]
|
||||
if (continuousNodeArray.length > 1) {
|
||||
var current = continuousNodeArray[0], last = continuousNodeArray[continuousNodeArray.length - 1];
|
||||
// Replace with the actual new continuous node set
|
||||
continuousNodeArray.length = 0;
|
||||
while (current !== last) {
|
||||
continuousNodeArray.push(current);
|
||||
current = current.nextSibling;
|
||||
}
|
||||
continuousNodeArray.push(last);
|
||||
}
|
||||
}
|
||||
return continuousNodeArray;
|
||||
},
|
||||
|
||||
setOptionNodeSelectionState: function (optionNode, isSelected) {
|
||||
// IE6 sometimes throws "unknown error" if you try to write to .selected directly, whereas Firefox struggles with setAttribute. Pick one based on browser.
|
||||
if (ieVersion < 7)
|
||||
optionNode.setAttribute("selected", isSelected);
|
||||
else
|
||||
optionNode.selected = isSelected;
|
||||
},
|
||||
|
||||
stringTrim: function (string) {
|
||||
return string === null || string === undefined ? '' :
|
||||
string.trim ?
|
||||
string.trim() :
|
||||
string.toString().replace(/^[\s\xa0]+|[\s\xa0]+$/g, '');
|
||||
},
|
||||
|
||||
stringStartsWith: function (string, startsWith) {
|
||||
string = string || "";
|
||||
if (startsWith.length > string.length)
|
||||
return false;
|
||||
return string.substring(0, startsWith.length) === startsWith;
|
||||
},
|
||||
|
||||
domNodeIsContainedBy: function (node, containedByNode) {
|
||||
if (node === containedByNode)
|
||||
return true;
|
||||
if (node.nodeType === 11)
|
||||
return false; // Fixes issue #1162 - can't use node.contains for document fragments on IE8
|
||||
if (containedByNode.contains)
|
||||
return containedByNode.contains(node.nodeType === 3 ? node.parentNode : node);
|
||||
if (containedByNode.compareDocumentPosition)
|
||||
return (containedByNode.compareDocumentPosition(node) & 16) == 16;
|
||||
while (node && node != containedByNode) {
|
||||
node = node.parentNode;
|
||||
}
|
||||
return !!node;
|
||||
},
|
||||
|
||||
domNodeIsAttachedToDocument: function (node) {
|
||||
return ko.utils.domNodeIsContainedBy(node, node.ownerDocument.documentElement);
|
||||
},
|
||||
|
||||
anyDomNodeIsAttachedToDocument: function(nodes) {
|
||||
return !!ko.utils.arrayFirst(nodes, ko.utils.domNodeIsAttachedToDocument);
|
||||
},
|
||||
|
||||
tagNameLower: function(element) {
|
||||
// For HTML elements, tagName will always be upper case; for XHTML elements, it'll be lower case.
|
||||
// Possible future optimization: If we know it's an element from an XHTML document (not HTML),
|
||||
// we don't need to do the .toLowerCase() as it will always be lower case anyway.
|
||||
return element && element.tagName && element.tagName.toLowerCase();
|
||||
},
|
||||
|
||||
catchFunctionErrors: function (delegate) {
|
||||
return ko['onError'] ? function () {
|
||||
try {
|
||||
return delegate.apply(this, arguments);
|
||||
} catch (e) {
|
||||
ko['onError'] && ko['onError'](e);
|
||||
throw e;
|
||||
}
|
||||
} : delegate;
|
||||
},
|
||||
|
||||
setTimeout: function (handler, timeout) {
|
||||
return setTimeout(ko.utils.catchFunctionErrors(handler), timeout);
|
||||
},
|
||||
|
||||
deferError: function (error) {
|
||||
setTimeout(function () {
|
||||
ko['onError'] && ko['onError'](error);
|
||||
throw error;
|
||||
}, 0);
|
||||
},
|
||||
|
||||
registerEventHandler: function (element, eventType, handler) {
|
||||
var wrappedHandler = ko.utils.catchFunctionErrors(handler);
|
||||
|
||||
var mustUseAttachEvent = ieVersion && eventsThatMustBeRegisteredUsingAttachEvent[eventType];
|
||||
if (!ko.options['useOnlyNativeEvents'] && !mustUseAttachEvent && jQueryInstance) {
|
||||
jQueryInstance(element)['bind'](eventType, wrappedHandler);
|
||||
} else if (!mustUseAttachEvent && typeof element.addEventListener == "function")
|
||||
element.addEventListener(eventType, wrappedHandler, false);
|
||||
else if (typeof element.attachEvent != "undefined") {
|
||||
var attachEventHandler = function (event) { wrappedHandler.call(element, event); },
|
||||
attachEventName = "on" + eventType;
|
||||
element.attachEvent(attachEventName, attachEventHandler);
|
||||
|
||||
// IE does not dispose attachEvent handlers automatically (unlike with addEventListener)
|
||||
// so to avoid leaks, we have to remove them manually. See bug #856
|
||||
ko.utils.domNodeDisposal.addDisposeCallback(element, function() {
|
||||
element.detachEvent(attachEventName, attachEventHandler);
|
||||
});
|
||||
} else
|
||||
throw new Error("Browser doesn't support addEventListener or attachEvent");
|
||||
},
|
||||
|
||||
triggerEvent: function (element, eventType) {
|
||||
if (!(element && element.nodeType))
|
||||
throw new Error("element must be a DOM node when calling triggerEvent");
|
||||
|
||||
// For click events on checkboxes and radio buttons, jQuery toggles the element checked state *after* the
|
||||
// event handler runs instead of *before*. (This was fixed in 1.9 for checkboxes but not for radio buttons.)
|
||||
// IE doesn't change the checked state when you trigger the click event using "fireEvent".
|
||||
// In both cases, we'll use the click method instead.
|
||||
var useClickWorkaround = isClickOnCheckableElement(element, eventType);
|
||||
|
||||
if (!ko.options['useOnlyNativeEvents'] && jQueryInstance && !useClickWorkaround) {
|
||||
jQueryInstance(element)['trigger'](eventType);
|
||||
} else if (typeof document.createEvent == "function") {
|
||||
if (typeof element.dispatchEvent == "function") {
|
||||
var eventCategory = knownEventTypesByEventName[eventType] || "HTMLEvents";
|
||||
var event = document.createEvent(eventCategory);
|
||||
event.initEvent(eventType, true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, element);
|
||||
element.dispatchEvent(event);
|
||||
}
|
||||
else
|
||||
throw new Error("The supplied element doesn't support dispatchEvent");
|
||||
} else if (useClickWorkaround && element.click) {
|
||||
element.click();
|
||||
} else if (typeof element.fireEvent != "undefined") {
|
||||
element.fireEvent("on" + eventType);
|
||||
} else {
|
||||
throw new Error("Browser doesn't support triggering events");
|
||||
}
|
||||
},
|
||||
|
||||
unwrapObservable: function (value) {
|
||||
return ko.isObservable(value) ? value() : value;
|
||||
},
|
||||
|
||||
peekObservable: function (value) {
|
||||
return ko.isObservable(value) ? value.peek() : value;
|
||||
},
|
||||
|
||||
toggleDomNodeCssClass: toggleDomNodeCssClass,
|
||||
|
||||
setTextContent: function(element, textContent) {
|
||||
var value = ko.utils.unwrapObservable(textContent);
|
||||
if ((value === null) || (value === undefined))
|
||||
value = "";
|
||||
|
||||
// We need there to be exactly one child: a text node.
|
||||
// If there are no children, more than one, or if it's not a text node,
|
||||
// we'll clear everything and create a single text node.
|
||||
var innerTextNode = ko.virtualElements.firstChild(element);
|
||||
if (!innerTextNode || innerTextNode.nodeType != 3 || ko.virtualElements.nextSibling(innerTextNode)) {
|
||||
ko.virtualElements.setDomNodeChildren(element, [element.ownerDocument.createTextNode(value)]);
|
||||
} else {
|
||||
innerTextNode.data = value;
|
||||
}
|
||||
|
||||
ko.utils.forceRefresh(element);
|
||||
},
|
||||
|
||||
setElementName: function(element, name) {
|
||||
element.name = name;
|
||||
|
||||
// Workaround IE 6/7 issue
|
||||
// - https://github.com/SteveSanderson/knockout/issues/197
|
||||
// - http://www.matts411.com/post/setting_the_name_attribute_in_ie_dom/
|
||||
if (ieVersion <= 7) {
|
||||
try {
|
||||
element.mergeAttributes(document.createElement("<input name='" + element.name + "'/>"), false);
|
||||
}
|
||||
catch(e) {} // For IE9 with doc mode "IE9 Standards" and browser mode "IE9 Compatibility View"
|
||||
}
|
||||
},
|
||||
|
||||
forceRefresh: function(node) {
|
||||
// Workaround for an IE9 rendering bug - https://github.com/SteveSanderson/knockout/issues/209
|
||||
if (ieVersion >= 9) {
|
||||
// For text nodes and comment nodes (most likely virtual elements), we will have to refresh the container
|
||||
var elem = node.nodeType == 1 ? node : node.parentNode;
|
||||
if (elem.style)
|
||||
elem.style.zoom = elem.style.zoom;
|
||||
}
|
||||
},
|
||||
|
||||
ensureSelectElementIsRenderedCorrectly: function(selectElement) {
|
||||
// Workaround for IE9 rendering bug - it doesn't reliably display all the text in dynamically-added select boxes unless you force it to re-render by updating the width.
|
||||
// (See https://github.com/SteveSanderson/knockout/issues/312, http://stackoverflow.com/questions/5908494/select-only-shows-first-char-of-selected-option)
|
||||
// Also fixes IE7 and IE8 bug that causes selects to be zero width if enclosed by 'if' or 'with'. (See issue #839)
|
||||
if (ieVersion) {
|
||||
var originalWidth = selectElement.style.width;
|
||||
selectElement.style.width = 0;
|
||||
selectElement.style.width = originalWidth;
|
||||
}
|
||||
},
|
||||
|
||||
range: function (min, max) {
|
||||
min = ko.utils.unwrapObservable(min);
|
||||
max = ko.utils.unwrapObservable(max);
|
||||
var result = [];
|
||||
for (var i = min; i <= max; i++)
|
||||
result.push(i);
|
||||
return result;
|
||||
},
|
||||
|
||||
makeArray: function(arrayLikeObject) {
|
||||
var result = [];
|
||||
for (var i = 0, j = arrayLikeObject.length; i < j; i++) {
|
||||
result.push(arrayLikeObject[i]);
|
||||
};
|
||||
return result;
|
||||
},
|
||||
|
||||
createSymbolOrString: function(identifier) {
|
||||
return canUseSymbols ? Symbol(identifier) : identifier;
|
||||
},
|
||||
|
||||
isIe6 : isIe6,
|
||||
isIe7 : isIe7,
|
||||
ieVersion : ieVersion,
|
||||
|
||||
getFormFields: function(form, fieldName) {
|
||||
var fields = ko.utils.makeArray(form.getElementsByTagName("input")).concat(ko.utils.makeArray(form.getElementsByTagName("textarea")));
|
||||
var isMatchingField = (typeof fieldName == 'string')
|
||||
? function(field) { return field.name === fieldName }
|
||||
: function(field) { return fieldName.test(field.name) }; // Treat fieldName as regex or object containing predicate
|
||||
var matches = [];
|
||||
for (var i = fields.length - 1; i >= 0; i--) {
|
||||
if (isMatchingField(fields[i]))
|
||||
matches.push(fields[i]);
|
||||
};
|
||||
return matches;
|
||||
},
|
||||
|
||||
parseJson: function (jsonString) {
|
||||
if (typeof jsonString == "string") {
|
||||
jsonString = ko.utils.stringTrim(jsonString);
|
||||
if (jsonString) {
|
||||
if (JSON && JSON.parse) // Use native parsing where available
|
||||
return JSON.parse(jsonString);
|
||||
return (new Function("return " + jsonString))(); // Fallback on less safe parsing for older browsers
|
||||
}
|
||||
}
|
||||
return null;
|
||||
},
|
||||
|
||||
stringifyJson: function (data, replacer, space) { // replacer and space are optional
|
||||
if (!JSON || !JSON.stringify)
|
||||
throw new Error("Cannot find JSON.stringify(). Some browsers (e.g., IE < 8) don't support it natively, but you can overcome this by adding a script reference to json2.js, downloadable from http://www.json.org/json2.js");
|
||||
return JSON.stringify(ko.utils.unwrapObservable(data), replacer, space);
|
||||
},
|
||||
|
||||
postJson: function (urlOrForm, data, options) {
|
||||
options = options || {};
|
||||
var params = options['params'] || {};
|
||||
var includeFields = options['includeFields'] || this.fieldsIncludedWithJsonPost;
|
||||
var url = urlOrForm;
|
||||
|
||||
// If we were given a form, use its 'action' URL and pick out any requested field values
|
||||
if((typeof urlOrForm == 'object') && (ko.utils.tagNameLower(urlOrForm) === "form")) {
|
||||
var originalForm = urlOrForm;
|
||||
url = originalForm.action;
|
||||
for (var i = includeFields.length - 1; i >= 0; i--) {
|
||||
var fields = ko.utils.getFormFields(originalForm, includeFields[i]);
|
||||
for (var j = fields.length - 1; j >= 0; j--)
|
||||
params[fields[j].name] = fields[j].value;
|
||||
}
|
||||
}
|
||||
|
||||
data = ko.utils.unwrapObservable(data);
|
||||
var form = document.createElement("form");
|
||||
form.style.display = "none";
|
||||
form.action = url;
|
||||
form.method = "post";
|
||||
for (var key in data) {
|
||||
// Since 'data' this is a model object, we include all properties including those inherited from its prototype
|
||||
var input = document.createElement("input");
|
||||
input.type = "hidden";
|
||||
input.name = key;
|
||||
input.value = ko.utils.stringifyJson(ko.utils.unwrapObservable(data[key]));
|
||||
form.appendChild(input);
|
||||
}
|
||||
objectForEach(params, function(key, value) {
|
||||
var input = document.createElement("input");
|
||||
input.type = "hidden";
|
||||
input.name = key;
|
||||
input.value = value;
|
||||
form.appendChild(input);
|
||||
});
|
||||
document.body.appendChild(form);
|
||||
options['submitter'] ? options['submitter'](form) : form.submit();
|
||||
setTimeout(function () { form.parentNode.removeChild(form); }, 0);
|
||||
}
|
||||
}
|
||||
}());
|
||||
|
||||
ko.exportSymbol('utils', ko.utils);
|
||||
ko.exportSymbol('utils.arrayForEach', ko.utils.arrayForEach);
|
||||
ko.exportSymbol('utils.arrayFirst', ko.utils.arrayFirst);
|
||||
ko.exportSymbol('utils.arrayFilter', ko.utils.arrayFilter);
|
||||
ko.exportSymbol('utils.arrayGetDistinctValues', ko.utils.arrayGetDistinctValues);
|
||||
ko.exportSymbol('utils.arrayIndexOf', ko.utils.arrayIndexOf);
|
||||
ko.exportSymbol('utils.arrayMap', ko.utils.arrayMap);
|
||||
ko.exportSymbol('utils.arrayPushAll', ko.utils.arrayPushAll);
|
||||
ko.exportSymbol('utils.arrayRemoveItem', ko.utils.arrayRemoveItem);
|
||||
ko.exportSymbol('utils.extend', ko.utils.extend);
|
||||
ko.exportSymbol('utils.fieldsIncludedWithJsonPost', ko.utils.fieldsIncludedWithJsonPost);
|
||||
ko.exportSymbol('utils.getFormFields', ko.utils.getFormFields);
|
||||
ko.exportSymbol('utils.peekObservable', ko.utils.peekObservable);
|
||||
ko.exportSymbol('utils.postJson', ko.utils.postJson);
|
||||
ko.exportSymbol('utils.parseJson', ko.utils.parseJson);
|
||||
ko.exportSymbol('utils.registerEventHandler', ko.utils.registerEventHandler);
|
||||
ko.exportSymbol('utils.stringifyJson', ko.utils.stringifyJson);
|
||||
ko.exportSymbol('utils.range', ko.utils.range);
|
||||
ko.exportSymbol('utils.toggleDomNodeCssClass', ko.utils.toggleDomNodeCssClass);
|
||||
ko.exportSymbol('utils.triggerEvent', ko.utils.triggerEvent);
|
||||
ko.exportSymbol('utils.unwrapObservable', ko.utils.unwrapObservable);
|
||||
ko.exportSymbol('utils.objectForEach', ko.utils.objectForEach);
|
||||
ko.exportSymbol('utils.addOrRemoveItem', ko.utils.addOrRemoveItem);
|
||||
ko.exportSymbol('utils.setTextContent', ko.utils.setTextContent);
|
||||
ko.exportSymbol('unwrap', ko.utils.unwrapObservable); // Convenient shorthand, because this is used so commonly
|
||||
|
||||
if (!Function.prototype['bind']) {
|
||||
// Function.prototype.bind is a standard part of ECMAScript 5th Edition (December 2009, http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf)
|
||||
// In case the browser doesn't implement it natively, provide a JavaScript implementation. This implementation is based on the one in prototype.js
|
||||
Function.prototype['bind'] = function (object) {
|
||||
var originalFunction = this;
|
||||
if (arguments.length === 1) {
|
||||
return function () {
|
||||
return originalFunction.apply(object, arguments);
|
||||
};
|
||||
} else {
|
||||
var partialArgs = Array.prototype.slice.call(arguments, 1);
|
||||
return function () {
|
||||
var args = partialArgs.slice(0);
|
||||
args.push.apply(args, arguments);
|
||||
return originalFunction.apply(object, args);
|
||||
};
|
||||
}
|
||||
};
|
||||
}
|
3
bower_components/knockout/src/version.js
vendored
Normal file
3
bower_components/knockout/src/version.js
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
ko.version = "##VERSION##";
|
||||
|
||||
ko.exportSymbol('version', ko.version);
|
195
bower_components/knockout/src/virtualElements.js
vendored
Normal file
195
bower_components/knockout/src/virtualElements.js
vendored
Normal file
@ -0,0 +1,195 @@
|
||||
(function() {
|
||||
// "Virtual elements" is an abstraction on top of the usual DOM API which understands the notion that comment nodes
|
||||
// may be used to represent hierarchy (in addition to the DOM's natural hierarchy).
|
||||
// If you call the DOM-manipulating functions on ko.virtualElements, you will be able to read and write the state
|
||||
// of that virtual hierarchy
|
||||
//
|
||||
// The point of all this is to support containerless templates (e.g., <!-- ko foreach:someCollection -->blah<!-- /ko -->)
|
||||
// without having to scatter special cases all over the binding and templating code.
|
||||
|
||||
// IE 9 cannot reliably read the "nodeValue" property of a comment node (see https://github.com/SteveSanderson/knockout/issues/186)
|
||||
// but it does give them a nonstandard alternative property called "text" that it can read reliably. Other browsers don't have that property.
|
||||
// So, use node.text where available, and node.nodeValue elsewhere
|
||||
var commentNodesHaveTextProperty = document && document.createComment("test").text === "<!--test-->";
|
||||
|
||||
var startCommentRegex = commentNodesHaveTextProperty ? /^<!--\s*ko(?:\s+([\s\S]+))?\s*-->$/ : /^\s*ko(?:\s+([\s\S]+))?\s*$/;
|
||||
var endCommentRegex = commentNodesHaveTextProperty ? /^<!--\s*\/ko\s*-->$/ : /^\s*\/ko\s*$/;
|
||||
var htmlTagsWithOptionallyClosingChildren = { 'ul': true, 'ol': true };
|
||||
|
||||
function isStartComment(node) {
|
||||
return (node.nodeType == 8) && startCommentRegex.test(commentNodesHaveTextProperty ? node.text : node.nodeValue);
|
||||
}
|
||||
|
||||
function isEndComment(node) {
|
||||
return (node.nodeType == 8) && endCommentRegex.test(commentNodesHaveTextProperty ? node.text : node.nodeValue);
|
||||
}
|
||||
|
||||
function getVirtualChildren(startComment, allowUnbalanced) {
|
||||
var currentNode = startComment;
|
||||
var depth = 1;
|
||||
var children = [];
|
||||
while (currentNode = currentNode.nextSibling) {
|
||||
if (isEndComment(currentNode)) {
|
||||
depth--;
|
||||
if (depth === 0)
|
||||
return children;
|
||||
}
|
||||
|
||||
children.push(currentNode);
|
||||
|
||||
if (isStartComment(currentNode))
|
||||
depth++;
|
||||
}
|
||||
if (!allowUnbalanced)
|
||||
throw new Error("Cannot find closing comment tag to match: " + startComment.nodeValue);
|
||||
return null;
|
||||
}
|
||||
|
||||
function getMatchingEndComment(startComment, allowUnbalanced) {
|
||||
var allVirtualChildren = getVirtualChildren(startComment, allowUnbalanced);
|
||||
if (allVirtualChildren) {
|
||||
if (allVirtualChildren.length > 0)
|
||||
return allVirtualChildren[allVirtualChildren.length - 1].nextSibling;
|
||||
return startComment.nextSibling;
|
||||
} else
|
||||
return null; // Must have no matching end comment, and allowUnbalanced is true
|
||||
}
|
||||
|
||||
function getUnbalancedChildTags(node) {
|
||||
// e.g., from <div>OK</div><!-- ko blah --><span>Another</span>, returns: <!-- ko blah --><span>Another</span>
|
||||
// from <div>OK</div><!-- /ko --><!-- /ko -->, returns: <!-- /ko --><!-- /ko -->
|
||||
var childNode = node.firstChild, captureRemaining = null;
|
||||
if (childNode) {
|
||||
do {
|
||||
if (captureRemaining) // We already hit an unbalanced node and are now just scooping up all subsequent nodes
|
||||
captureRemaining.push(childNode);
|
||||
else if (isStartComment(childNode)) {
|
||||
var matchingEndComment = getMatchingEndComment(childNode, /* allowUnbalanced: */ true);
|
||||
if (matchingEndComment) // It's a balanced tag, so skip immediately to the end of this virtual set
|
||||
childNode = matchingEndComment;
|
||||
else
|
||||
captureRemaining = [childNode]; // It's unbalanced, so start capturing from this point
|
||||
} else if (isEndComment(childNode)) {
|
||||
captureRemaining = [childNode]; // It's unbalanced (if it wasn't, we'd have skipped over it already), so start capturing
|
||||
}
|
||||
} while (childNode = childNode.nextSibling);
|
||||
}
|
||||
return captureRemaining;
|
||||
}
|
||||
|
||||
ko.virtualElements = {
|
||||
allowedBindings: {},
|
||||
|
||||
childNodes: function(node) {
|
||||
return isStartComment(node) ? getVirtualChildren(node) : node.childNodes;
|
||||
},
|
||||
|
||||
emptyNode: function(node) {
|
||||
if (!isStartComment(node))
|
||||
ko.utils.emptyDomNode(node);
|
||||
else {
|
||||
var virtualChildren = ko.virtualElements.childNodes(node);
|
||||
for (var i = 0, j = virtualChildren.length; i < j; i++)
|
||||
ko.removeNode(virtualChildren[i]);
|
||||
}
|
||||
},
|
||||
|
||||
setDomNodeChildren: function(node, childNodes) {
|
||||
if (!isStartComment(node))
|
||||
ko.utils.setDomNodeChildren(node, childNodes);
|
||||
else {
|
||||
ko.virtualElements.emptyNode(node);
|
||||
var endCommentNode = node.nextSibling; // Must be the next sibling, as we just emptied the children
|
||||
for (var i = 0, j = childNodes.length; i < j; i++)
|
||||
endCommentNode.parentNode.insertBefore(childNodes[i], endCommentNode);
|
||||
}
|
||||
},
|
||||
|
||||
prepend: function(containerNode, nodeToPrepend) {
|
||||
if (!isStartComment(containerNode)) {
|
||||
if (containerNode.firstChild)
|
||||
containerNode.insertBefore(nodeToPrepend, containerNode.firstChild);
|
||||
else
|
||||
containerNode.appendChild(nodeToPrepend);
|
||||
} else {
|
||||
// Start comments must always have a parent and at least one following sibling (the end comment)
|
||||
containerNode.parentNode.insertBefore(nodeToPrepend, containerNode.nextSibling);
|
||||
}
|
||||
},
|
||||
|
||||
insertAfter: function(containerNode, nodeToInsert, insertAfterNode) {
|
||||
if (!insertAfterNode) {
|
||||
ko.virtualElements.prepend(containerNode, nodeToInsert);
|
||||
} else if (!isStartComment(containerNode)) {
|
||||
// Insert after insertion point
|
||||
if (insertAfterNode.nextSibling)
|
||||
containerNode.insertBefore(nodeToInsert, insertAfterNode.nextSibling);
|
||||
else
|
||||
containerNode.appendChild(nodeToInsert);
|
||||
} else {
|
||||
// Children of start comments must always have a parent and at least one following sibling (the end comment)
|
||||
containerNode.parentNode.insertBefore(nodeToInsert, insertAfterNode.nextSibling);
|
||||
}
|
||||
},
|
||||
|
||||
firstChild: function(node) {
|
||||
if (!isStartComment(node))
|
||||
return node.firstChild;
|
||||
if (!node.nextSibling || isEndComment(node.nextSibling))
|
||||
return null;
|
||||
return node.nextSibling;
|
||||
},
|
||||
|
||||
nextSibling: function(node) {
|
||||
if (isStartComment(node))
|
||||
node = getMatchingEndComment(node);
|
||||
if (node.nextSibling && isEndComment(node.nextSibling))
|
||||
return null;
|
||||
return node.nextSibling;
|
||||
},
|
||||
|
||||
hasBindingValue: isStartComment,
|
||||
|
||||
virtualNodeBindingValue: function(node) {
|
||||
var regexMatch = (commentNodesHaveTextProperty ? node.text : node.nodeValue).match(startCommentRegex);
|
||||
return regexMatch ? regexMatch[1] : null;
|
||||
},
|
||||
|
||||
normaliseVirtualElementDomStructure: function(elementVerified) {
|
||||
// Workaround for https://github.com/SteveSanderson/knockout/issues/155
|
||||
// (IE <= 8 or IE 9 quirks mode parses your HTML weirdly, treating closing </li> tags as if they don't exist, thereby moving comment nodes
|
||||
// that are direct descendants of <ul> into the preceding <li>)
|
||||
if (!htmlTagsWithOptionallyClosingChildren[ko.utils.tagNameLower(elementVerified)])
|
||||
return;
|
||||
|
||||
// Scan immediate children to see if they contain unbalanced comment tags. If they do, those comment tags
|
||||
// must be intended to appear *after* that child, so move them there.
|
||||
var childNode = elementVerified.firstChild;
|
||||
if (childNode) {
|
||||
do {
|
||||
if (childNode.nodeType === 1) {
|
||||
var unbalancedTags = getUnbalancedChildTags(childNode);
|
||||
if (unbalancedTags) {
|
||||
// Fix up the DOM by moving the unbalanced tags to where they most likely were intended to be placed - *after* the child
|
||||
var nodeToInsertBefore = childNode.nextSibling;
|
||||
for (var i = 0; i < unbalancedTags.length; i++) {
|
||||
if (nodeToInsertBefore)
|
||||
elementVerified.insertBefore(unbalancedTags[i], nodeToInsertBefore);
|
||||
else
|
||||
elementVerified.appendChild(unbalancedTags[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
} while (childNode = childNode.nextSibling);
|
||||
}
|
||||
}
|
||||
};
|
||||
})();
|
||||
ko.exportSymbol('virtualElements', ko.virtualElements);
|
||||
ko.exportSymbol('virtualElements.allowedBindings', ko.virtualElements.allowedBindings);
|
||||
ko.exportSymbol('virtualElements.emptyNode', ko.virtualElements.emptyNode);
|
||||
//ko.exportSymbol('virtualElements.firstChild', ko.virtualElements.firstChild); // firstChild is not minified
|
||||
ko.exportSymbol('virtualElements.insertAfter', ko.virtualElements.insertAfter);
|
||||
//ko.exportSymbol('virtualElements.nextSibling', ko.virtualElements.nextSibling); // nextSibling is not minified
|
||||
ko.exportSymbol('virtualElements.prepend', ko.virtualElements.prepend);
|
||||
ko.exportSymbol('virtualElements.setDomNodeChildren', ko.virtualElements.setDomNodeChildren);
|
16
gulpfile.js
Normal file
16
gulpfile.js
Normal file
@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Created by Martin on 09/02/2016.
|
||||
*/
|
||||
var gulp = require('gulp')
|
||||
, jshint = require("gulp-jshint");
|
||||
|
||||
// task
|
||||
gulp.task('jsLint', function () {
|
||||
gulp.src('./lib/*.js') // path to your files
|
||||
.pipe(jshint())
|
||||
.pipe(jshint.reporter());
|
||||
|
||||
gulp.src('./test/*.js') // path to your files
|
||||
.pipe(jshint())
|
||||
.pipe(jshint.reporter()); // Dump results
|
||||
});
|
3
lib/mdSocket/mdSocket.js
Normal file
3
lib/mdSocket/mdSocket.js
Normal file
@ -0,0 +1,3 @@
|
||||
/**
|
||||
* Created by Martin on 10/02/2016.
|
||||
*/
|
109
lib/mqtt-ws/mqtt-ws.js
Normal file
109
lib/mqtt-ws/mqtt-ws.js
Normal file
@ -0,0 +1,109 @@
|
||||
"use strict";
|
||||
/**
|
||||
* Created by Martin on 10/02/2016.
|
||||
*/
|
||||
|
||||
var url = require('url'),
|
||||
util = require('util'),
|
||||
errno = require('errno'),
|
||||
log4js = require('log4js'),
|
||||
logger = log4js.getLogger(),
|
||||
mqttws = require('mqtt-ws');
|
||||
|
||||
function getErrnoDescription(err) {
|
||||
if (!err.errno) return undefined;
|
||||
if (typeof err.errno == 'number') {
|
||||
var e = errno.errno[err.errno];
|
||||
if (e) {
|
||||
return e.description;
|
||||
} else {
|
||||
return undefined;
|
||||
}
|
||||
} else if (typeof err.errno == 'string') {
|
||||
for (var e in errno.errno) {
|
||||
if (errno.errno[e].code == err.code) {
|
||||
return errno.errno[e].description;
|
||||
}
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
|
||||
function logError(err, message) {
|
||||
if (err.syscall != undefined) {
|
||||
var description = getErrnoDescription(err) || err.code;
|
||||
logger.error("%s on %s: %s", message, err.syscall, description);
|
||||
} else {
|
||||
logger.error("%s: %s", message, err);
|
||||
}
|
||||
}
|
||||
|
||||
exports.run = function(config) {
|
||||
if (config.log4js) {
|
||||
log4js.configure(config.log4js);
|
||||
}
|
||||
|
||||
// Create our bridge
|
||||
var bridge = mqttws.createBridge(config);
|
||||
logger.info("Listening for incoming WebSocket connections on port %d",
|
||||
bridge.port);
|
||||
|
||||
// Set up error handling
|
||||
bridge.on('error', function(err) {
|
||||
logError(err, "WebSocket Error");
|
||||
});
|
||||
|
||||
// Handle incoming WS connection
|
||||
bridge.on('connection', function(ws) {
|
||||
// URL-decode the URL, and use the URI part as the subscription topic
|
||||
logger.info("WebSocket connection from %s received", ws.connectString);
|
||||
|
||||
var self = this;
|
||||
|
||||
ws.on('error', function(err) {
|
||||
logError(err, util.format("WebSocket error in client %s", ws.connectString));
|
||||
});
|
||||
|
||||
// Parse the URL
|
||||
var parsed = url.parse(ws.upgradeReq.url, true);
|
||||
// Connect to the MQTT server using the URL query as options
|
||||
var mqtt = bridge.connectMqtt(parsed.query);
|
||||
mqtt.topic = decodeURIComponent(parsed.pathname.substring(1));
|
||||
mqtt.isWildcardTopic = (mqtt.topic.match(/[\+#]/) != null);
|
||||
|
||||
ws.on('close', function() {
|
||||
logger.info("WebSocket client %s closed", ws.connectString);
|
||||
mqtt.end();
|
||||
});
|
||||
|
||||
ws.on('message', function(message) {
|
||||
logger.info("WebSocket client %s publishing '%s' to %s",
|
||||
ws.connectString, message, mqtt.topic);
|
||||
mqtt.publish(mqtt.topic, message, mqtt.options);
|
||||
});
|
||||
|
||||
mqtt.on('error', function(err) {
|
||||
logError(err, "MQTT error");
|
||||
});
|
||||
|
||||
mqtt.on('connect', function() {
|
||||
logger.info("Connected to MQTT server at %s:%d", mqtt.host, mqtt.port);
|
||||
logger.info("WebSocket client %s subscribing to '%s'", ws.connectString, mqtt.topic);
|
||||
mqtt.subscribe(mqtt.topic);
|
||||
});
|
||||
|
||||
mqtt.on('close', function() {
|
||||
logger.info("MQTT connection for client %s closed",
|
||||
ws.connectString);
|
||||
ws.terminate();
|
||||
});
|
||||
|
||||
mqtt.on('message', function(topic, message, packet) {
|
||||
if (mqtt.isWildcardTopic) {
|
||||
ws.send(util.format("%s: %s", topic, message), self.options);
|
||||
} else {
|
||||
ws.send(message, self.options);
|
||||
}
|
||||
});
|
||||
});
|
||||
};
|
130
lib/mqtt/IoTFconnector.js
Normal file
130
lib/mqtt/IoTFconnector.js
Normal file
@ -0,0 +1,130 @@
|
||||
|
||||
|
||||
|
||||
var IoTFconnector = function (orgId, api_key, auth_token, $rootScope) {
|
||||
|
||||
|
||||
//this.connected = '';
|
||||
this.clientId = "a:" + orgId + ":" + Date.now();
|
||||
|
||||
console.log("clientId: " + this.clientId);
|
||||
this.hostname = orgId + ".messaging.internetofthings.ibmcloud.com";
|
||||
this.client = '';
|
||||
|
||||
this.initialize = function () {
|
||||
|
||||
client = new Messaging.Client(this.hostname, 8883, this.clientId);
|
||||
|
||||
|
||||
client.onMessageArrived = function (msg) {
|
||||
console.log("Message from :" + msg.destinationName);
|
||||
};
|
||||
|
||||
var connectOptions = new Object();
|
||||
connectOptions.keepAliveInterval = 3600;
|
||||
connectOptions.useSSL = true;
|
||||
connectOptions.userName = api_key;
|
||||
connectOptions.password = auth_token;
|
||||
|
||||
connectOptions.onSuccess = function () {
|
||||
IoTFconnector.prototype.clientStatus.connected = true;
|
||||
// $rootScope.$broadcast("clientStatusUpdated", clientStatus);
|
||||
console.log("MQTT connected to host: " + client.host + " port : " + client.port + " at " + Date.now());
|
||||
|
||||
}
|
||||
|
||||
connectOptions.onFailure = function (e) {
|
||||
console.log("MQTT connection failed at " + Date.now() + "\nerror: " + e.errorCode + " : " + e.errorMessage);
|
||||
}
|
||||
|
||||
console.log("about to connect to " + client.host);
|
||||
client.connect(connectOptions);
|
||||
|
||||
//client = new Messaging.Client(this.hostname, 8883, this.clientId);
|
||||
|
||||
//// Initialize the Realtime Graph
|
||||
////var rtGraph = new RealtimeGraph();
|
||||
//client.onMessageArrived = function(msg) {
|
||||
// //var topic = msg.destinationName;
|
||||
|
||||
// //var payload = JSON.parse(msg.payloadString);
|
||||
// ////First message, instantiate the graph
|
||||
// //if (firstMessage) {
|
||||
// // $('#chart').empty();
|
||||
// // firstMessage = false;
|
||||
// // rtGraph.displayChart(null, payload);
|
||||
// //} else {
|
||||
// // rtGraph.graphData(payload);
|
||||
// //}
|
||||
// console.log("Message from :" + msg.destinationName);
|
||||
//};
|
||||
|
||||
//client.onConnectionLost = function(e) {
|
||||
// console.log("Connection Lost at " + Date.now() + " : " + e.errorCode + " : " + e.errorMessage);
|
||||
// this.connect(connectOptions);
|
||||
//}
|
||||
|
||||
//var connectOptions = new Object();
|
||||
//connectOptions.keepAliveInterval = 3600;
|
||||
//connectOptions.useSSL = true;
|
||||
//connectOptions.userName = api_key;
|
||||
//connectOptions.password = auth_token;
|
||||
|
||||
//connectOptions.onSuccess = function() {
|
||||
// IoTFconnector.prototype.connected = true;
|
||||
// console.log("MQTT connected to host: " + client.host + " port : " + client.port + " at " + Date.now());
|
||||
|
||||
//}
|
||||
|
||||
//connectOptions.onFailure = function(e) {
|
||||
// console.log("MQTT connection failed at " + Date.now() + "\nerror: " + e.errorCode + " : " + e.errorMessage);
|
||||
//}
|
||||
|
||||
//console.log("about to connect to " + client.host);
|
||||
//client.connect(connectOptions);
|
||||
}
|
||||
|
||||
|
||||
this.initialize();
|
||||
|
||||
//var imageHTML = '<div class="iotdashboardtext">The selected device is not currently sending events to the Internet of Things Foundation</div><br><div class="iotdashboardtext">Select to view historical data or select a different device.</div> <img class="iotimagesMiddle" align="middle" alt="Chart" src="../../images/IOT_Icons_Thing02.svg">';
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
IoTFconnector.prototype.clientStatus = { connected: false, subscribeTopic: '' };;
|
||||
|
||||
IoTFconnector.prototype.disconnect = function disconnect() {
|
||||
client.disconnect();
|
||||
console.log("Connection closed");
|
||||
}
|
||||
|
||||
IoTFconnector.prototype.connect = function connect() {
|
||||
// this.initialize();
|
||||
}
|
||||
|
||||
|
||||
|
||||
IoTFconnector.prototype.subscribe = function subscribe(deviceId) {
|
||||
var subscribeOptions = {
|
||||
qos: 0,
|
||||
onSuccess: function () {
|
||||
console.log("subscribed to " + IoTFconnector.prototype.clientStatus.subscribeTopic);
|
||||
},
|
||||
onFailure: function () {
|
||||
console.log("Failed to subscribe to " + IoTFconnector.prototype.clientStatus.subscribeTopic);
|
||||
console.log("As messages are not available, visualization is not possible");
|
||||
}
|
||||
};
|
||||
|
||||
if (IoTFconnector.prototype.clientStatus.subscribeTopic != "") {
|
||||
console.log("Unsubscribing to " + IoTFconnector.prototype.clientStatus.subscribeTopic);
|
||||
client.unsubscribe(IoTFconnector.prototype.clientStatus.subscribeTopic);
|
||||
};
|
||||
|
||||
IoTFconnector.prototype.clientStatus.subscribeTopic = "iot-2/type/iotsample-ti-cc3200/id/" + deviceId + "/evt/+/fmt/json";
|
||||
|
||||
client.subscribe(IoTFconnector.prototype.clientStatus.subscribeTopic, subscribeOptions);
|
||||
}
|
65
lib/mqtt/mqttClient.js
Normal file
65
lib/mqtt/mqttClient.js
Normal file
@ -0,0 +1,65 @@
|
||||
var mqtt = require('mqtt');
|
||||
|
||||
var mqttClient = function () {
|
||||
|
||||
var orgId = "qz0da4";
|
||||
var userName = "a-qz0da4-dfwwdkmkzr";
|
||||
var appKey = "9txJEf3Cjy7hkSOvkv";
|
||||
|
||||
this.projector = 'ProjectorISP15';
|
||||
this.lighting = 'LightingISP15';
|
||||
|
||||
this.connected = false;
|
||||
|
||||
var options = {
|
||||
keepalive: 3600,
|
||||
clientId: "a:" + orgId + ":" + Date.now(),
|
||||
username: userName,
|
||||
password: new Buffer(appKey)
|
||||
|
||||
};
|
||||
|
||||
this.client = mqtt.connect('mqtt://' + orgId + '.messaging.internetofthings.ibmcloud.com', options);
|
||||
|
||||
this.client.on('connect', function () {
|
||||
connected = true;
|
||||
console.log('Connected to IBM');
|
||||
});
|
||||
|
||||
this.isConnected = function () {
|
||||
return this.connected;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
mqttClient.prototype.projectorOn = function () {
|
||||
|
||||
var destinationName = "iot-2/type/Ti-CC3200/id/" + this.projector + "/cmd/" + 'ON' + "/fmt/json";
|
||||
this.client.publish(destinationName, 'ON');
|
||||
};
|
||||
|
||||
mqttClient.prototype.projectorOff = function () {
|
||||
|
||||
var destinationName = "iot-2/type/Ti-CC3200/id/" + this.projector + "/cmd/" + 'OFF' + "/fmt/json";
|
||||
this.client.publish(destinationName, 'OFF');
|
||||
};
|
||||
|
||||
|
||||
mqttClient.prototype.lightsOn = function () {
|
||||
|
||||
var destinationName = "iot-2/type/Ti-CC3200/id/" + this.lighting + "/cmd/" + 'o' + "/fmt/json";
|
||||
this.client.publish(destinationName, 'o');
|
||||
destinationName = "iot-2/type/Ti-CC3200/id/" + this.lighting + "/cmd/" + 'n' + "/fmt/json";
|
||||
this.client.publish(destinationName, 'n');
|
||||
};
|
||||
|
||||
mqttClient.prototype.lightsOff = function () {
|
||||
|
||||
var destinationName = "iot-2/type/Ti-CC3200/id/" + this.lighting + "/cmd/" + 'f' + "/fmt/json";
|
||||
this.client.publish(destinationName, 'f');
|
||||
destinationName = "iot-2/type/Ti-CC3200/id/" + this.lighting + "/cmd/" + 'g' + "/fmt/json";
|
||||
this.client.publish(destinationName, 'g');
|
||||
};
|
||||
|
||||
module.exports.mqttClient = mqttClient;
|
225
lib/mqtt/mqttConnect.js
Normal file
225
lib/mqtt/mqttConnect.js
Normal file
@ -0,0 +1,225 @@
|
||||
/**
|
||||
* Created by Martin on 08/02/2016.
|
||||
*/
|
||||
"use strict";
|
||||
var mqtt = require('mqtt');
|
||||
|
||||
var Messaging = require("mqtt_over_websockets");
|
||||
var log4js = require('log4js');
|
||||
var logger = log4js.getLogger();
|
||||
|
||||
var mqttConfig = {
|
||||
orgId: 'qz0da4',
|
||||
userName: 'a-qz0da4-dfwwdkmkzr',
|
||||
appKey: '9txJEf3Cjy7hkSOvkv',
|
||||
prefix: 'iot-2/type/Ti-CC3200/id/'
|
||||
};
|
||||
|
||||
function randomString(length) {
|
||||
return Math.round((Math.pow(36, length + 1) - Math.random() * Math.pow(36, length))).toString(36).slice(1);
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
sockets : null,
|
||||
watches : {},
|
||||
client: null,
|
||||
projector: 'ProjectorISP15',
|
||||
lighting: 'LightingISP15',
|
||||
heating: 'HeatingISP15',
|
||||
myID: 0,
|
||||
connected: false,
|
||||
options: {
|
||||
keepalive: 3600,
|
||||
clientId: 'a:' + mqttConfig.orgId + ':' + Date.now(),
|
||||
username: mqttConfig.userName,
|
||||
password: new Buffer(mqttConfig.appKey)
|
||||
|
||||
},
|
||||
setEmitter: function(newEmitter)
|
||||
{
|
||||
this.emitter = newEmitter;
|
||||
},
|
||||
doConnection: function (cb) {
|
||||
console.log('Do connection');
|
||||
var self = this;
|
||||
if (this.client === null) {
|
||||
this.client = mqtt.connect('mqtt://' + mqttConfig.orgId + '.messaging.internetofthings.ibmcloud.com', this.options);
|
||||
|
||||
this.client.on('connect', function () {
|
||||
console.log('Connected to IBM');
|
||||
self.connected = this.connected;
|
||||
});
|
||||
}
|
||||
return this;
|
||||
},
|
||||
isConnected: function () {
|
||||
return this.connected;
|
||||
},
|
||||
sendCommand: function (deviceID, command) {
|
||||
var payload = {
|
||||
id: "d",
|
||||
text: command
|
||||
|
||||
};
|
||||
},
|
||||
projectorOn: function (callback) {
|
||||
var _callback = callback || {};
|
||||
|
||||
if (!this.client) {
|
||||
return -1;
|
||||
}
|
||||
var destinationName = mqttConfig.prefix + this.projector + "/cmd/" + 'ON' + "/fmt/json";
|
||||
this.client.publish(destinationName, 'ON', _callback);
|
||||
},
|
||||
projectorOff: function (callback) {
|
||||
var _callback = callback || {};
|
||||
if (!this.client) {
|
||||
return -1;
|
||||
}
|
||||
var destinationName = mqttConfig.prefix + this.projector + "/cmd/" + 'OFF' + "/fmt/json";
|
||||
this.client.publish(destinationName, 'OFF', _callback);
|
||||
},
|
||||
heatingOn: function (callback) {
|
||||
console.log('Turn heating on...');
|
||||
var _callback = callback || null;
|
||||
if (!this.client) {
|
||||
return -1;
|
||||
}
|
||||
var destinationName = mqttConfig.prefix + this.heating + "/cmd/" + 'on' + "/fmt/json";
|
||||
this.client.publish(destinationName, 'ON', _callback);
|
||||
|
||||
},
|
||||
heatingOff: function (callback) {
|
||||
var _callback = callback || {};
|
||||
if (!this.client) {
|
||||
return -1;
|
||||
}
|
||||
var destinationName = mqttConfig.prefix + this.heating + "/cmd/" + 'off' + "/fmt/json";
|
||||
this.client.publish(destinationName, 'OFF', _callback);
|
||||
|
||||
},
|
||||
lightingOn: function (id, callback) {
|
||||
console.log('lightingOn:' + id);
|
||||
var _callback = callback || null;
|
||||
if (!this.client) {
|
||||
return -1;
|
||||
}
|
||||
var destinationName = mqttConfig.prefix + this.lighting + "/cmd/" + id + "/fmt/json";
|
||||
this.client.publish(destinationName, 'ON', _callback);
|
||||
|
||||
},
|
||||
lightingOff: function (id, callback) {
|
||||
var _callback = callback || null;
|
||||
if (!this.client) {
|
||||
return -1;
|
||||
}
|
||||
var destinationName = mqttConfig.prefix + this.lighting + "/cmd/" + id + "/fmt/json";
|
||||
this.client.publish(destinationName, 'OFF', _callback);
|
||||
|
||||
},
|
||||
|
||||
connectWS: function (connectCB) {
|
||||
|
||||
logger.debug("Going to connect WS");
|
||||
var self = this;
|
||||
var hostname = "qz0da4" + ".messaging.internetofthings.ibmcloud.com";
|
||||
var clientId = "a:" + "qz0da4" + ":" + Date.now();
|
||||
|
||||
var api_key = "a-qz0da4-dfwwdkmkzr";
|
||||
var auth_token = "9txJEf3Cjy7hkSOvkv";
|
||||
|
||||
var wsClient = new Messaging.Client(hostname, 8883, clientId);
|
||||
var clientStatus = {connected: false, subscribed: false, deviceConnected: false};
|
||||
var sensorData = {};
|
||||
var watches ={};
|
||||
|
||||
wsClient.onMessageArrived = function (msg) {
|
||||
// console.log("Message from :" + msg.destinationName);
|
||||
clientStatus.deviceConnected = true;
|
||||
// $rootScope.$broadcast("clientStatusUpdated", clientStatus);
|
||||
//logger.debug("clientStatusUpdated", clientStatus);
|
||||
sensorData = JSON.parse(msg.payloadString);
|
||||
var temp = msg.destinationName.split("/");
|
||||
//console.log(temp[4]);
|
||||
//console.log(sensorData);
|
||||
if (self.watches.hasOwnProperty(temp[4]))
|
||||
{
|
||||
|
||||
// logger.info('Emit: ' + JSON.stringify({id:self.watches[temp[4]],sensorData:sensorData}));
|
||||
|
||||
self.emitter.emit('sendSocket',{id:self.watches[temp[4]],sensorData:sensorData});
|
||||
}
|
||||
/* if (temp[4] == lighting) {
|
||||
// $rootScope.$broadcast("LightingDataReceived", sensorData);
|
||||
}
|
||||
if (temp[4] == projector) {
|
||||
// $rootScope.$broadcast("ProjectorDataReceived", sensorData);
|
||||
}
|
||||
if (temp[4] == heating) {
|
||||
// $rootScope.$broadcast("HeatingISP15DataReceived", sensorData);
|
||||
}*/
|
||||
|
||||
};
|
||||
|
||||
var connectOptions = {};
|
||||
connectOptions.keepAliveInterval = 3600;
|
||||
connectOptions.useSSL = true;
|
||||
connectOptions.userName = api_key;
|
||||
connectOptions.password = auth_token;
|
||||
|
||||
connectOptions.onSuccess = function () {
|
||||
clientStatus.connected = true;
|
||||
logger.info("MQTT connected to host: " + wsClient.host + " port : " + wsClient.port + " at " + Date.now());
|
||||
|
||||
self.emitter.emit("clientStatusUpdated", clientStatus);
|
||||
self.emitter.emit("clientConnected", self.sockets);
|
||||
};
|
||||
|
||||
connectOptions.onFailure = function (e) {
|
||||
logger.error("MQTT connection failed at " + Date.now() + "\nerror: " + e.errorCode + " : " + e.errorMessage);
|
||||
};
|
||||
|
||||
logger.debug("about to connect to " + wsClient.host);
|
||||
wsClient.connect(connectOptions);
|
||||
|
||||
this.sockets = {
|
||||
getClientStatus: function () {
|
||||
return clientStatus;
|
||||
},
|
||||
subscribe: function( deviceId, emitterId) {
|
||||
logger.debug("trying to subscribe");
|
||||
var subscribeTopic = "iot-2/type/Ti-CC3200/id/" + deviceId + "/evt/+/fmt/json";
|
||||
logger.debug(subscribeTopic);
|
||||
|
||||
var subscribeOptions = {
|
||||
qos: 0,
|
||||
onSuccess: function () {
|
||||
console.log("subscribed to " + subscribeTopic);
|
||||
clientStatus.subscribed = true;
|
||||
// $rootScope.$broadcast("clientStatusUpdated", clientStatus);
|
||||
|
||||
self.emitter.emit("clientStatusUpdated", clientStatus);
|
||||
self.watches[deviceId] = emitterId;
|
||||
},
|
||||
onFailure: function () {
|
||||
console.log("Failed to subscribe to " + subscribeTopic);
|
||||
console.log("As messages are not available, visualization is not possible");
|
||||
}
|
||||
};
|
||||
|
||||
/*if (IoTFconnector.prototype.clientStatus.subscribeTopic != "") {
|
||||
console.log("Unsubscribing to " + subscribeTopic);
|
||||
wsClient.unsubscribe(IoTFconnector.prototype.clientStatus.subscribeTopic);
|
||||
};*/
|
||||
|
||||
wsClient.subscribe(subscribeTopic, subscribeOptions);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
return this.sockets;
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
|
1791
lib/mqtt/mqttws31.js
Normal file
1791
lib/mqtt/mqttws31.js
Normal file
File diff suppressed because it is too large
Load Diff
25
old-tests/server.js
Normal file
25
old-tests/server.js
Normal file
@ -0,0 +1,25 @@
|
||||
/**
|
||||
* Created by Martin on 08/02/2016.
|
||||
*/
|
||||
var request = require('superagent'), should=require('should');
|
||||
|
||||
describe('homepage', function() {
|
||||
it('should respond to GET', function(done) {
|
||||
request.get('http://localhost:3000')
|
||||
.end(function(err,res) {
|
||||
if (err) {return done(err);}
|
||||
should(res.status).equal(200);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should not respond to POST', function(done) {
|
||||
request.post('http://localhost:3000')
|
||||
.send({name:'Martin'})
|
||||
.set('Accept','application/json')
|
||||
.end(function(res) {
|
||||
should(res.status).equal(404);
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
41
old-tests/simple.js
Normal file
41
old-tests/simple.js
Normal file
@ -0,0 +1,41 @@
|
||||
var assert = require('assert');
|
||||
describe('martins personal tests', function () {
|
||||
describe('String#split', function () {
|
||||
it('should return an array', function () {
|
||||
assert(Array.isArray('a,b,c'.split(',')));
|
||||
});
|
||||
});
|
||||
|
||||
describe('Asynch test', function () {
|
||||
var foo = false;
|
||||
|
||||
before(function (done) {
|
||||
setTimeout(function () {
|
||||
foo = true;
|
||||
done();
|
||||
}, 1500);
|
||||
});
|
||||
|
||||
it('should pass', function () {
|
||||
foo.should.be.true();
|
||||
});
|
||||
});
|
||||
|
||||
describe('should tests', function () {
|
||||
it('should be 5', function () {
|
||||
(5).should.be.exactly(5).and.be.a.Number();
|
||||
});
|
||||
|
||||
it('test chaining', function() {
|
||||
var user = { name: 'tj', pets: ['tobi', 'loki', 'jane', 'bandit'] };
|
||||
|
||||
user.should.be.an.instanceOf(Object).and.have.property('name', 'tj');
|
||||
|
||||
user.should.have.ownProperty('name')
|
||||
.which.not.have.length(3)
|
||||
.and.be.equal('tj');
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
|
145
old-tests/simpleMQTT.js
Normal file
145
old-tests/simpleMQTT.js
Normal file
@ -0,0 +1,145 @@
|
||||
"use strict";
|
||||
var should = require('should'), mqtt = require('mqtt'), mqttConnect = require('../lib/mqtt/mqttConnect');
|
||||
|
||||
describe('MQTT - Lighting', function () {
|
||||
beforeEach(function () {
|
||||
mqttConnect.doConnection();
|
||||
});
|
||||
|
||||
it('should create client', function (done) {
|
||||
mqttConnect.client.should.be.instanceOf(mqtt.MqttClient);
|
||||
done();
|
||||
});
|
||||
|
||||
it('should connect to IBM', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the projector ON', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.projectorOn(function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
it('should turn the projector OFF', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.projectorOff(function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
it('should turn the heating ON', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.heatingOn(function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
it('should turn the heating OFF', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.heatingOff(function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the front light ON', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.lightingOn('1',function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the middle light ON', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.lightingOn('2',function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the back light ON', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.lightingOn('3',function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the front light OFF', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.lightingOff('a',function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the middle light OFF', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.lightingOff('b',function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the back light OFF', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.lightingOff('c',function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
});
|
42
package.json
Normal file
42
package.json
Normal file
@ -0,0 +1,42 @@
|
||||
{
|
||||
"name": "sodashserver",
|
||||
"version": "0.0.1",
|
||||
"description": "Smart Office Dashboard Server",
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
"test": "test"
|
||||
},
|
||||
"dependencies": {
|
||||
"body-parser": "^1.14.2",
|
||||
"cookie-parser": "*",
|
||||
"ejs": "*",
|
||||
"errorhandler": "*",
|
||||
"express": "^4.13.4",
|
||||
"express-session": "*",
|
||||
"htmlparser": "^1.7.7",
|
||||
"method-override": "*",
|
||||
"minibus": "^3.1.0",
|
||||
"morgan": "*",
|
||||
"mqtt": "^1.7.0",
|
||||
"mqtt_over_websockets": "0.0.1",
|
||||
"node-localstorage": "^1.1.2",
|
||||
"request": "*",
|
||||
"websocket": "^1.0.22"
|
||||
},
|
||||
"devDependencies": {
|
||||
"after": "^0.8.1",
|
||||
"chai": "^3.5.0",
|
||||
"gulp-jshint": "^2.0.0",
|
||||
"jshint": "^2.9.1",
|
||||
"log4js": "^0.6.31",
|
||||
"mocha": "^2.4.5",
|
||||
"should": "^8.2.2",
|
||||
"superagent": "^1.7.2",
|
||||
"supertest": "^1.1.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha --recursive --reporter spec --bail --check-leaks --timeout 3000"
|
||||
},
|
||||
"author": "Martin Donnelly",
|
||||
"license": "ISC"
|
||||
}
|
59
routes/heating_v1.js
Normal file
59
routes/heating_v1.js
Normal file
@ -0,0 +1,59 @@
|
||||
"use strict";
|
||||
/**
|
||||
* Created by Martin on 09/02/2016.
|
||||
*/
|
||||
|
||||
var log4js = require('log4js');
|
||||
var logger = log4js.getLogger();
|
||||
|
||||
var mqttConnect;
|
||||
|
||||
function doHeatingOn() {
|
||||
|
||||
mqttConnect.doConnection().heatingOn();
|
||||
}
|
||||
|
||||
function doHeatingOff() {
|
||||
|
||||
mqttConnect.doConnection().heatingOff();
|
||||
}
|
||||
|
||||
function setUseRef(ref) {
|
||||
mqttConnect = ref;
|
||||
}
|
||||
|
||||
function getStatus() {
|
||||
logger.debug(mqttConnect.socketSet.getClientStatus());
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
mqttConnect:null,
|
||||
socket:null,
|
||||
use: function (ref) {
|
||||
setUseRef(ref);
|
||||
},
|
||||
turnoff: function (req, res) {
|
||||
doHeatingOff();
|
||||
|
||||
res.setHeader('Content-Type', 'application/json');
|
||||
res.end(JSON.stringify({}));
|
||||
},
|
||||
turnon: function (req, res) {
|
||||
|
||||
doHeatingOn();
|
||||
|
||||
res.setHeader('Content-Type', 'application/json');
|
||||
res.end(JSON.stringify({}));
|
||||
},
|
||||
setsocket: function (socket) {
|
||||
this.socket = socket;
|
||||
return this;
|
||||
|
||||
},
|
||||
subscribe: function (socket) {
|
||||
|
||||
this.socket.subscribe('HeatingISP15','HeatingDataReceived');
|
||||
}
|
||||
};
|
||||
|
||||
|
75
routes/lighting_v1.js
Normal file
75
routes/lighting_v1.js
Normal file
@ -0,0 +1,75 @@
|
||||
"use strict";
|
||||
/**
|
||||
* Created by Martin on 09/02/2016.
|
||||
*/
|
||||
|
||||
/*var mqttConnect = require("../lib/mqtt/mqttConnect");
|
||||
mqttConnect.doConnection();*/
|
||||
|
||||
var mqttConnect;
|
||||
|
||||
function doLightsOn(id) {
|
||||
|
||||
mqttConnect.doConnection().lightingOn(id);
|
||||
}
|
||||
|
||||
function doLightsOff(id) {
|
||||
|
||||
mqttConnect.doConnection().lightingOff(id);
|
||||
}
|
||||
|
||||
function setUseRef(ref) {
|
||||
mqttConnect = ref;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
mqttConnect:null,
|
||||
socket:null,
|
||||
use: function (ref) {
|
||||
setUseRef(ref);
|
||||
},
|
||||
turnoff: function (req, res) {
|
||||
if (!req.body.light) {
|
||||
res.status(400).send({ status: 'error', error: 'missing required parameter' });
|
||||
return;
|
||||
}
|
||||
|
||||
console.log(req.body.light);
|
||||
|
||||
if (req.body.hasOwnProperty('light'))
|
||||
{
|
||||
var light = req.body.light;
|
||||
doLightsOff(light);
|
||||
}
|
||||
|
||||
res.setHeader('Content-Type', 'application/json');
|
||||
res.end(JSON.stringify({}));
|
||||
},
|
||||
turnon: function (req, res) {
|
||||
|
||||
if (!req.body.light) {
|
||||
res.status(400).send({ status: 'error', error: 'missing required parameter' });
|
||||
return;
|
||||
}
|
||||
|
||||
console.log(req.body.light);
|
||||
|
||||
if (req.body.hasOwnProperty('light'))
|
||||
{
|
||||
var light = req.body.light;
|
||||
doLightsOn(light);
|
||||
}
|
||||
|
||||
res.setHeader('Content-Type', 'application/json');
|
||||
res.end(JSON.stringify({}));
|
||||
},
|
||||
setsocket: function (socket) {
|
||||
this.socket = socket;
|
||||
return this;
|
||||
|
||||
},
|
||||
subscribe: function (socket) {
|
||||
|
||||
this.socket.subscribe('LightingISP15','LightingDataReceived');
|
||||
}
|
||||
};
|
53
routes/projector_v1.js
Normal file
53
routes/projector_v1.js
Normal file
@ -0,0 +1,53 @@
|
||||
/**
|
||||
* Created by Martin on 10/02/2016.
|
||||
*/
|
||||
"use strict";
|
||||
/**
|
||||
* Created by Martin on 09/02/2016.
|
||||
*/
|
||||
|
||||
var mqttConnect;
|
||||
|
||||
function doProjectorOn() {
|
||||
|
||||
mqttConnect.doConnection().projectorOn();
|
||||
}
|
||||
|
||||
function doProjectorOff() {
|
||||
|
||||
mqttConnect.doConnection().projectorOff();
|
||||
}
|
||||
|
||||
function setUseRef(ref) {
|
||||
mqttConnect = ref;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
mqttConnect:null,
|
||||
socket:null,
|
||||
use: function (ref) {
|
||||
setUseRef(ref);
|
||||
},
|
||||
turnoff: function (req, res) {
|
||||
doProjectorOff();
|
||||
|
||||
res.setHeader('Content-Type', 'application/json');
|
||||
res.end(JSON.stringify({}));
|
||||
},
|
||||
turnon: function (req, res) {
|
||||
doProjectorOn();
|
||||
|
||||
res.setHeader('Content-Type', 'application/json');
|
||||
res.end(JSON.stringify({}));
|
||||
},
|
||||
setsocket: function (socket) {
|
||||
this.socket = socket;
|
||||
return this;
|
||||
|
||||
},
|
||||
subscribe: function (socket) {
|
||||
|
||||
this.socket.subscribe('ProjectorISP15','ProjectorDataReceived');
|
||||
}
|
||||
};
|
||||
|
3
test/mocha.opts
Normal file
3
test/mocha.opts
Normal file
@ -0,0 +1,3 @@
|
||||
--require should
|
||||
--slow 200
|
||||
--growl
|
57
test/mqttHeating.js
Normal file
57
test/mqttHeating.js
Normal file
@ -0,0 +1,57 @@
|
||||
"use strict";
|
||||
var should = require('should'), mqtt = require('mqtt'), mqttConnect = require('../lib/mqtt/mqttConnect');
|
||||
var mqttC;
|
||||
describe('MQTT - Heating', function () {
|
||||
before(function () {
|
||||
// mqttC = mqttConnect.doConnection();
|
||||
|
||||
mqttC = new mqttConnect();
|
||||
mqttC.connected();
|
||||
});
|
||||
|
||||
it('should create client', function (done) {
|
||||
mqttConnect.client.should.be.instanceOf(mqtt.MqttClient);
|
||||
done();
|
||||
});
|
||||
|
||||
it('should connect to IBM', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
||||
it('should turn the heating ON', function (done) {
|
||||
/*mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.heatingOn(function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});*/
|
||||
mqttC.heatingOn(function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
});
|
||||
|
||||
it('should turn the heating OFF', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.heatingOff(function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
});
|
94
test/mqttLighting.js
Normal file
94
test/mqttLighting.js
Normal file
@ -0,0 +1,94 @@
|
||||
"use strict";
|
||||
var should = require('should'), mqtt = require('mqtt'), mqttConnect = require('../lib/mqtt/mqttConnect');
|
||||
|
||||
describe('MQTT', function () {
|
||||
beforeEach(function () {
|
||||
mqttConnect.doConnection();
|
||||
});
|
||||
|
||||
it('should create client', function (done) {
|
||||
mqttConnect.client.should.be.instanceOf(mqtt.MqttClient);
|
||||
done();
|
||||
});
|
||||
|
||||
it('should connect to IBM', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the front light ON', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.lightingOn('1',function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the middle light ON', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.lightingOn('2',function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the back light ON', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.lightingOn('3',function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the front light OFF', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.lightingOff('a',function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the middle light OFF', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.lightingOff('b',function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the back light OFF', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.lightingOff('c',function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
});
|
49
test/mqttProjector.js
Normal file
49
test/mqttProjector.js
Normal file
@ -0,0 +1,49 @@
|
||||
"use strict";
|
||||
var should = require('should'), mqtt = require('mqtt'), mqttConnect = require('../lib/mqtt/mqttConnect');
|
||||
|
||||
describe('MQTT - Projector', function () {
|
||||
beforeEach(function () {
|
||||
mqttConnect.doConnection();
|
||||
});
|
||||
|
||||
it('should create client', function (done) {
|
||||
mqttConnect.client.should.be.instanceOf(mqtt.MqttClient);
|
||||
done();
|
||||
});
|
||||
|
||||
it('should connect to IBM', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
|
||||
it('should turn the projector ON', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.projectorOn(function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
it('should turn the projector OFF', function (done) {
|
||||
mqttConnect.client.on('connect', function () {
|
||||
mqttConnect.projectorOff(function (err) {
|
||||
should.not.exist(err);
|
||||
});
|
||||
done();
|
||||
})
|
||||
.on('error', function (err) {
|
||||
done(err);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
});
|
0
views/index.html
Normal file
0
views/index.html
Normal file
Loading…
Reference in New Issue
Block a user