/** * Vvveb * * Copyright (C) 2021 Ziadin Givan * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ import {ServerComponent} from '../server-component.js'; let template = `

Comments

  1. user
    Maria Williams Maria Williams
    Jan 29, 2018

    Consectetur adipiscing elit. Praesent vel tortor facilisis, volutpat nulla placerat, tincidunt mi. Nullam vel orci dui. Su spendisse sit amet laoreet neque. Fusce sagittis suscipit sem a consequat. Proin nec interdum sem. Quisque in porttitor magna, a imperdiet est. Donec accumsan justo nulla, sit amet varius urna laoreet vitae. Maecenas feugiat fringilla metus.

    Your comment is awaiting moderation.
    This is a preview, your comment will be visible after it has been approved.
  2. user
    Maria Williams Maria Williams
    Jan 29, 2018

    Consectetur adipiscing elit. Praesent vel tortor facilisis, volutpat nulla placerat, tincidunt mi. Nullam vel orci dui. Su spendisse sit amet laoreet neque. Fusce sagittis suscipit sem a consequat. Proin nec interdum sem. Quisque in porttitor magna, a imperdiet est. Donec accumsan justo nulla, sit amet varius urna laoreet vitae. Maecenas feugiat fringilla metus.

    Your comment is awaiting moderation.
    This is a preview, your comment will be visible after it has been approved.
`; class CommentsComponent extends ServerComponent{ constructor () { super(); this.name = "Comments"; this.attributes = ["data-v-component-comments"], this.image ="icons/posts.svg"; this.html = template; this.properties = [{ name: false, key: "source", inputtype: RadioButtonInput, htmlAttr:"data-v-source", data: { inline: true, extraclass:"btn-group-fullwidth", options: [{ value: "autocomplete", text: "Autocomplete", title: "Autocomplete", icon:"la la-search", extraclass:"btn-sm", checked:true, },{ value: "automatic", icon:"la la-cog", text: "Configuration", title: "Configuration", extraclass:"btn-sm", }], }, setGroup: group => { document.querySelectorAll('.mb-2[data-group]').forEach(e => e.classList.add("d-none")); document.querySelectorAll('.mb-2[data-group="'+ group + '"].d-none').forEach((el, i) => { el.classList.remove("d-none"); }); //return element; }, onChange : function(element, value, input) { this.setGroup(input.value); return element; }, init: function (node) { //this.setGroup(node.dataset.vSource); //return 'autocomplete'; return node.dataset.vSource; }, },{ name: "Comments", key: "comments", group:"autocomplete", htmlAttr:"data-v-post_id", inline:true, col:12, inputtype: AutocompleteList, data: { url: window.location.pathname + "?module=editor/autocomplete&action=comments", }, }]; } init(node) { document.querySelectorAll('.mb-2[data-group]').forEach((el, i) => { el.classList.add("d-none"); }); let source = node.dataset.vSource; if (!source) { source = "automatic"; } document.querySelectorAll('.mb-2[data-group="' + source + '"]').forEach(e => e.classList.remove("d-none")); } } let commentsComponent = new CommentsComponent; export { commentsComponent };