This libraray is a wrapper for tui-editor for Svelte 5.
npm install @diramazioni/tui-editor-svelte
Example +page.svelte
:
<script lang="ts" setup>
import { Editor, Viewer } from 'tui-editor-svelte';
import { content } from "./dummy.js";
let viewerMode = $state(false);
let editorRef = $state(); // Reference to store the component instance
</script>
<main>
<h1>Welcome to tui-editor-svelte for Svelte 5!</h1>
<p>
<button onclick={() => (viewerMode = !viewerMode)}>
{viewerMode ? "Editor mode" : "Viewer mode"}
</button>
</p>
{#if viewerMode}
<Viewer initialValue={content} onload={() => console.log("Viewer loaded")} />
{:else}
<Editor
bind:this={editorRef}
initialValue={content}
onload={() => console.log("Editor loaded")}
/>
{/if}
</main>
You can invoke functions on the running editor by using getEditor()
const editorInstance = editorRef.getEditor();
editorInstance.exec('addLink', { linkText: 'TOAST UI', linkUrl: 'https://ui.toast.com' });
All the plugins from tui-editor are supported, to use them you need to specify an array of the plugin you want to use on the pluginsOn prop.
<Viewer
initialValue={content}
pluginsOn={['tableMergedCell','codeSyntaxHighlight','chart', 'uml']}
/>
<Editor
bind:this={editorRef}
initialValue={content}
pluginsOn={['colorSyntax', 'tableMergedCell','codeSyntaxHighlight', 'chart', 'uml']} />
Once you've created a project and installed dependencies with npm install
(or pnpm install
or yarn
), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
Everything inside src/lib
is part of your library, everything inside src/routes
can be used as a showcase or preview app.
To build your library:
npm run package
To create a production version of your showcase app:
npm run build
You can preview the production build with npm run preview
.
To deploy your app, you may need to install an adapter for your target environment.
Go into the package.json
and give your package the desired name through the "name"
option. Also consider adding a "license"
field and point it to a LICENSE
file which you can create from a template (one popular option is the MIT license).
To publish your library to npm:
npm publish