Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/davydog187/sanity-portable-table

A table plugin for Sanity that supports Portable Text cells
https://github.com/davydog187/sanity-portable-table

plugin react sanity typescript

Last synced: 10 days ago
JSON representation

A table plugin for Sanity that supports Portable Text cells

Awesome Lists containing this project

README

        

# sanity-plugin-portable-table

A table plugin for [Sanity Studio v3]() that supports [Portable Text](https://www.sanity.io/docs/presenting-block-text) cells.

This plugin is inspired by the official [@sanity/table](https://github.com/sanity-io/table) plugin, but allows you to define a Portable Text configuration in your cells.

## Installation

```bash
$ npm install --save @bitfo/sanity-plugin-portable-table
```

or

```bash
$ yarn add @bitfo/sanity-plugin-portable-table
```

## Usage

Add it as a plugin in sanity.config.ts (or .js):

```typescript
import {defineConfig} from 'sanity'
import {portableTable} from '@bitfo/sanity-plugin-portable-table'

export const defineConfig({
...
plugins: [
portableTable({
// Optional: default name is "table"
name: "my-table",

// Optional: default title is "Table"
title: "Portable Table",

// Required: must provide a block definition
cellSchema: {
name: "my-block",
type: "block",
styles: [],
lists: [],
marks: {
decorators: [{ title: "Strong", value: "strong" }],
annotations: [],
},
},
}),
]
})
```

## License

Apache License 2.0 © Dave Lucia
See LICENSE