Skip to content

<comment-detail>

Usage

  1. If you haven't already, go through the setup for the module.

  2. Import the <comment-detail> element somewhere in the javascript side of your web-app like this:

js
import '@darksoil-studio/comments/dist/elements/comment-detail.js'
  1. Use it in the html side of your web-app like this:
html
<comment-detail .commentHash=${ commentHash }>
</comment-detail>
html
<comment-detail commentHash={ commentHash }>
</comment-detail>
html
<comment-detail [commentHash]="commentHash">
</comment-detail>
html
<comment-detail :commentHash="commentHash">
</comment-detail>
html
<comment-detail comment-hash={encodeHashToBase64(commentHash)}>
</comment-detail>

WARNING

Like all the elements in this module, <comment-detail> needs to be placed inside an initialized <comments-context>.

Demo

Here is an interactive demo of the element:

API Reference

<comment-detail> is a custom element, which means that it can be used in any web app or website. Here is the reference for its API: