aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.3/examples/annotator/data/matcher.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/addon-sdk-1.3/examples/annotator/data/matcher.js')
-rw-r--r--tools/addon-sdk-1.3/examples/annotator/data/matcher.js46
1 files changed, 46 insertions, 0 deletions
diff --git a/tools/addon-sdk-1.3/examples/annotator/data/matcher.js b/tools/addon-sdk-1.3/examples/annotator/data/matcher.js
new file mode 100644
index 0000000..5dbd967
--- /dev/null
+++ b/tools/addon-sdk-1.3/examples/annotator/data/matcher.js
@@ -0,0 +1,46 @@
+/*
+Locate anchors for annotations and prepare to display the annotations.
+
+For each annotation, if its URL matches this page,
+- get the ancestor whose ID matches the ID in the anchor
+- look for a <p> element whose content contains the anchor text
+
+That's considered a match. Then we:
+- highlight the anchor element
+- add an 'annotated' class to tell the selector to skip this element
+- embed the annottion text as a new attribute
+
+For all annotated elements:
+- bind 'mouseenter' and 'mouseleave' events to the element, to send 'show'
+ and 'hide' messages back to the add-on.
+*/
+
+self.on('message', function onMessage(annotations) {
+ annotations.forEach(
+ function(annotation) {
+ if(annotation.url == document.location.toString()) {
+ createAnchor(annotation);
+ }
+ });
+
+ $('.annotated').css('border', 'solid 3px yellow');
+
+ $('.annotated').bind('mouseenter', function(event) {
+ self.port.emit('show', $(this).attr('annotation'));
+ event.stopPropagation();
+ event.preventDefault();
+ });
+
+ $('.annotated').bind('mouseleave', function() {
+ self.port.emit('hide');
+ });
+});
+
+
+function createAnchor(annotation) {
+ annotationAnchorAncestor = $('#' + annotation.ancestorId);
+ annotationAnchor = $(annotationAnchorAncestor).parent().find(
+ ':contains(' + annotation.anchorText + ')').last();
+ $(annotationAnchor).addClass('annotated');
+ $(annotationAnchor).attr('annotation', annotation.annotationText);
+}