2011-11-22 14:29:29 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
Tiddlers are an immutable dictionary of name:value pairs called fields. Values can be a string, an array
|
|
|
|
of strings, or a date.
|
|
|
|
|
|
|
|
Hardcoded in the system is the knowledge that the 'tags' field is a string array, and that the 'modified'
|
|
|
|
and 'created' fields are dates. All other fields are strings.
|
|
|
|
|
|
|
|
The Tiddler object exposes the following API
|
|
|
|
|
2011-11-30 18:39:39 +00:00
|
|
|
new Tiddler(src) - create a Tiddler given a hashmap of field values or a tiddler to clone
|
|
|
|
new Tiddler(src1,src2) - create a Tiddler with the union of the fields from the
|
|
|
|
sources, with the rightmost taking priority
|
2011-11-22 14:29:29 +00:00
|
|
|
Tiddler.fields - hashmap of tiddler fields
|
|
|
|
|
2011-11-30 18:39:39 +00:00
|
|
|
The hashmap(s) can specify the "modified" and "created" fields as strings in YYYYMMDDHHMMSSMMM
|
|
|
|
format or as JavaScript date objects. The "tags" field can be given as a JavaScript array of strings or
|
|
|
|
as a TiddlyWiki quoted string (eg, "one [[two three]]").
|
|
|
|
|
2011-11-22 14:29:29 +00:00
|
|
|
*/
|
|
|
|
|
2011-12-01 10:30:17 +00:00
|
|
|
/*global require: false, exports: false */
|
2011-11-30 17:27:00 +00:00
|
|
|
"use strict";
|
|
|
|
|
2011-11-30 19:35:01 +00:00
|
|
|
var utils = require("./Utils.js"),
|
|
|
|
ArgParser = require("./ArgParser.js").ArgParser;
|
|
|
|
|
2011-11-22 14:29:29 +00:00
|
|
|
var Tiddler = function(/* tiddler,fields */) {
|
|
|
|
this.fields = {};
|
2011-11-30 18:39:39 +00:00
|
|
|
for(var c=0; c<arguments.length; c++) {
|
|
|
|
var arg = arguments[c],
|
|
|
|
src = null;
|
|
|
|
if(arg instanceof Tiddler) {
|
|
|
|
src = arg.fields;
|
|
|
|
} else {
|
|
|
|
src = arg;
|
|
|
|
}
|
|
|
|
for(var t in src) {
|
|
|
|
var f = this.parseField(t,src[t]);
|
|
|
|
if(f !== null) {
|
|
|
|
this.fields[t] = f;
|
|
|
|
}
|
2011-11-22 14:29:29 +00:00
|
|
|
}
|
|
|
|
}
|
2011-11-30 18:39:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Tiddler.prototype.parseField = function(name,value) {
|
|
|
|
var type = Tiddler.specialFields[name];
|
|
|
|
if(type) {
|
|
|
|
return Tiddler.specialParsers[type](value);
|
|
|
|
} else if (typeof value === "string") {
|
|
|
|
return value;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// These are the non-string fields
|
|
|
|
Tiddler.specialFields = {
|
|
|
|
"created": "date",
|
|
|
|
"modified": "date",
|
|
|
|
"tags": "array"
|
|
|
|
};
|
|
|
|
|
|
|
|
Tiddler.specialParsers = {
|
|
|
|
date: function(value) {
|
|
|
|
if(typeof value === "string") {
|
|
|
|
return utils.convertFromYYYYMMDDHHMMSSMMM(value);
|
|
|
|
} else if (value instanceof Date) {
|
|
|
|
return value;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
array: function(value) {
|
|
|
|
if(typeof value === "string") {
|
|
|
|
var parser = new ArgParser(value,{noNames: true});
|
|
|
|
return parser.getValuesByName("","");
|
|
|
|
} else if (value instanceof Array) {
|
|
|
|
var result = [];
|
|
|
|
for(var t=0; t<value.length; t++) {
|
|
|
|
if(typeof value[t] === "string") {
|
|
|
|
result.push(value[t]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2011-11-22 14:29:29 +00:00
|
|
|
}
|
2011-11-30 18:39:39 +00:00
|
|
|
};
|
2011-11-22 14:29:29 +00:00
|
|
|
|
|
|
|
exports.Tiddler = Tiddler;
|