Skip to content

Commit

Permalink
Merge branch 'main' of github.com:sveltor/nextlint
Browse files Browse the repository at this point in the history
  • Loading branch information
lynhan318 committed Mar 20, 2024
2 parents 7da1e24 + e052e55 commit 0382eff
Show file tree
Hide file tree
Showing 4 changed files with 296 additions and 63 deletions.
5 changes: 0 additions & 5 deletions .changeset/little-ears-give.md

This file was deleted.

346 changes: 289 additions & 57 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,99 +1,331 @@
# Nextlint

Nextlint is a WYSIWYG (What You See Is What You Get) editor built using the "@tiptap" library and developed with Svelte. It provides a user-friendly interface for editing and formatting text, allowing users to create rich content effortlessly.
Rich text editor (WYSIWYG) written in Svelte, using [MeltUI](https://melt-ui.com/) headless UI and [tailwindcss](https://tailwindcss.com/) CSS framework.

- 💻 **Easy-to-use:** The editor provides a simple and intuitive interface, making it easy for users to create and edit content without any technical knowledge.
- ✍️ **Rich Text Editing:** Users can format text using various styles such as bold, italic, underline, headings, lists, and more.
- 🧱 **Extensible:** You can extend the editor's functionality by adding or creating custom extensions, allowing you to integrate additional features or customize the behavior of the editor.
- 🧠 **Integrate openAI,GPT functionality:** Unlocking the Power of Creative and Swift Writing with OpenAI and GPT Support.
Built on top of [tiptap](https://tiptap.dev/) editor(headless editor) and [prosemirror](https://prosemirror.net/). Easy to use, develop and maintain. A prompt engine that helps to integrate with any AI API, and enhance the writing experience.

Dark/Light theme is supported and customizable.

## Getting started

### Install

```sh
//npm
npm install @nextlint/svelte

//yarn
yarn add @nextlint/svelte

//pnmp
npm add @nextlint/svelte
```

### Setup
Nexltint editor uses headless svelte components from MeltUI and styles it with tailwindcss. The theme tokens are inherited from [Svelte Shadcn](https://www.shadcn-svelte.com/docs/theming).

If you already have shadcn setup in your project then you can skip this part.


#### 1. Install tailwindcss and postcss:

```sh
pnpm add -D tailwindcss postcss autoprefixer sass
npx tailwindcss init -p
```
Now `tailwind.config.js` and `postcss.config.js` are created

#### 2. Configure tailwind.config.js:

```js

// more detail at https://www.shadcn-svelte.com/docs/installation/manual

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{svelte,js}",
"./node_modules/@nextlint/svelte/dist/**/*.{svelte,ts}"
],
theme: {
extend: {
colors: {
border: "hsl(var(--border) / <alpha-value>)",
input: "hsl(var(--input) / <alpha-value>)",
ring: "hsl(var(--ring) / <alpha-value>)",
background: "hsl(var(--background) / <alpha-value>)",
foreground: "hsl(var(--foreground) / <alpha-value>)",
primary: {
DEFAULT: "hsl(var(--primary) / <alpha-value>)",
foreground: "hsl(var(--primary-foreground) / <alpha-value>)",
},
secondary: {
DEFAULT: "hsl(var(--secondary) / <alpha-value>)",
foreground: "hsl(var(--secondary-foreground) / <alpha-value>)",
},
destructive: {
DEFAULT: "hsl(var(--destructive) / <alpha-value>)",
foreground: "hsl(var(--destructive-foreground) / <alpha-value>)",
},
muted: {
DEFAULT: "hsl(var(--muted) / <alpha-value>)",
foreground: "hsl(var(--muted-foreground) / <alpha-value>)",
},
accent: {
DEFAULT: "hsl(var(--accent) / <alpha-value>)",
foreground: "hsl(var(--accent-foreground) / <alpha-value>)",
},
popover: {
DEFAULT: "hsl(var(--popover) / <alpha-value>)",
foreground: "hsl(var(--popover-foreground) / <alpha-value>)",
},
card: {
DEFAULT: "hsl(var(--card) / <alpha-value>)",
foreground: "hsl(var(--card-foreground) / <alpha-value>)",
},
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
fontFamily: {
sans: ["Inter"],
},
},
},
plugins: [],
}
```
Theme can customize via css tokens. The default token is located at [EditorTheme.scss](https://github.com/sveltor/nextlint/blob/main/packages/svelte/src/lib/EditorTheme.scss).

### Usage:
To use the default theme, you need to wrap your `SvelteEditor` component with `ThemeTheme`:
```svelte
<script lang="ts">
import { SvelteEditor, EditorTheme } from "@nextlint/svelte"
</script>
<div class='editor'>
<EditorTheme>
<SvelteEditor
content=""
placeholder="Start editing..."
/>
</EditorTheme>
</div>
```

The `EditorTheme` basicaly just import the default theme we define in `EditorTheme.scss`:

```svelte
//EditorTheme.svelte
<script lang="ts">
import './EditorTheme.scss';
</script>
<slot />
```

Nexltint editor uses `nextlint/core`, which is a headless editor with [existing](https://github.com/sveltor/nextlint/blob/main/packages/core/src/editor/starterKit.ts#L57) plugins installed, can be used in any UI framework, compatible with tiptap and prosemirror plugins system.

Nextlint Svelte itself has some [plugins](https://github.com/sveltor/nextlint/tree/main/packages/svelte/src/lib/plugins) completely written in Svelte and [configurable](https://github.com/sveltor/nextlint/blob/main/packages/svelte/src/lib/Editor.svelte#L2)

## Features

#### Bubble Menu
### Bubble Menu

![Bubble Menu](/source/bubble_menu.png)

#### Slash Menu
### Slash Menu

![Slash Menu](/source/slash_menu.png)

#### Image
### Image

Support upload/embed/unsplash api

![Image](/source/image.png)

#### GPT prompt
### AI prompt

![GPT prompt](/source/gpt_prompt.png)

... and many more.
## Options

| Name | Type | Description |
| :--------------------------------: | :---------------------: | :------------------------------------------------------ |
| **[`content`](#content)** | `Content` | Initialize editor content |
| **[`onChange`](#onChange)** | `(editor:Editor)=>void` | A callback will call when the editor change |
| **[`placeholder?`](#placeholder)** | `String` | The placeholder will be displayed when the editor empty |
| **[`onCreated?`](#onCreated)** | `(editor:Editor)=>void` | A callback will trigger once when the editor is created |
| **[`plugins?`](#plugins)** | `PluginsOptions` | Customize plugins options |
| **[`extensions?`](#extensions)** | `Extensions` | Customize editor extension |


### content

Type: `HTMLContent | JSONContent | JSONContent[] | null`

Initialize content, can be a JSONContent or a html markup.

```tsx
// Can be string
<SvelteEditor
content="<p>this is a paragraph content</p>"
/>

// which is equal
<SvelteEditor
...
content={{
type:'docs'
attrs:{},
content:[{
type:'paragraph',
attrs:{},
content:[{
type:'text',
text:'this is a paragraph content'
}]
}]
}}
/>
```

## Demo:

https://nextlint-editor.vercel.app/
### placeholder

*You can find the implementation of the demo in the repostiory at:
https://github.com/sveltor/nextlint/blob/main/packages/svelte/src/routes/%2Bpage.svelte*
Type: `String | undefined`
Default: `undefined`

## Quick start
Placeholder will display when editor content is empty

Install the package:
```svelte
<SvelteEditor
...
content=""
placeholder="Press 'space' to trigger AI prompt"
/>
```

```sh
//npm
npm install @nextlint/svelte
### onChange

//yarn
yarn add @nextlint/svelte
Type: `(editor: Editor)=>void`

//pnmp
npm add @nextlint/svelte
The callback will fire when the editor changes ( update state or selection )

```svelte
<script lang='ts'>
let editor;
</script>
<SvelteEditor
...
onChange={_editor=>{
editor=_editor
}}
/>
```

## Setup
### onCreated

Type: `(editor: Editor)=>void | undefined`
Default: `undefined`

The callback will fire once the editor finishes initialize

```svelte
<script lang="ts">
import {type Editor, EditorTheme, SvelteEditor} from '@nextlint/svelte';
let editor: Editor;
<SvelteEditor
...
onCreated={editor=>{
console.log("The editor is created and ready to use !")
}}
/>
const submitPromt = async (prompt: string) => {
// handle prompt for GPT plugin
return '';
};
```

const handleUpload = async (file: File) => {
// handle upload here
const blob = new Blob([file]);
const previewUrl = URL.createObjectURL(blob);
return previewUrl;
};
### plugins

</script>
Type: `PluginOptions | undefined`
Default: `undefined`

<EditorTheme>
<SvelteEditor
content={''}
placeholder="Press 'space' GPT support, type '/' for help"
onCreated={createdEditor => { editor = createdEditor }}
onChange={nextEditor => { editor = nextEditor }}
<!-- plugins config -->
plugins={{
selectImage: {
handleUpload,
unsplash: {
accessKey: 'UNPLASH_API_KEY'
}
},
gpt: {query: submitPromt}
}}
```ts
type PluginOptions = {
image?: ImagePluginOptions;
gpt?: AskOptions;
dropCursor?: DropcursorOptions;
};

```

### plugins.image

Type: `ImagePluginOptions|undefined`
Default: `undefined`

Config the handleUpload function and setup API key to fetch images from unsplash

```svelte
<SvelteEditor
...
plugins={
image: {
handleUpload:(file)=>{
// handle upload here
const blob = new Blob([file]);
const previewUrl = URL.createObjectURL(blob);
return previewUrl;
},
unsplash: {
accessKey: 'UNPLASH_API_KEY'
}
},
}
/>
```

### plugins.ask

/>
</EditorTheme>
Type:`AskOptions|undefined`
Default: `undefined`

Trigger prompt in an empty line, get the question from the editor, call the handle function via this config and append the result to the editor.
Allow to integrate with any AI out side the editor.

```svelte
<SvelteEditor
...
plugins={
ask: async (question:string)=>{
// config any AI tool to get the result and return
// the result to the editor
return 'result from any AI Backend'
}
}
/>
```


### plugins.dropCursor

Type: `DropcursorOptions|undefined`
Default: `undefined`

Config dropCursor color/width/class.

```svelte
<SvelteEditor
...
plugins={
dropCursor: {
width:'2px',
color:'#000',
}
}
/>
```

## Contributing
Expand Down
Loading

0 comments on commit 0382eff

Please sign in to comment.