mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
741aef55e4
* fix: ignore self-referential transclusion * feat: support old <$transclude tiddler param * fix: restore old behavior: include itself like backlinks[] * refactor: use LinkedList in transcludes[] and backtranscludes[] * fix: only fallback to title when {{!!xxx}}, not when input is empty * refactor: move transcludes ast extractor to a file * refactor: move links ast extractor to a file * Revert "refactor: move links ast extractor to a file" This reverts commit5600a00cd8
. * Revert "refactor: move transcludes ast extractor to a file" This reverts commit61d5484f09
. * lint: use pushTop and remove space
123 lines
2.9 KiB
JavaScript
123 lines
2.9 KiB
JavaScript
/*\
|
|
title: $:/core/modules/indexers/back-indexer.js
|
|
type: application/javascript
|
|
module-type: indexer
|
|
|
|
By parsing the tiddler text, indexes the tiddlers' back links, back transclusions, block level back links.
|
|
|
|
\*/
|
|
function BackIndexer(wiki) {
|
|
this.wiki = wiki;
|
|
}
|
|
|
|
BackIndexer.prototype.init = function() {
|
|
this.subIndexers = {
|
|
link: new BackSubIndexer(this,"extractLinks"),
|
|
transclude: new BackSubIndexer(this,"extractTranscludes"),
|
|
};
|
|
};
|
|
|
|
BackIndexer.prototype.rebuild = function() {
|
|
$tw.utils.each(this.subIndexers,function(subIndexer) {
|
|
subIndexer.rebuild();
|
|
});
|
|
};
|
|
|
|
BackIndexer.prototype.update = function(updateDescriptor) {
|
|
$tw.utils.each(this.subIndexers,function(subIndexer) {
|
|
subIndexer.update(updateDescriptor);
|
|
});
|
|
};
|
|
function BackSubIndexer(indexer,extractor) {
|
|
this.wiki = indexer.wiki;
|
|
this.indexer = indexer;
|
|
this.extractor = extractor;
|
|
/**
|
|
* {
|
|
* [target title, e.g. tiddler title being linked to]:
|
|
* {
|
|
* [source title, e.g. tiddler title that has link syntax in its text]: true
|
|
* }
|
|
* }
|
|
*/
|
|
this.index = null;
|
|
}
|
|
|
|
BackSubIndexer.prototype.init = function() {
|
|
// lazy init until first lookup
|
|
this.index = null;
|
|
}
|
|
|
|
BackSubIndexer.prototype._init = function() {
|
|
this.index = Object.create(null);
|
|
var self = this;
|
|
this.wiki.forEachTiddler(function(sourceTitle,tiddler) {
|
|
var newTargets = self._getTarget(tiddler);
|
|
$tw.utils.each(newTargets, function(target) {
|
|
if(!self.index[target]) {
|
|
self.index[target] = Object.create(null);
|
|
}
|
|
self.index[target][sourceTitle] = true;
|
|
});
|
|
});
|
|
}
|
|
|
|
BackSubIndexer.prototype.rebuild = function() {
|
|
this.index = null;
|
|
}
|
|
|
|
/*
|
|
* Get things that is being referenced in the text, e.g. tiddler names in the link syntax.
|
|
*/
|
|
BackSubIndexer.prototype._getTarget = function(tiddler) {
|
|
if(this.wiki.isBinaryTiddler(tiddler.fields.text)) {
|
|
return [];
|
|
}
|
|
var parser = this.wiki.parseText(tiddler.fields.type, tiddler.fields.text, {});
|
|
if(parser) {
|
|
return this.wiki[this.extractor](parser.tree, tiddler.fields.title);
|
|
}
|
|
return [];
|
|
}
|
|
|
|
BackSubIndexer.prototype.update = function(updateDescriptor) {
|
|
// lazy init/update until first lookup
|
|
if(!this.index) {
|
|
return;
|
|
}
|
|
var newTargets = [],
|
|
oldTargets = [],
|
|
self = this;
|
|
if(updateDescriptor.old.exists) {
|
|
oldTargets = this._getTarget(updateDescriptor.old.tiddler);
|
|
}
|
|
if(updateDescriptor.new.exists) {
|
|
newTargets = this._getTarget(updateDescriptor.new.tiddler);
|
|
}
|
|
|
|
$tw.utils.each(oldTargets,function(target) {
|
|
if(self.index[target]) {
|
|
delete self.index[target][updateDescriptor.old.tiddler.fields.title];
|
|
}
|
|
});
|
|
$tw.utils.each(newTargets,function(target) {
|
|
if(!self.index[target]) {
|
|
self.index[target] = Object.create(null);
|
|
}
|
|
self.index[target][updateDescriptor.new.tiddler.fields.title] = true;
|
|
});
|
|
}
|
|
|
|
BackSubIndexer.prototype.lookup = function(title) {
|
|
if(!this.index) {
|
|
this._init();
|
|
}
|
|
if(this.index[title]) {
|
|
return Object.keys(this.index[title]);
|
|
} else {
|
|
return [];
|
|
}
|
|
}
|
|
|
|
exports.BackIndexer = BackIndexer;
|