123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /*
- * <<
- * Davinci
- * ==
- * Copyright (C) 2016 - 2017 EDP
- * ==
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * >>
- */
- import React, { useMemo, useImperativeHandle, useCallback } from 'react'
- import classnames from 'classnames'
- import { Editable, withReact, Slate, RenderLeafProps } from 'slate-react'
- import { createEditor, Node } from 'slate'
- import { withHistory } from 'slate-history'
- import { withHtml } from './decorators'
- import { parseHtml } from './util'
- import Toolbar from './Toolbar'
- import { Element, withElements, TextStyles, ElementTypes } from './Element'
- import { Leaf } from './Leaf'
- import './RichText.less'
- interface IEditorProps {
- value?: Node[] | string
- className?: string
- readOnly?: boolean
- toolbar?: React.ReactNode
- onFormatText?: (text: string) => string
- onChange?: (newVal: Node[]) => void
- }
- const Editor: React.FC<IEditorProps> = (props, ref) => {
- const { value, className, readOnly, toolbar, onFormatText, onChange } = props
- const initialValue = useMemo(() => {
- let parsedValue: Node[]
- if (typeof value === 'string') {
- try {
- parsedValue = JSON.parse(value)
- } catch {
- parsedValue = parseHtml(value)
- }
- if (!parsedValue.length) {
- parsedValue.push({ text: '' })
- }
- } else {
- parsedValue = value
- }
- return parsedValue
- }, [value])
- const editor = useMemo(
- () => withElements(withHtml(withReact(withHistory(createEditor())))),
- []
- )
- const renderLeaf = useCallback(
- (props: RenderLeafProps) => {
- return <Leaf {...props} onFormatText={onFormatText} />
- },
- [onFormatText]
- )
- const cls = useMemo(
- () =>
- classnames({
- richtext: true,
- 'richtext-editor': !readOnly,
- [className]: !!className
- }),
- []
- )
- useImperativeHandle(ref, () => ({}))
- return (
- <div className={cls}>
- <Slate
- editor={editor}
- value={initialValue}
- onChange={onChange}
- >
- {toolbar === false ? null : toolbar || <Toolbar.Toolbar />}
- <Editable
- renderElement={Element}
- renderLeaf={renderLeaf}
- readOnly={readOnly}
- spellCheck
- />
- </Slate>
- </div>
- )
- }
- export default React.forwardRef(Editor)
|