UNPKG

solid-panes

Version:

Solid-compatible Panes: applets and views for the mashlib and databrowser

61 lines (52 loc) 1.73 kB
/* RDF/XML content Pane ** ** This pane shows the content of a particular RDF resource ** or at least the RDF semantics we attribute to that resource, ** in generated N3 syntax. */ const UI = require('solid-ui') const ns = UI.ns module.exports = { icon: UI.icons.originalIconBase + '22-text-xml4.png', name: 'RDFXML', audience: [ns.solid('Developer')], label: function (subject, context) { const store = context.session.store if ( 'http://www.w3.org/2007/ont/link#ProtocolEvent' in store.findTypeURIs(subject) ) { return null } var n = store.statementsMatching(undefined, undefined, undefined, subject) .length if (n === 0) return null return 'As RDF/XML (' + n + ')' }, render: function (subject, context) { const myDocument = context.dom var kb = context.session.store var div = myDocument.createElement('div') div.setAttribute('class', 'RDFXMLPane') // Because of smushing etc, this will not be a copy of the original source // We could instead either fetch and re-parse the source, // or we could keep all the pre-smushed triples. var sts = kb.statementsMatching(undefined, undefined, undefined, subject) // @@ slow with current store! /* var kludge = kb.formula([]) // No features for (var i=0; i< sts.length; i++) { s = sts[i] kludge.add(s.subject, s.predicate, s.object) } */ var sz = UI.rdf.Serializer(kb) sz.suggestNamespaces(kb.namespaces) sz.setBase(subject.uri) var str = sz.statementsToXML(sts) var pre = myDocument.createElement('PRE') pre.appendChild(myDocument.createTextNode(str)) div.appendChild(pre) return div } } // ends