solid-comment

0.9.2 • Public • Published

Solid Comment

A simple Solid application meant to read and write comments into users’ pods. This application is only the gateway to Solid and still needs a storing mechanism in a parent application – meaning your application will import this library, which will allow the communication with Solid, but your application still needs to hold a reference where to find the actual comment.

Reminder

  • The app needs control access, there needs to be in the trust applications section with full access.

To-do

  • [ ] Figure out how to persist only URL strings in json-server (testing)
  • [x] Improve authorization flow and make sure to present agent with option/instruction to set proper permissions
  • [ ] Introduce integration tests with Jest
    • Use json-server for storage endpoint
  • [ ] Think about some caching possbilities
    • don't load image twice if it is the same person
  • [ ] Reduce the bundled size of this library
  • [x] The import and export in examples does not work properly (Resolved by dropping TS)
  • [x] How does the application in itself authenticate?
  • [x] Every comment, one file?
    • Means a request per comment
  • [x] Integrate with Indico
  • [x] ACL for resource and container
    • two scenarios: 1. container private, resource public; container public, resource public
  • [x] Refactor ACL part out of solid-model
  • [x] Improve login flow, currently needs new session after every refresh
    • [x] WebId input can be hidden, when logged in
    • [x] Input form should be hidden, when logged out
  • [x] Improve DOM and component rendering
    • render text when no comments
  • [x] Change from persisting the WebID of the authors to persisting all comment URLs
  • [x] Solve case where comment was deleted
    • [x] Deletion from interface -> remove in app DB and pod
    • [x] Deletion from pod -> catch 404 on request and delete in app DB
    • [x] (?) Deletion from app -> no way to fetch from pod?
  • [x] Bug: private event does not work all of a sudden
    • This was only because the app did not have control ACL on the pod.

Usage

  1. Install Solid Comment
npm i solid-comment
  1. Import the library into your project
// const SolidComment = require("solid-comment")
import SolidComment from "solid-comment"
  1. Configuration
  • solidCommentId: is the unique identifier for the specific instance this module is loaded. This will always have to be unique, otherwise it will override/write to other existing directories.
  • eventVisibility: decides if the comments can be discovered without the direct link.
  • serverStorageEndpointUrl: is the endpoint where the application implementing this module will persist references to the comments that have been posted. This endpoint will receive a JSON object with a url key and its value the URL to the comment. No more information is needed nor should be stored.
const solidComment = new SolidComment({
    solidCommentId: "sc-development-private-event-1",
    eventVisibility: "private",
    serverStorageEndpointUrl: "https://server-where-comment-urls-are-persisted"
})
  1. Initialize application

This will render all the components as soon as the DOM is completely ready. This is important as the components need elements from the DOM to attach to. The application will also check for a session, this is needed for the authentication with a Solid identity provider.

solidComment.initApp()
  1. Pass comment URLs to application

If the comments cannot be retrieved immediately on page render, they can be asynchronously fetched and passed to the application. SolidComment expects a list of strings with the URL to a single comment.

// these should be ["url-to-comment-1", "url-to-comment-2", …]
solidComment.setComments(comments)

Indico

  1. Install solid-comment in Indico
npm i solid-comment
  1. Import library in the JavaScript files where it is needed
// indico/modules/events/client/js/display.js

import { SolidComment } from 'solid-comment'
  1. Make sure axiosIndico is bound to window.indicoAxios
import {indicoAxios} from 'indico/utils/axios';
// …
function bindIndicoAxiosToWindow() {
  window.indicoAxios = indicoAxios;
}
// …
bindIndicoAxiosToWindow()
  1. Add HTML and JavaScript to initialize solid-comment
<!-- indico/modules/events/templates/display/indico/meeting.html -->
<main class="solid-comment">
    <!-- paste content of src/index.html -->
</main>

<script>
  function pythonBooleanToJS(str) {
      return str === 'True'
  }

  window.onload = () => {
      const isEventProtected = pythonBooleanToJS('{{ event.is_protected }}');
      const eventVisibility = isEventProtected ? "private" : "public";
      const eventId = '{{ event.id }}'
      const solidCommentId = `sc-indico-meeting-${eventVisibility}-${eventId}`;
      const serverUrl = `http://127.0.0.1:8000/event/${eventId}/solid-comments`
      const solidComment = new SolidComment({
          solidCommentId: solidCommentId,
          eventVisibility: eventVisibility,
          serverStorageEndpointUrl: serverUrl,
          appUrl: window.location.href.split('?')[0]
      })

      async function main() {
          await solidComment.initApp()
          solidComment.setAppClient(window.indicoAxios)
          await fetch(serverUrl)
              .then(response => response.json())
              .then(data => solidComment.setComments(data))
      }
      main()
  }

Extra HTTP Client

If your application holding the references to the comments requires extra configuration to enable communication with the storage endpoint, the setAppClient method in the SolidComment class sets a passed in client, which will then be used to GET and POST to the provided storage endpoint.

// const solidComment = new SolidComment({ … })
solidComment.setAppClient(axios.create())
// Indico example:
// solidComment.setAppClient(window.indicoAxios)

Development

  1. Clone the repository
$ git clone git@github.com:janschill/solid-comment.git
$ cd solid-comment
  1. Install dependencies
$ npm ci
  1. Run webpack development server
$ npm start
  1. Copy index.html into dist/ directory
$ cp src/index.html dist/index.html
  1. Start the JSON server
$ npm run json-server # $ json-server db.json -p 3001

Design Choices

  • This library stores each comment in a single file. Also, will the parent application implementing this library hold the reference URL to each comment. This enables the easiest possibility to add a pagination feature and thus improve performance by only loading the necessary comments.
  • If a comment fails to be fetch from the by the server (Indico) persisted list of references to the comment, it will simply show a “Comment is unavailable.” notice in the interface.

Readme

Keywords

Package Sidebar

Install

npm i solid-comment

Weekly Downloads

17

Version

0.9.2

License

MIT

Unpacked Size

12.2 MB

Total Files

8

Last publish

Collaborators

  • janschill