Commit 0b75c084 authored by Nick Stenning's avatar Nick Stenning

Remove leading whitespace from annotation-metadata.js

parent 6e25ab1c
...@@ -2,74 +2,74 @@ ...@@ -2,74 +2,74 @@
* Utility functions for querying annotation metadata. * Utility functions for querying annotation metadata.
*/ */
/** Extract a URI, domain and title from the given domain model object. /** Extract a URI, domain and title from the given domain model object.
* *
* @param {object} annotation An annotation domain model object as received * @param {object} annotation An annotation domain model object as received
* from the server-side API. * from the server-side API.
* @returns {object} An object with three properties extracted from the model: * @returns {object} An object with three properties extracted from the model:
* uri, domain and title. * uri, domain and title.
* *
*/ */
function extractDocumentMetadata(annotation) { function extractDocumentMetadata(annotation) {
var document_; var document_;
var uri = annotation.uri; var uri = annotation.uri;
var domain = new URL(uri).hostname; var domain = new URL(uri).hostname;
if (annotation.document) { if (annotation.document) {
if (uri.indexOf('urn') === 0) { if (uri.indexOf('urn') === 0) {
var i; var i;
for (i = 0; i < annotation.document.link.length; i++) { for (i = 0; i < annotation.document.link.length; i++) {
var link = annotation.document.link[i]; var link = annotation.document.link[i];
if (link.href.indexOf('urn:') === 0) { if (link.href.indexOf('urn:') === 0) {
continue; continue;
} }
uri = link.href; uri = link.href;
break; break;
} }
} }
var documentTitle; var documentTitle;
if (Array.isArray(annotation.document.title)) { if (Array.isArray(annotation.document.title)) {
documentTitle = annotation.document.title[0]; documentTitle = annotation.document.title[0];
} else { } else {
documentTitle = annotation.document.title; documentTitle = annotation.document.title;
} }
document_ = { document_ = {
uri: uri, uri: uri,
domain: domain, domain: domain,
title: documentTitle || domain title: documentTitle || domain
}; };
} else { } else {
document_ = { document_ = {
uri: uri, uri: uri,
domain: domain, domain: domain,
title: domain title: domain
}; };
} }
if (document_.title.length > 30) { if (document_.title.length > 30) {
document_.title = document_.title.slice(0, 30) + '…'; document_.title = document_.title.slice(0, 30) + '…';
} }
return document_; return document_;
} }
/** Return `true` if the given annotation is a reply, `false` otherwise. */ /** Return `true` if the given annotation is a reply, `false` otherwise. */
function isReply(annotation) { function isReply(annotation) {
return (annotation.references || []).length > 0; return (annotation.references || []).length > 0;
} }
/** Return `true` if the given annotation is new, `false` otherwise. /** Return `true` if the given annotation is new, `false` otherwise.
* *
* "New" means this annotation has been newly created client-side and not * "New" means this annotation has been newly created client-side and not
* saved to the server yet. * saved to the server yet.
*/ */
function isNew(annotation) { function isNew(annotation) {
return !annotation.id; return !annotation.id;
} }
module.exports = { module.exports = {
extractDocumentMetadata: extractDocumentMetadata, extractDocumentMetadata: extractDocumentMetadata,
isReply: isReply, isReply: isReply,
isNew: isNew, isNew: isNew,
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment