tiptap/packages/core/src/commands/scrollIntoView.ts

19 lines
337 B
TypeScript
Raw Normal View History

2021-02-10 16:59:35 +08:00
import { Command, Commands } from '../types'
2020-11-05 05:38:52 +08:00
2020-11-18 23:43:27 +08:00
/**
* Scroll the selection into view.
*/
2021-02-10 16:59:35 +08:00
export const scrollIntoView: Commands['scrollIntoView'] = () => ({ tr, dispatch }) => {
2020-11-05 05:38:52 +08:00
if (dispatch) {
tr.scrollIntoView()
}
return true
}
2021-02-10 16:59:35 +08:00
declare module '@tiptap/core' {
interface Commands {
scrollIntoView: () => Command,
}
}