mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-03-11 17:21:56 -07:00
52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
/*\
|
|
title: $:/core/modules/widgets/count.js
|
|
type: application/javascript
|
|
module-type: widget
|
|
\*/
|
|
|
|
"use strict";
|
|
|
|
var Widget = require("$:/core/modules/widgets/widget.js").widget;
|
|
|
|
var CountWidget = function(parseTreeNode,options) {
|
|
this.initialise(parseTreeNode,options);
|
|
};
|
|
|
|
CountWidget.prototype = new Widget();
|
|
|
|
CountWidget.prototype.render = function(parent,nextSibling) {
|
|
this.parentDomNode = parent;
|
|
this.computeAttributes();
|
|
this.execute();
|
|
var textNode = this.document.createTextNode(this.currentCount);
|
|
parent.insertBefore(textNode,nextSibling);
|
|
this.domNodes.push(textNode);
|
|
};
|
|
|
|
CountWidget.prototype.execute = function() {
|
|
// Get parameters from our attributes
|
|
this.filter = this.getAttribute("filter");
|
|
// Execute the filter
|
|
if(this.filter) {
|
|
this.currentCount = this.wiki.filterTiddlers(this.filter,this).length;
|
|
} else {
|
|
this.currentCount = "0";
|
|
}
|
|
};
|
|
|
|
CountWidget.prototype.refresh = function(changedTiddlers) {
|
|
// Re-execute the filter to get the count
|
|
this.computeAttributes();
|
|
var oldCount = this.currentCount;
|
|
this.execute();
|
|
if(this.currentCount !== oldCount) {
|
|
// Regenerate and rerender the widget and replace the existing DOM node
|
|
this.refreshSelf();
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
|
|
};
|
|
|
|
exports.count = CountWidget;
|