solid-example-placeholder

PreviousNext

Placeholder text displayed.

Docs
prosekitblock

Preview

Loading preview…
registry/src/solid/examples/placeholder/editor.tsx
import 'prosekit/basic/style.css'
import 'prosekit/basic/typography.css'

import {
  createEditor,
  jsonFromNode,
  type NodeJSON,
} from 'prosekit/core'
import type { ProseMirrorNode } from 'prosekit/pm/model'
import {
  ProseKit,
  useDocChange,
} from 'prosekit/solid'
import type { JSX } from 'solid-js'

import { defineExtension } from './extension'

export default function Editor(props: {
  initialContent?: NodeJSON
  onDocUpdate?: (doc: NodeJSON) => void
}): JSX.Element {
  const extension = defineExtension()
  const editor = createEditor({ extension, defaultContent: props.initialContent })

  const handleDocChange = (doc: ProseMirrorNode) => props.onDocUpdate?.(jsonFromNode(doc))
  useDocChange(handleDocChange, { editor })

  return (
    <ProseKit editor={editor}>
      <div class="box-border h-full w-full min-h-36 overflow-y-hidden overflow-x-hidden rounded-md border border-solid border-gray-200 dark:border-gray-700 shadow-sm flex flex-col bg-white dark:bg-gray-950 text-black dark:text-white">
        <div class="relative w-full flex-1 box-border overflow-y-auto">
          <div ref={editor.mount} class="ProseMirror box-border min-h-full px-[max(4rem,calc(50%-20rem))] py-8 outline-hidden outline-0 [&_span[data-mention=user]]:text-blue-500 [&_span[data-mention=tag]]:text-violet-500"></div>
        </div>
      </div>
    </ProseKit>
  )
}

Installation

npx shadcn@latest add @prosekit/solid-example-placeholder

Usage

import { SolidExamplePlaceholder } from "@/components/solid-example-placeholder"
<SolidExamplePlaceholder />