QEditor.jsx 58.5 KB
Newer Older
DenSakh's avatar
DenSakh committed
1
2
/* eslint-disable no-undef */
/* eslint-disable no-case-declarations */
Рамис's avatar
Рамис committed
3
import React, { Fragment, useEffect, useState, useRef } from 'react'
Рамис's avatar
Рамис committed
4
import './index.scss'
Рамис's avatar
Рамис committed
5
6
7
// import EditorModal from "./components/EditorModal"
// import Uploader from "./components/Uploader"

Рамис's avatar
Рамис committed
8
import { useEditor, EditorContent, BubbleMenu } from '@tiptap/react'
Рамис's avatar
Рамис committed
9
10
11
12
13
14
import StarterKit from '@tiptap/starter-kit'
import Underline from '@tiptap/extension-underline'
import Table from '@tiptap/extension-table'
import TableCell from '@tiptap/extension-table-cell'
import TableRow from '@tiptap/extension-table-row'
import TableHeader from '@tiptap/extension-table-header'
Рамис's avatar
bug fix    
Рамис committed
15
import Focus from '@tiptap/extension-focus'
Яков's avatar
Яков committed
16
import { Input, Modal, Form, Button, message } from "antd";
Рамис's avatar
Рамис committed
17
// import Link from '@tiptap/extension-link'
yakoff94's avatar
yakoff94 committed
18
// import Image from '@tiptap/extension-image'
DenSakh's avatar
DenSakh committed
19
20
21
22
import TextAlign from '@tiptap/extension-text-align'
import { Color } from '@tiptap/extension-color'
import Highlight from '@tiptap/extension-highlight'
import TextStyle from '@tiptap/extension-text-style'
DenSakh's avatar
DenSakh committed
23
24
import Superscript from '@tiptap/extension-superscript'
import Subscript from '@tiptap/extension-subscript'
Рамис's avatar
Рамис committed
25

DenSakh's avatar
DenSakh committed
26
27
28
import ToolBar from './components/ToolBar'
import EditorModal from './components/EditorModal'
import Uploader from './components/Uploader'
Рамис's avatar
Рамис committed
29
30
import Video from './extensions/Video'
import Iframe from './extensions/Iframe'
Рамис's avatar
Рамис committed
31
import CustomLink from './extensions/CustomLink'
DenSakh's avatar
DenSakh committed
32
33
34
35
36
import DragAndDrop from './extensions/DragAndDrop'
import { useReactMediaRecorder } from 'react-media-recorder'
import axios from 'axios'
import ReactStopwatch from 'react-stopwatch'
import Audio from './extensions/Audio'
yakoff94's avatar
yakoff94 committed
37
38
39
40
41
// import Image from '@tiptap/extension-image'

// import ImageResize from 'tiptap-extension-resize-image';
import ImageResize from './extensions/Image.jsx'
// import ImageResize from 'tiptap-imagresize';
yakoff94's avatar
yakoff94 committed
42
// import ImageResize from 'tiptap-imagresize';
Рамис's avatar
Рамис committed
43

DenSakh's avatar
DenSakh committed
44
45
46
import IframeModal from './modals/IframeModal'
import IframeCustomModal from './modals/IframeCustomModal'
import { isMobile } from 'react-device-detect'
firesong1337's avatar
firesong1337 committed
47
import { ExportPdf } from './extensions/ExportPdf'
yakoff94's avatar
fix    
yakoff94 committed
48
import { mergeAttributes } from "@tiptap/core";
Яков's avatar
Яков committed
49

yakoff94's avatar
yakoff94 committed
50
51
52
53
54
55
56
57
58
59
60
61
62
// const CustomImage = Image.extend({
//     options: {inline: true},
//     // addNodeView() {
//     //     return ({ editor, node }) => {
//     //         const image = document.createElement('img');
//     //         image.src = node.attrs.src;
//     //         image.width = node.attrs.width;
//     //         return {
//     //             dom: image,
//     //         }
//     //     }
//     // },
// })
Яков's avatar
Яков committed
63
const {TextArea} = Input;
yakoff94's avatar
yakoff94 committed
64

DenSakh's avatar
DenSakh committed
65
const initialBubbleItems = [
yakoff94's avatar
yakoff94 committed
66
67
68
69
70
71
72
73
74
    'bold',
    'italic',
    'underline',
    'strike',
    'superscript',
    'subscript',
    '|',
    'colorText',
    'highlight'
DenSakh's avatar
DenSakh committed
75
]
Рамис's avatar
Рамис committed
76

Яков's avatar
Яков committed
77
const QEditor = ({
yakoff94's avatar
yakoff94 committed
78
79
80
81
82
    value,
    onChange = () => {},
    style,
    uploadOptions = {url: '', errorMessage: ''},
    toolsOptions = {type: 'all'}
Яков's avatar
Яков committed
83
}) => {
yakoff94's avatar
yakoff94 committed
84
    global.uploadUrl = uploadOptions.url
Sergey's avatar
Sergey committed
85

yakoff94's avatar
yakoff94 committed
86
87
88
89
90
    const [innerModalType, setInnerModalType] = useState(null)
    const [embedContent, setEmbedContent] = useState('')
    const [uploaderUid, setUploaderUid] = useState('uid' + new Date())
    const [uploadedPaths, setUploadedPaths] = useState([])
    const [modalIsOpen, setModalIsOpen] = useState(false)
Яков's avatar
Яков committed
91
92
    const [modalGlossaryIsOpen, setModalGlossaryIsOpen] = useState(false)
    const [wordGlossary, setWordGlossary] = useState(false)
yakoff94's avatar
yakoff94 committed
93
94
95
96
97
98
99
    const [modalTitle, setModalTitle] = useState('')
    const [bubbleItems, setBubbleItems] = useState(initialBubbleItems)
    const [colorsSelected, setColorsSelected] = useState(null)
    const [focusFromTo, setFocusFromTo] = useState(null)
    const [oldFocusFromTo, setOldFocusFromTo] = useState(null)
    const [isUploading, setIsUploading] = useState(false)
    const [recordType, setRecordType] = useState({video: true})
Sergey's avatar
Sergey committed
100

yakoff94's avatar
yakoff94 committed
101
102
103
104
105
106
107
108
109
    // eslint-disable-next-line no-unused-vars
    const getRgb = (hex) => {
        var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex)
        return result
            ? `rgb(${parseInt(result[1], 16)}, ${parseInt(result[2], 16)}, ${parseInt(
                result[3],
                16
            )})`
            : null
Рамис's avatar
Рамис committed
110
    }
yakoff94's avatar
yakoff94 committed
111
112
113
114
115
116
117
118
119
120
121
    const {
        status,
        startRecording,
        stopRecording,
        mediaBlobUrl,
        previewStream,
        muteAudio,
        unMuteAudio,
        isAudioMuted,
        clearBlobUrl
    } = useReactMediaRecorder(recordType)
Рамис's avatar
Рамис committed
122

yakoff94's avatar
yakoff94 committed
123
    const videoRef = useRef(null)
Рамис's avatar
Рамис committed
124

yakoff94's avatar
yakoff94 committed
125
126
127
    useEffect(() => {
        if (videoRef.current && previewStream) {
            videoRef.current.srcObject = previewStream
Рамис's avatar
bug fix    
Рамис committed
128
        }
yakoff94's avatar
yakoff94 committed
129
    }, [previewStream])
Рамис's avatar
Рамис committed
130

yakoff94's avatar
yakoff94 committed
131
132
133
134
    useEffect(() => {
        if (focusFromTo !== oldFocusFromTo) {
            setColorsSelected(null)
            setOldFocusFromTo(focusFromTo)
Рамис's avatar
Рамис committed
135
        }
yakoff94's avatar
yakoff94 committed
136
    }, [focusFromTo])
Рамис's avatar
Рамис committed
137

Яков's avatar
Яков committed
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
    const editWord = (values) => {

        let _values = values;

        if(_values.word.replace(/\s/g, '') !== ''){
            axios.post('/api/admin/ru/glossary/edit/', _values, {withCredentials: true}).then((response) => {
                if (response.data.state === "success") {
                    message.success('Сохранено');
                } else if (response.data.state === "error") {
                    message.error('Ошибка');
                }
            }).catch((reason)=>{
                message.error('Что-то пошло не так');
            })
        } else {
            message.error('Термин не может состоять из одних пробелов');
        }
    }

yakoff94's avatar
yakoff94 committed
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
    const modalOpener = (type, title) => {
        setModalTitle(title)
        setInnerModalType(type)
        setModalIsOpen(true)
    }
    const colors = {
        color: [
            'none',
            '#8a8a8a',
            '#afafaf',
            '#44d724',
            '#0bd9b2',
            '#4fb7ff',
            '#226aff',
            '#b153e5',
            '#f54f8e',
            '#f34c37',
            '#ee7027',
            '#d27303',
            '#ffd102'
        ],
        highlight: [
            'none',
            '#9B9B9B',
            '#CCCCCC',
            '#9ee191',
            '#43e7bf',
            '#4fb7ff',
            '#6d9ef5',
            '#cd92e8',
            '#f597bc',
            '#fa9084',
            '#ef9558',
            '#dea75b',
            '#ffe672'
        ]
Рамис's avatar
Рамис committed
193
194
    }

yakoff94's avatar
yakoff94 committed
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
    const toolsLib = {
        link: {
            title: 'Вставить ссылку',
            onClick: () => {
                const previousUrl = editor.getAttributes('link').href
                const url = window.prompt('Введите URL', previousUrl)

                // cancelled
                if (url === null) {
                    return
                }

                // empty
                if (url === '') {
                    editor.chain().focus().extendMarkRange('link').unsetLink().run()
                    return
                }

                // update link
                editor.chain().focus().extendMarkRange('link').setLink({href: url, target: '_blank'}).run()
            }
firesong1337's avatar
firesong1337 committed
216
        },
yakoff94's avatar
yakoff94 committed
217
218
219
        file: {
            title: 'Прикрепить файл',
            onClick: () => modalOpener('file', 'Прикрепить файл')
firesong1337's avatar
firesong1337 committed
220
        },
yakoff94's avatar
yakoff94 committed
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
        video: {
            title: 'Загрузить видео',
            onClick: () => modalOpener('video', 'Загрузить видео')
        },
        iframe: {
            title: 'Видео по ссылке',
            onClick: () => modalOpener('iframe', 'Видео по ссылке')
        },
        iframe_custom: {
            title: 'Вставить iframe',
            onClick: () => modalOpener('iframe_custom', 'Вставить iframe')
        },
        iframe_pptx: {
            title: 'Вставить презентацию pptx',
            onClick: () => modalOpener('iframe_pptx', 'Вставить презентацию pptx')
        },
        iframe_pdf: {
            title: 'Вставить презентацию pdf',
            onClick: () => modalOpener('iframe_pdf', 'Вставить презентацию pdf')
        },
firesong1337's avatar
firesong1337 committed
241
242
243
244
        export_pdf: {
            title: 'Экспорт в pdf',
            onClick: () => ExportPdf()
        },
yakoff94's avatar
yakoff94 committed
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
        audio: {
            title: 'Вставить аудио файл',
            onClick: () => modalOpener('audio', 'Вставить аудио файл')
        },
        image: {
            title: 'Загрузить изображение',
            onClick: () => modalOpener('image', 'Загрузить изображение')
        },
        h2: {
            title: 'Заголовок 2',
            onClick: () => editor.chain().focus().toggleHeading({level: 2}).run()
        },
        h3: {
            title: 'Заголовок 3',
            onClick: () => editor.chain().focus().toggleHeading({level: 3}).run()
        },
        h4: {
            title: 'Заголовок 4',
            onClick: () => editor.chain().focus().toggleHeading({level: 4}).run()
        },
        paragraph: {
            title: 'Обычный',
            onClick: () => editor.chain().focus().setParagraph().run()
        },
        bold: {
            title: 'Жирный',
            onClick: () => editor.chain().focus().toggleBold().run()
        },
        italic: {
            title: 'Курсив',
            onClick: () => editor.chain().focus().toggleItalic().run()
        },
        underline: {
            title: 'Подчеркнутый',
            onClick: () => editor.chain().focus().toggleUnderline().run()
        },
        strike: {
            title: 'Зачеркнутый',
            onClick: () => editor.chain().focus().toggleStrike().run()
        },
        superscript: {
            title: 'Надстрочный символ',
            onClick: () => editor.chain().focus().toggleSuperscript().run()
        },
        subscript: {
            title: 'Подстрочный символ',
            onClick: () => editor.chain().focus().toggleSubscript().run()
        },
        codeBlock: {
            title: 'Код',
            onClick: () => editor.chain().focus().toggleCodeBlock().run()
        },
        clearMarks: {
            title: 'Очистить форматирование',
            onClick: () => editor.chain().focus().unsetAllMarks().run()
        },
        bulletList: {
            title: 'Маркированный список',
            onClick: () => editor.chain().focus().toggleBulletList().run()
        },
        orderedList: {
            title: 'Нумированный список',
            onClick: () => editor.chain().focus().toggleOrderedList().run()
        },
        blockquote: {
            title: 'Цитата',
            onClick: () => editor.chain().focus().toggleBlockquote().run()
        },
        hardBreak: {
            title: 'Перенос строки',
            onClick: () => editor.chain().focus().setHardBreak().run()
        },
        hr: {
            title: 'Горизонтальная линия',
            onClick: () => editor.chain().focus().setHorizontalRule().run()
        },
        undo: {
            title: 'Действие назад',
            onClick: () => editor.chain().focus().undo().run()
        },
        redo: {
            title: 'Действие вперед',
            onClick: () => editor.chain().focus().redo().run()
        },
        alignLeft: {
            title: 'По левому краю',
            onClick: () => {
yakoff94's avatar
yakoff94 committed
332
333
                editor.commands.setTextAlign('left');

yakoff94's avatar
yakoff94 committed
334
                //так надо, даже не вникай, фикс бага в хроме при выравнивании картинки
yakoff94's avatar
yakoff94 committed
335
                setTimeout(()=>{
yakoff94's avatar
yakoff94 committed
336
337
                    // editor.commands.setTextAlign('left');
                    // editor.chain().focus().run()
yakoff94's avatar
yakoff94 committed
338
                },150)
yakoff94's avatar
yakoff94 committed
339
340
341
342
343
344
            }
        },
        alignCenter: {
            title: 'По центру',
            onClick: () => {
                editor.commands.setTextAlign('center');
yakoff94's avatar
yakoff94 committed
345
                // editor.chain().focus().run();
yakoff94's avatar
yakoff94 committed
346
                //так надо, даже не вникай, фикс бага в хроме при выравнивании картинки
yakoff94's avatar
yakoff94 committed
347
                setTimeout(()=>{
yakoff94's avatar
yakoff94 committed
348
349
                    // editor.commands.setTextAlign('center');
                    // editor.chain().focus().run()
yakoff94's avatar
yakoff94 committed
350
                },150)
yakoff94's avatar
yakoff94 committed
351
352
353
354
355
            }
        },
        alignRight: {
            title: 'По правому краю',
            onClick: () => {
yakoff94's avatar
yakoff94 committed
356
357
                editor.commands.setTextAlign('right');

yakoff94's avatar
yakoff94 committed
358
                //так надо, даже не вникай, фикс бага в хроме при выравнивании картинки
yakoff94's avatar
yakoff94 committed
359
                setTimeout(()=>{
yakoff94's avatar
yakoff94 committed
360
361
                    // editor.commands.setTextAlign('right');
                    // editor.chain().focus().run()
yakoff94's avatar
yakoff94 committed
362
                },150)
yakoff94's avatar
yakoff94 committed
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
            }
        },
        insertTable: {
            title: 'Вставить таблицу',
            onClick: () =>
                editor.chain().focus().insertTable({rows: 2, cols: 2}).run()
        },
        deleteTable: {
            title: 'Удалить таблицу',
            onClick: () => editor.chain().focus().deleteTable().run()
        },
        addRowBefore: {
            title: 'Вставить строку перед',
            onClick: () => editor.chain().focus().addRowBefore().run()
        },
        addRowAfter: {
            title: 'Вставить строку после',
            onClick: () => editor.chain().focus().addRowAfter().run()
        },
        deleteRow: {
            title: 'Удалить строку',
            onClick: () => editor.chain().focus().deleteRow().run()
        },
        addColumnBefore: {
            title: 'Вставить столбец перед',
            onClick: () => editor.chain().focus().addColumnBefore().run()
        },
        addColumnAfter: {
            title: 'Вставить столбец после',
            onClick: () => editor.chain().focus().addColumnAfter().run()
        },
        deleteColumn: {
            title: 'Удалить столбец',
            onClick: () => editor.chain().focus().deleteColumn().run()
        },
        mergeOrSplit: {
            title: 'Объединить/разъединить ячейки',
            onClick: () => editor.chain().focus().mergeOrSplit().run()
        },
        toggleHeaderCell: {
            title: 'Добавить/удалить заголовок',
            onClick: () => editor.chain().focus().toggleHeaderCell().run()
        },
        colorText: {
            title: 'Цвет текста',
            onClick: () => {
                setColorsSelected('color')
                editor.chain().focus()
            }
        },
        highlight: {
            title: 'Цвет фона',
            onClick: () => setColorsSelected('highlight')
        },
        voicemessage: {
            title: 'Записать голосовое сообщение',
            onClick: () => {
                setRecordType({audio: true})
                clearBlobUrl()
                modalOpener('voicemessage', 'Записать голосовое сообщение')
            }
        },
        webcamera: {
            title: 'Записать с камеры',
            onClick: () => {
                setRecordType({video: true})
                clearBlobUrl()
                modalOpener('webcamera', 'Записать с камеры')
            }
        },
        screencust: {
            title: 'Записать экран',
            onClick: () => {
                if (isMobile) {
                    setRecordType({video: true})
                } else {
                    setRecordType({screen: true})
                }
                clearBlobUrl()
                modalOpener('screencust', 'Записать экран')
            }
        }
        // katex: {
        //     title: 'Вставить формулу',
        //     onClick: () => {
        //
        //         console.log(katex.renderToString(String.raw`c = \pm\sqrt{a^2 + b^2}`));
        //
        //         // editor.chain().focus().insertContent()
        //     }
        // }
DenSakh's avatar
DenSakh committed
454
    }
Яков's avatar
Яков committed
455

yakoff94's avatar
yakoff94 committed
456
457
458
459
    const editor = useEditor({
        extensions: [
            StarterKit,
            Underline,
yakoff94's avatar
yakoff94 committed
460
461
462
            // Image,
            ImageResize,
            // CustomImage,
yakoff94's avatar
yakoff94 committed
463
464
465
466
467
468
469
470
471
472
473
474
475
            // Link.configure({
            //     autolink: true,
            //     linkOnPaste: true,
            //     validate: (href)=> console.log(href),
            // }),
            Video,
            Iframe,
            Table.configure({
                resizable: true,
                allowTableNodeSelection: true
            }),
            TableRow,
            TableHeader,
yakoff94's avatar
fix    
yakoff94 committed
476
477
478
479
480
481
482
483
484
485
486
            TableCell.extend({
                renderHTML({ HTMLAttributes }) {
                    const attrs = mergeAttributes(this.options.HTMLAttributes, HTMLAttributes);

                    if (attrs.colwidth) {
                        attrs.style = `width: ${attrs.colwidth}px`;
                    }

                    return ['td', attrs, 0];
                }
            }),
yakoff94's avatar
yakoff94 committed
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
            BubbleMenu,
            TextAlign.configure({
                defaultAlignment: 'left',
                types: ['heading', 'paragraph'],
                alignments: ['left', 'center', 'right', 'justify']
            }),
            TextStyle,
            Color.configure({
                types: ['textStyle']
            }),
            Highlight.configure({
                multicolor: true
            }),
            CustomLink.configure({
                linkOnPaste: false,
                openOnClick: false
            }),
            Focus.configure({
                className: 'atma-editor-focused',
                mode: 'all'
            }),
            DragAndDrop.configure({
                linkUpload: uploadOptions.url
            }),
            Audio,
            Superscript,
yakoff94's avatar
yakoff94 committed
513
            Subscript,
yakoff94's avatar
yakoff94 committed
514
515
516
517
518
        ],
        content: value,
        onUpdate: ({editor}) => onChange(editor.getHTML()),
        onFocus: ({editor}) => {
            const wrap = editor.options.element.closest('.atma-editor-wrap')
Рамис's avatar
Рамис committed
519

yakoff94's avatar
yakoff94 committed
520
521
522
523
524
            wrap.querySelectorAll('.atma-editor-toolbar-s').forEach(function (s) {
                s.classList.remove('show')
            })
        }
    })
Рамис's avatar
Рамис committed
525

yakoff94's avatar
yakoff94 committed
526
527
528
529
    const buildActionsModal = (buttons = []) => {
        if (buttons.length === 0) {
            return null
        }
Рамис's avatar
Рамис committed
530

yakoff94's avatar
yakoff94 committed
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
        return (
            <div className='atma-editor-modal-action'>
                {buttons.map((btn, i) => (
                    <button
                        disabled={btn.disabled}
                        type='button'
                        key={'mAction' + i}
                        className={'atma-editor-btn' + btn.className}
                        onClick={btn.onClick}
                    >
                        {btn.title}
                    </button>
                ))}
            </div>
        )
DenSakh's avatar
DenSakh committed
546
    }
547

yakoff94's avatar
yakoff94 committed
548
549
550
551
552
553
554
555
    const getUploader = ({accept = '*', ...o}) => {
        let url = uploadOptions.url
        let multiple = true
        if (o.afterParams && o.afterParams.length > 0) {
            if (uploadOptions.url.indexOf('?') !== -1) {
                url = uploadOptions.url + '&' + o.afterParams.join('&')
            } else {
                url = uploadOptions.url + '?' + o.afterParams.join('&')
DenSakh's avatar
DenSakh committed
556
            }
yakoff94's avatar
yakoff94 committed
557
        }
Sergey's avatar
Sergey committed
558

yakoff94's avatar
yakoff94 committed
559
560
561
        if (typeof o.multiple !== 'undefined') {
            multiple = o.multiple
        }
Sergey's avatar
Sergey committed
562

yakoff94's avatar
yakoff94 committed
563
564
565
566
567
568
569
570
571
572
573
574
575
576
        return (
            <Uploader
                key={uploaderUid}
                accept={accept}
                action={url}
                errorMessage={uploadOptions.errorMessage}
                onSuccess={(file) => {
                    const _uploadedPaths = [...uploadedPaths]
                    _uploadedPaths.push(file)
                    setUploadedPaths(_uploadedPaths)
                }}
                onDelete={(deleteFile) => {
                    let deleteIdx = null
                    const _uploadedPaths = [...uploadedPaths]
DenSakh's avatar
DenSakh committed
577

yakoff94's avatar
yakoff94 committed
578
579
580
581
582
583
584
585
586
587
588
589
590
                    _uploadedPaths.map((f, i) => {
                        if (f.uid === deleteFile.uid) {
                            deleteIdx = i
                        }
                    })
                    _uploadedPaths.splice(deleteIdx, 1)
                    setUploadedPaths(_uploadedPaths)
                }}
                multiple={multiple}
                modalType={innerModalType}
            />
        )
    }
DenSakh's avatar
DenSakh committed
591

yakoff94's avatar
yakoff94 committed
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
    const saveScreenCust = async (fileBlob) => {
        if (fileBlob) {
            setIsUploading(true)
            const blobData = await fetch(fileBlob).then((res) => res.blob())

            const data = new FormData()
            const file = new File(
                [blobData],
                'name.' + (recordType?.audio ? 'mp3' : 'webm')
            )
            data.append('file', file)

            const headers = {'Content-Type': 'multipart/form-data'}

            return new Promise(function (resolve) {
                axios.post(uploadOptions.url, data, {headers: headers}).then((response) => {
                    if (response.data.state === 'success') {
                        resolve(response.data)
                    }
                    setIsUploading(false)
                })
            })
        }
DenSakh's avatar
DenSakh committed
615
616
    }

yakoff94's avatar
yakoff94 committed
617
618
619
620
621
622
623
    const getInnerModal = () => {
        switch (innerModalType) {
            case 'iframe':
                return (
                    <IframeModal
                        embedContent={embedContent}
                        setEmbedContent={setEmbedContent}
DenSakh's avatar
DenSakh committed
624
                    />
yakoff94's avatar
yakoff94 committed
625
626
627
628
629
630
                )
            case 'iframe_custom':
                return (
                    <IframeCustomModal
                        embedContent={embedContent}
                        setEmbedContent={setEmbedContent}
DenSakh's avatar
DenSakh committed
631
                    />
yakoff94's avatar
yakoff94 committed
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
                )
            case 'iframe_pptx':
                return (
                    <Fragment>
                        {getUploader({
                            accept:
                                'application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.openxmlformats-officedocument.presentationml.presentation',
                            afterParams: ['no_convert=1']
                        })}
                    </Fragment>
                )
            case 'audio':
                return (
                    <Fragment>{getUploader({accept: '.wav, .mp3, .ogg'})}</Fragment>
                )
            case 'iframe_pdf':
                return (
                    <Fragment>
                        {getUploader({
                            accept: 'application/pdf',
                            afterParams: ['no_convert=1']
                        })}
                    </Fragment>
                )
            case 'video':
                return <Fragment>{getUploader({accept: 'video/*'})}</Fragment>
            case 'image':
                return <Fragment>{getUploader({accept: 'image/*'})}</Fragment>
            case 'file':
                return (
                    <Fragment>
                        {getUploader({accept: '*', afterParams: ['no_convert=1']})}
                    </Fragment>
                )
            case 'voicemessage':
                return (
                    <Fragment>
                        {isMobile && (
                            <div className='webwrap'>
                                <div>
                                    Аудиозапись с мобильного устройства недоступна, <br/>{' '}
                                    запишите стандартными функциями устройства и воспользуйтесь
                                    кнопкой «Прикрепить файл»
                                </div>
                            </div>
                        )}
                        { ! isMobile && (
                            <div className='audio-player'>
                                <div className='audio-player-start audio-player-margin'>
                                    {status === 'recording' && ! mediaBlobUrl ? (
                                        <div
                                            onClick={stopRecording}
                                            className='audio-player-center-recording'
                                        />
                                    ) : (
                                        <div
                                            onClick={startRecording}
                                            className='audio-player-center-start'
                                        />
                                    )}
                                </div>
                                <div className='audio-player-voice audio-player-margin'/>
                                {status === 'recording' && ! mediaBlobUrl ? (
                                    <ReactStopwatch
                                        seconds={0}
                                        minutes={0}
                                        hours={0}
                                        render={({formatted}) => {
                                            return (
                                                <span className='audio-player-timer audio-player-margin'>
DenSakh's avatar
DenSakh committed
702
703
                          {formatted}
                        </span>
yakoff94's avatar
yakoff94 committed
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
                                            )
                                        }}
                                    />
                                ) : (
                                    <span className='audio-player-timer audio-player-margin'/>
                                )}
                            </div>
                        )}
                    </Fragment>
                )
            case 'screencust':
                return (
                    <>
                        <Fragment>
                            {isMobile && (
                                <div className='webwrap'>
                                    <div>
                                        Запись экрана с мобильного устройства недоступна, <br/>
                                        запишите стандартными функциями устройства и воспользуйтесь
                                        кнопкой «Загрузить видео»
                                    </div>
                                </div>
                            )}
                            { ! isMobile && (
                                <>
                                    <div className='webwrap'>
                                        <div className='webwrap-content'>
                                            {mediaBlobUrl ? (
                                                <video
                                                    className='webwrap-video'
                                                    id='id-video'
                                                    src={mediaBlobUrl}
                                                    controls
                                                />
                                            ) : (
                                                status === 'recording' && (
                                                    <video
                                                        className='webwrap-video'
                                                        ref={videoRef}
                                                        src={previewStream}
                                                        autoPlay
                                                        controls={false}
                                                    />
                                                )
                                            )}
                                            {status === 'recording' && ! mediaBlobUrl ? (
                                                <ReactStopwatch
                                                    seconds={0}
                                                    minutes={0}
                                                    hours={0}
                                                    render={({formatted}) => {
                                                        return (
                                                            <span className='webwrap-timer'>{formatted}</span>
                                                        )
                                                    }}
                                                />
                                            ) : (
                                                <span className='webwrap-timer'>00:00:00</span>
                                            )}
                                            { ! mediaBlobUrl && (
                                                <div className='webwrap-start-border'>
                                                    <button
                                                        onClick={
                                                            status === 'recording'
                                                                ? stopRecording
                                                                : startRecording
                                                        }
                                                        className={
                                                            status === 'recording'
                                                                ? 'webwrap-record-center'
                                                                : 'webwrap-start-center'
                                                        }
                                                    />
                                                </div>
                                            )}
                                        </div>
                                    </div>
                                    <div className='web-bottom-elements'>
                                        {mediaBlobUrl && (
                                            <div onClick={clearBlobUrl} className='web-button-wrap'>
                                                <div className='web-button-rerecord'/>
                                                <span className='web-button-rerecord-text'>
DenSakh's avatar
DenSakh committed
786
787
                          Перезаписать
                        </span>
yakoff94's avatar
yakoff94 committed
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
                                            </div>
                                        )}
                                        { ! mediaBlobUrl && <div className='web-button-spacer'/>}
                                        { ! mediaBlobUrl && (
                                            <div
                                                onClick={isAudioMuted ? unMuteAudio : muteAudio}
                                                className={
                                                    isAudioMuted ? 'web-button-unmute' : 'web-button-mute'
                                                }
                                            />
                                        )}
                                        <div className='web-button-spacer'/>
                                    </div>
                                </>
                            )}
                        </Fragment>
                    </>
                )
            case 'webcamera':
                return (
                    <>
                        <Fragment>
                            {isMobile && (
                                <div className='webwrap'>
                                    <div>
                                        Видеозапись с мобильного устройства недоступна, <br/>
                                        запишите стандартными функциями устройства и воспользуйтесь
                                        кнопкой «Загрузить видео»
                                    </div>
                                </div>
                            )}
                            { ! isMobile && (
                                <>
                                    <div className='webwrap'>
                                        <div className='webwrap-content'>
                                            {mediaBlobUrl ? (
                                                <video
                                                    className='webwrap-video'
                                                    id='id-video'
                                                    src={mediaBlobUrl}
                                                    controls
                                                />
                                            ) : (
                                                status === 'recording' && (
                                                    <video
                                                        className='webwrap-video'
                                                        ref={videoRef}
                                                        src={previewStream}
                                                        autoPlay
                                                        controls={false}
                                                    />
                                                )
                                            )}
                                            {status === 'recording' && ! mediaBlobUrl ? (
                                                <ReactStopwatch
                                                    seconds={0}
                                                    minutes={0}
                                                    hours={0}
                                                    render={({formatted}) => {
                                                        return (
                                                            <span className='webwrap-timer'>{formatted}</span>
                                                        )
                                                    }}
                                                />
                                            ) : (
                                                <span className='webwrap-timer'>00:00:00</span>
                                            )}
                                            { ! mediaBlobUrl && (
                                                <div className='webwrap-start-border'>
                                                    <button
                                                        onClick={
                                                            status === 'recording'
                                                                ? stopRecording
                                                                : startRecording
                                                        }
                                                        className={
                                                            status === 'recording'
                                                                ? 'webwrap-record-center'
                                                                : 'webwrap-start-center'
                                                        }
                                                    />
                                                </div>
                                            )}
                                        </div>
                                    </div>
                                    <div className='web-bottom-elements'>
                                        {mediaBlobUrl && (
                                            <div onClick={clearBlobUrl} className='web-button-wrap'>
                                                <div className='web-button-rerecord'/>
                                                <span className='web-button-rerecord-text'>
DenSakh's avatar
DenSakh committed
878
879
                          Перезаписать
                        </span>
yakoff94's avatar
yakoff94 committed
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
                                            </div>
                                        )}
                                        { ! mediaBlobUrl && <div className='web-button-spacer'/>}
                                        { ! mediaBlobUrl && (
                                            <div
                                                onClick={isAudioMuted ? unMuteAudio : muteAudio}
                                                className={
                                                    isAudioMuted ? 'web-button-unmute' : 'web-button-mute'
                                                }
                                            />
                                        )}
                                        <div className='web-button-spacer'/>
                                    </div>
                                </>
                            )}
                        </Fragment>
                    </>
                )
DenSakh's avatar
DenSakh committed
898
            default:
yakoff94's avatar
yakoff94 committed
899
                return <div>Пусто</div>
DenSakh's avatar
DenSakh committed
900
        }
901
902
    }

yakoff94's avatar
yakoff94 committed
903
904
    const isDisabledAction = () => {
        let isDisabled = false
Nikita's avatar
Nikita committed
905

yakoff94's avatar
yakoff94 committed
906
907
908
909
910
911
912
913
914
915
        switch (innerModalType) {
            case 'video':
            case 'image':
                if (uploadOptions.url === null || uploadedPaths.length === 0) {
                    isDisabled = true
                }
                break
            case 'screencust':
                if (status === 'recording' || isUploading || ! mediaBlobUrl) {
                    isDisabled = true
DenSakh's avatar
DenSakh committed
916
                }
yakoff94's avatar
yakoff94 committed
917
918
919
920
921
922
923
924
925
926
927
928
                break
            case 'voicemessage':
                if (status === 'recording' || isUploading || ! mediaBlobUrl) {
                    isDisabled = true
                }
                break
            case 'webcamera':
                if (status === 'recording' || isUploading || ! mediaBlobUrl) {
                    isDisabled = true
                }
                break
            case 'iframe':
DenSakh's avatar
DenSakh committed
929
                try {
yakoff94's avatar
yakoff94 committed
930
                    const url = new URL(embedContent)
DenSakh's avatar
DenSakh committed
931

yakoff94's avatar
yakoff94 committed
932
                    switch (url.hostname) {
DenSakh's avatar
DenSakh committed
933
934
935
936
937
938
939
940
                        case 'rutube.ru':
                        case 'www.rutube.ru':
                        case 'vimeo.com':
                        case 'ok.ru':
                        case 'www.ok.ru':
                        case 'youtu.be':
                        case 'youtube.com':
                        case 'www.youtube.com':
yakoff94's avatar
yakoff94 committed
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
                            break
                        default:
                            isDisabled = true
                    }
                } catch (error) {
                    isDisabled = true
                }
                break
            case 'iframe_custom':
                const regex = new RegExp(
                    '(?:<iframe[^>]*)(?:(?:\\/>)|(?:>.*?<\\/iframe>))'
                )
                isDisabled = ! regex.test(embedContent)
                break
        }

        return isDisabled
    }

    if ( ! editor) {
        return null
    }

    const buttons =
        innerModalType === 'remove_iframe'
            ? [
                {
                    title: 'Отмена',
                    className: ' atma-editor-cancel',
                    onClick: () => {
                        stopRecording()
                        unMuteAudio()
                        clearBlobUrl()
                        setUploaderUid(`uid${new Date()}`)
                        setUploadedPaths([])
                        setModalIsOpen(false)
                    }
                },
                {
                    title: 'Удалить',
                    className: ' atma-editor-complete',
                    onClick: () => {
                        stopRecording()
                        unMuteAudio()
                        clearBlobUrl()
                        setUploaderUid(`uid${new Date()}`)
                        setUploadedPaths([])
                        setModalIsOpen(false)
                    }
                }
            ]
            : [
                {
                    title: 'Отмена',
                    className: ' atma-editor-cancel',
                    onClick: () => {
                        stopRecording()
                        unMuteAudio()
                        clearBlobUrl()
                        setUploaderUid(`uid${new Date()}`)
                        setUploadedPaths([])
                        setModalIsOpen(false)
                    }
                },
                {
                    title:
                        mediaBlobUrl && uploadedPaths.length === 0
                            ? isUploading
                                ? 'Сохранение...'
                                : 'Вставить'
                            : 'Вставить',
                    className: ' atma-editor-complete',
                    onClick: async () => {
                        if (status === 'recording' || isUploading) {
                            return false
                        } else {
                            if (
                                document.querySelectorAll('.atma-editor-uploader-progress').length > 0
                            ) {
                                if (
                                    // eslint-disable-next-line no-undef
                                    ! confirm(
                                        'Не полностью загруженные файлы будут утеряны. Вы уверены, что хотите продолжить?'
                                    )
                                ) {
                                    return false
                                }
DenSakh's avatar
DenSakh committed
1028
                            }
yakoff94's avatar
yakoff94 committed
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
                            try {
                                switch (innerModalType) {
                                    case 'image':
                                        uploadedPaths.map((file, i) => {
                                            editor.chain().focus().setImage({src: file.path}).run();
                                        })
                                        break
                                    case 'video':
                                        uploadedPaths.map((file, i) => {
                                            editor.chain().focus().setVideo({
                                                src: file.path,
                                                poster: file.path + '.jpg'
                                            }).run()
                                        })
                                        break
                                    case 'voicemessage':
                                        if (mediaBlobUrl && uploadedPaths.length === 0) {
                                            if ( ! isUploading) {
                                                await saveScreenCust(mediaBlobUrl).then((data) => {
                                                    if (data?.file_path) {
                                                        editor.chain().focus().addVoiceMessage({src: data.file_path}).run()
                                                    }
                                                })
                                            }
                                        }
                                        break
                                    case 'screencust':
                                        if (mediaBlobUrl && uploadedPaths.length === 0) {
                                            if ( ! isUploading) {
                                                await saveScreenCust(mediaBlobUrl).then((data) => {
                                                    if (data?.file_path) {
                                                        editor.chain().focus().setVideo({src: data.file_path}).run()
                                                    }
                                                })
                                            }
                                        }
                                        break
                                    case 'webcamera':
                                        if (mediaBlobUrl && uploadedPaths.length === 0) {
                                            if ( ! isUploading) {
                                                await saveScreenCust(mediaBlobUrl).then((data) => {
                                                    if (data?.file_path) {
                                                        editor.chain().focus().setVideo({src: data.file_path}).run()
                                                    }
                                                })
                                            }
                                        }
                                        break
                                    case 'iframe':
                                        let _url = embedContent
                                        const reg = /(http|https):\/\/([\w.]+\/?)\S*/

                                        const url = new URL(
                                            reg.test(_url) ? _url : 'https:' + _url
                                        )
                                        let urlId = url.pathname.replace(/\/$/gi, '').split('/').pop()

                                        switch (url.hostname) {
                                            case 'rutube.ru':
                                            case 'www.rutube.ru':
                                                _url = `https://rutube.ru/pl/?pl_id&pl_type&pl_video=${urlId}`
                                                break
                                            case 'vimeo.com':
                                                _url = `https://player.vimeo.com/video/${urlId}`
                                                break
                                            case 'ok.ru':
                                            case 'www.ok.ru':
                                                _url = `//ok.ru/videoembed/${urlId}`
                                                break
                                            case 'youtu.be':
                                            case 'youtube.com':
                                            case 'www.youtube.com':
                                                if (
                                                    url.hostname.indexOf('youtu.be') === -1 &&
                                                    url.search !== ''
                                                ) {
                                                    if (url.searchParams.get('v')) {
                                                        urlId = url.searchParams.get('v')
                                                    }
                                                }
                                                _url = `https://www.youtube.com/embed/${urlId}`
                                                break
                                        }
                                        editor.chain().focus().setIframe({src: _url}).run()
                                        break
                                    case 'iframe_custom':
                                        editor.chain().focus().insertContent(embedContent).run()
                                        break
                                    case 'iframe_pptx':
                                        uploadedPaths.map((file, i) => {
                                            editor.chain().focus().insertContent(
                                                `<iframe src="https://view.officeapps.live.com/op/embed.aspx?src=${file.path}" width="100%" height="600px" frameBorder="0"></iframe>`
                                            ).run()
                                        })
                                        break
                                    case 'audio':
                                        uploadedPaths.map((file) => {
                                            editor.chain().focus().insertContent(
                                                `<audio class="audio-player" controls="true" src="${file.path}" />`
                                            ).run()
                                        })
                                        break
                                    case 'iframe_pdf':
                                        uploadedPaths.map((file, i) => {
yakoff94's avatar
yakoff94 committed
1133
1134
1135
                                            // editor.chain().focus().insertContent(
                                            //     `<embed src="${file.path}" width="100%" height="800px" />`
                                            // ).run()
yakoff94's avatar
yakoff94 committed
1136
                                            editor.chain().focus().insertContent(
yakoff94's avatar
yakoff94 committed
1137
                                                `<iframe src="https://docs.google.com/viewer?embedded=true&url=${file.path}" width="100%" height="800px" frameBorder="0"></iframe>`
yakoff94's avatar
yakoff94 committed
1138
1139
1140
1141
1142
1143
1144
1145
                                            ).run()
                                        })
                                        break
                                    case 'file':
                                        uploadedPaths.map((file, i) => {
                                            let exp = file.path.split('.')
                                            exp = exp[exp.length - 1]
                                            editor.chain().focus().insertContent(
yakoff94's avatar
fix    
yakoff94 committed
1146
                                                `<a href="${file.path}" target="_blank" download="${file.name}.${exp}" data-size="${file.size}">${file.name}</a>`
yakoff94's avatar
yakoff94 committed
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
                                            ).run()
                                        })
                                        break
                                }
                                setModalIsOpen(false)
                                clearBlobUrl()
                                setUploaderUid(`uid${new Date()}`)
                                setEmbedContent('')
                                setUploadedPaths([])
                                setModalTitle('')
                            } catch (err) {
                                console.log(err)
                                setModalIsOpen(false)
                                clearBlobUrl()
                                setUploaderUid(`uid${new Date()}`)
                                setEmbedContent('')
                                setUploadedPaths([])
                                setModalTitle('')
                            }
                        }
                    },
                    disabled: isDisabledAction()
Nikita's avatar
Nikita committed
1169
                }
yakoff94's avatar
yakoff94 committed
1170
            ]
Рамис's avatar
Рамис committed
1171

yakoff94's avatar
yakoff94 committed
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
    return (
        <div className='atma-editor-wrap' style={style}>
            <div className='atma-editor'>
                <ToolBar editor={editor} {...{toolsOptions}} {...{toolsLib}} />
                <BubbleMenu
                    typpyOptions={{followCursor: true}}
                    editor={editor}
                    shouldShow={({...o}) => {
                        let items = []
                        if (
                            o.from !== o.to &&
                            editor.isActive('paragraph') &&
                            editor.isActive('image') === false &&
                            document.querySelectorAll('.selectedCell').length === 0
                        ) {
                            items = initialBubbleItems
                        }
Рамис's avatar
Рамис committed
1189

yakoff94's avatar
yakoff94 committed
1190
                        if (editor.isActive('image') === true) {
yakoff94's avatar
yakoff94 committed
1191
1192
                            items = []
                            // items = ['alignLeft', 'alignCenter', 'alignRight']
Рамис's avatar
Рамис committed
1193
                        }
yakoff94's avatar
yakoff94 committed
1194
1195
1196
1197
1198
                        setFocusFromTo([o.from, o.to].join(':'))

                        if (items.length > 0) {
                            setBubbleItems(items)
                            return true
DenSakh's avatar
DenSakh committed
1199
                        }
yakoff94's avatar
yakoff94 committed
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
                    }}
                    tippyOptions={{duration: 100}}
                >
                    <div
                        className='atma-editor-bubble'
                        onClick={(e) => e.stopPropagation()}
                    >
                        {colorsSelected !== null
                            ? colors[colorsSelected].map((itemColor, i) => {
                                return (
                                    <div
                                        key={'colors' + colorsSelected + i}
                                        className={
                                            'qcolors' + (itemColor === 'none' ? ' unset' : '')
                                        }
                                        style={{background: itemColor}}
                                        onClick={() => {
                                            if (itemColor === 'none') {
                                                colorsSelected === 'color'
                                                    ? editor.chain().focus().unsetHighlight().unsetColor().run()
                                                    : editor.chain().focus().unsetColor().unsetHighlight().run()
                                            } else {
                                                colorsSelected === 'color'
                                                    ? editor.chain().focus().unsetHighlight().setColor(itemColor).run()
                                                    : editor.chain().focus().unsetColor().toggleHighlight({color: itemColor}).run()
                                            }
                                            setColorsSelected(null)
                                        }}
                                    />
                                )
                            })
                            : bubbleItems.map((type, i) => {
                                if (type === '|') {
                                    return (
                                        <div key={'bubbleSeparator' + i} className='qseparator'/>
                                    )
                                } else {
                                    return (
                                        <div
                                            key={'bubbleItems' + i}
                                            className={
                                                'qicon q' +
                                                type +
                                                (editor.isActive(type) ? ' active' : '')
                                            }
                                            title={toolsLib[type] ? toolsLib[type].title : ''}
                                            onClick={toolsLib[type].onClick}
                                        />
                                    )
                                }
                            })}
Яков's avatar
Яков committed
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
                        <div
                            key={'bubbleItems-glossary'}
                            className={
                                'qicon qglossary'
                            }
                            title={'Добавить в глоссарий'}
                            onClick={()=>{
                                if (!editor.state.selection.empty) {
                                    const selectedText = editor.state.doc.textBetween(
                                        editor.state.selection.from,
                                        editor.state.selection.to,
                                        " "
                                    );
                                    setWordGlossary(selectedText);
                                    setTimeout(()=>{
                                        setModalGlossaryIsOpen(true);
                                    }, 100)
                                }
                                // console.log(editor.chain().focus());
                            }}
                        />
yakoff94's avatar
yakoff94 committed
1272
1273
1274
1275
1276
1277
1278
1279
                    </div>
                </BubbleMenu>
                <EditorContent editor={editor} className='atma-editor-content'/>
            </div>
            <EditorModal isOpen={modalIsOpen} title={modalTitle}>
                {getInnerModal()}
                {buildActionsModal(buttons)}
            </EditorModal>
Яков's avatar
Яков committed
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
            <Modal
                width={1100}
                open={modalGlossaryIsOpen}
                title={'Добавить слово'}
                onCancel={()=>{
                    setModalGlossaryIsOpen(false);
                }}
                footer={[
                    <Button key={1}
                            size={'middle'}
                            type={'text'}
                            onClick={()=>{
                                setModalGlossaryIsOpen(false);
                            }}>Отменить</Button>,
                    <Button key={2}
                            size={'middle'}
                            type={'primary'}
                            htmlType={'submit'}
                            form={'form-glossary'}
                    >Сохранить</Button>
                ]}
            >
                <Form
                    name={'form-glossary'}
                    initialValues={{word : wordGlossary}}
                    labelCol={{span: 8}}
                    wrapperCol={{span: 32}}
                    layout="vertical"
                    size="middle"
                    style={{margin: '30px'}}
                    onFinish={(values) => {
                        editWord(values);
                    }}
                >
                    <Form.Item name="id" style={{'display': 'none'}}>
                        <input  type="hidden"/>
                    </Form.Item>
                    <Form.Item
                        label={'Термин'}
                        name="word"
                        rules={[
                            {
                                required: true,
                                message: 'Обязательное поле',
                                type:"string"
                            },
                            { min: 2, message: 'Минимум 2 символа' },
                            { max: 254, message: 'Максимум 254 символов' },
                        ]}
                    >
                        <Input placeholder={'Термин'}/>
                    </Form.Item>

                    <Form.Item
                        name="description"
                        label={'Краткое описание'}
                        rules={[{required: true, type: 'string', message: 'Обязательное поле' }]}
                    >
                        <TextArea showCount={true} maxLength={1000} placeholder={'Краткое описание'}/>
                    </Form.Item>
                </Form>
            </Modal>
yakoff94's avatar
yakoff94 committed
1342
1343
        </div>
    )
Рамис's avatar
Рамис committed
1344
}
Рамис's avatar
Рамис committed
1345

DenSakh's avatar
DenSakh committed
1346
export default QEditor