import { LitElement, html, css } from 'lit' import folderByPath from './folderByPath.graphql' /** * An example element. * * @fires count-changed - Indicates when the count changes * @slot - This element has a slot * @csspart button - The button */ export class BlockIndexElement extends LitElement { static get styles() { return css` :host { display: block; border: solid 1px gray; padding: 16px; max-width: 800px; } `; } static get properties() { return { /** * The name to say "Hello" to. * @type {string} */ name: {type: String}, /** * The number of times the button has been clicked. * @type {number} */ count: {type: Number}, }; } constructor() { super(); this.name = 'World'; this.count = 0; } render() { return html`

${this.sayHello(this.name)}!

`; } _onClick() { this.count++; this.dispatchEvent(new CustomEvent('count-changed')); } /** * Formats a greeting * @param name {string} The name to say "Hello" to * @returns {string} A greeting directed at `name` */ sayHello(name) { return `Hello, ${name}`; } } window.customElements.define('block-index', BlockIndexElement);