tiptap/docs/api/nodes/task-item.md

76 lines
2.0 KiB
Markdown
Raw Normal View History

---
description: The actually task, without it the task list would be nothing.
2021-10-16 04:48:57 +08:00
icon: task-line
---
# TaskItem
2022-02-11 08:58:26 +08:00
2021-01-25 17:35:52 +08:00
[![Version](https://img.shields.io/npm/v/@tiptap/extension-task-item.svg?label=version)](https://www.npmjs.com/package/@tiptap/extension-task-item)
[![Downloads](https://img.shields.io/npm/dm/@tiptap/extension-task-item.svg)](https://npmcharts.com/compare/@tiptap/extension-task-item?minimal=true)
2020-11-06 05:16:18 +08:00
This extension renders a task item list element, which is a `<li>` tag with a `data-type` attribute set to `taskItem`. It also renders a checkbox inside the list element, which updates a `checked` attribute.
2021-04-16 03:48:19 +08:00
This extension doesnt require any JavaScript framework, its based on Vanilla JavaScript.
## Installation
2022-02-11 08:58:26 +08:00
```bash
npm install @tiptap/extension-task-list @tiptap/extension-task-item
```
2021-02-12 22:02:40 +08:00
This extension requires the [`TaskList`](/api/nodes/task-list) node.
## Settings
### HTMLAttributes
2022-02-11 08:58:26 +08:00
Custom HTML attributes that should be added to the rendered HTML tag.
```js
TaskItem.configure({
HTMLAttributes: {
class: 'my-custom-class',
},
})
```
2022-02-11 08:58:26 +08:00
### nested
Whether the task items are allowed to be nested within each other.
```js
TaskItem.configure({
nested: true,
})
```
### onReadOnlyChecked
A handler for when the task item is checked or unchecked while the editor is set to `readOnly`.
If this is not supplied, the task items are immutable while the editor is `readOnly`.
```js
TaskItem.configure({
onReadOnlyChecked: (node, checked) => {
// do something
},
})
```
2020-11-06 05:16:18 +08:00
## Keyboard shortcuts
2022-02-11 08:58:26 +08:00
| Command | Windows/Linux | macOS |
| --------------- | ------------------ | ------------------ |
| splitListItem() | `Enter` | `Enter` |
| sinkListItem() | `Tab` | `Tab` |
| liftListItem() | `Shift`&nbsp;`Tab` | `Shift`&nbsp;`Tab` |
## Source code
2022-02-11 08:58:26 +08:00
2021-04-21 21:31:11 +08:00
[packages/extension-task-item/](https://github.com/ueberdosis/tiptap/blob/main/packages/extension-task-item/)
## Usage
2022-02-11 08:58:26 +08:00
2021-10-19 00:01:47 +08:00
https://embed.tiptap.dev/preview/Nodes/TaskItem