mirror of
https://github.com/cudr/slate-collaborative.git
synced 2024-10-27 20:34:06 +00:00
feat: handle annotations
This commit is contained in:
parent
0f98915909
commit
ad0aaf2607
@ -1,19 +1,55 @@
|
|||||||
import { Operation, SyncDoc } from '../model/index'
|
import { SyncDoc } from '../model/index'
|
||||||
|
import { toSync } from '../utils'
|
||||||
|
import {
|
||||||
|
AddAnnotationOperation,
|
||||||
|
RemoveAnnotationOperation,
|
||||||
|
SetAnnotationOperation
|
||||||
|
} from 'slate'
|
||||||
|
|
||||||
// TODO: handle annotation ops
|
export const addAnnotation = (
|
||||||
|
doc: SyncDoc,
|
||||||
|
op: AddAnnotationOperation
|
||||||
|
): SyncDoc => {
|
||||||
|
if (!doc.annotations) {
|
||||||
|
doc['annotations'] = {}
|
||||||
|
}
|
||||||
|
|
||||||
|
const annotation = op.annotation.toJSON()
|
||||||
|
|
||||||
|
doc.annotations[annotation.key] = toSync(annotation)
|
||||||
|
|
||||||
export const addAnnotation = (doc: SyncDoc, op: Operation): SyncDoc => {
|
|
||||||
// console.log('addAnnotation!!!', op.toJS())
|
|
||||||
return doc
|
return doc
|
||||||
}
|
}
|
||||||
|
|
||||||
export const removeAnnotation = (doc: SyncDoc, op: Operation): SyncDoc => {
|
export const removeAnnotation = (
|
||||||
// console.log('removeAnnotation!!!', op.toJS())
|
doc: SyncDoc,
|
||||||
|
op: RemoveAnnotationOperation
|
||||||
|
): SyncDoc => {
|
||||||
|
if (doc.annotations) {
|
||||||
|
delete doc.annotations[op.annotation.key]
|
||||||
|
}
|
||||||
|
|
||||||
return doc
|
return doc
|
||||||
}
|
}
|
||||||
|
|
||||||
export const setAnnotation = (doc: SyncDoc, op: Operation): SyncDoc => {
|
export const setAnnotation = (
|
||||||
// console.log('setAnnotation!!!', op.toJS())
|
doc: SyncDoc,
|
||||||
|
op: SetAnnotationOperation
|
||||||
|
): SyncDoc => {
|
||||||
|
/**
|
||||||
|
* Looks like set_annotation option is broken, temporary disabled
|
||||||
|
*/
|
||||||
|
|
||||||
|
// const { newProperties }: any = op.toJSON()
|
||||||
|
|
||||||
|
// if (!doc.annotations || !newProperties) return doc
|
||||||
|
|
||||||
|
// if (!doc.annotations[newProperties.key]) {
|
||||||
|
// return addAnnotation(doc, newProperties)
|
||||||
|
// } else {
|
||||||
|
// doc.annotations[newProperties.key] = { ...doc.annotations[newProperties.key], ...newProperties }
|
||||||
|
// }
|
||||||
|
|
||||||
return doc
|
return doc
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import { Operation, Selection } from 'slate'
|
import { Selection } from 'slate'
|
||||||
import * as Immutable from 'immutable'
|
|
||||||
import merge from 'lodash/merge'
|
import merge from 'lodash/merge'
|
||||||
|
|
||||||
import { toJS } from '../utils'
|
import { toJS } from '../utils'
|
||||||
|
@ -93,9 +93,7 @@ class Client extends Component<ClienProps> {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
onChange = ({ value }: any) => {
|
onChange = ({ value }: any) => this.setState({ value })
|
||||||
this.setState({ value })
|
|
||||||
}
|
|
||||||
|
|
||||||
onConnect = () => this.setState({ isOnline: true })
|
onConnect = () => this.setState({ isOnline: true })
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user