QEditor.jsx 109 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
import StarterKit from '@tiptap/starter-kit'
import Underline from '@tiptap/extension-underline'
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
14
import Focus from '@tiptap/extension-focus'
Яков's avatar
Яков committed
15
import { Input, Modal, Form, Button, message, Select as AntdSelect } from "antd";
Яков's avatar
Яков committed
16
import Link from '@tiptap/extension-link'
yakoff94's avatar
yakoff94 committed
17
// import Image from '@tiptap/extension-image'
DenSakh's avatar
DenSakh committed
18
19
20
21
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
22
23
import Superscript from '@tiptap/extension-superscript'
import Subscript from '@tiptap/extension-subscript'
Рамис's avatar
Рамис committed
24

Яков's avatar
update    
Яков committed
25
import ToolBar, { Tip, toolInfo } from './components/ToolBar'
DenSakh's avatar
DenSakh committed
26
27
import EditorModal from './components/EditorModal'
import Uploader from './components/Uploader'
Яков's avatar
Яков committed
28
import EmojiPicker from './components/EmojiPicker'
Рамис's avatar
Рамис committed
29
30
import Video from './extensions/Video'
import Iframe from './extensions/Iframe'
Яков's avatar
Яков committed
31
// import CustomLink from './extensions/CustomLink'
Яков's avatar
Яков committed
32
import { DragAndDrop } from './extensions/DragAndDrop'
DenSakh's avatar
DenSakh committed
33
34
35
36
import { useReactMediaRecorder } from 'react-media-recorder'
import axios from 'axios'
import ReactStopwatch from 'react-stopwatch'
import Audio from './extensions/Audio'
Яков's avatar
update    
Яков committed
37
38
import TableExtension from './extensions/TableExtension'
import ToggleBlock from './extensions/ToggleBlock'
Яков's avatar
update    
Яков committed
39
import InteractiveImage from './extensions/InteractiveImage'
Яков's avatar
update    
Яков committed
40
import TrailingNode from './extensions/TrailingNode'
Яков's avatar
update    
Яков committed
41
import EnterAsBreak from './extensions/EnterAsBreak'
Яков's avatar
Яков committed
42
import FontSize from './extensions/FontSize'
Яков's avatar
update    
Яков committed
43
import BlockId from './extensions/BlockId'
44
import ActivityRef from './extensions/ActivityRef'
Яков's avatar
update    
Яков committed
45
46
47
48
import Callout from './extensions/Callout'
import ShowAnswer from './extensions/ShowAnswer'
import SelfCheck from './extensions/SelfCheck'
import Glossary from './extensions/Glossary'
49
import { Icon } from './icons'
Яков's avatar
Яков committed
50
import ButtonLinkExtension from './extensions/ButtonLink'
yakoff94's avatar
yakoff94 committed
51
52
53
// import Image from '@tiptap/extension-image'

// import ImageResize from 'tiptap-extension-resize-image';
Яков's avatar
Яков committed
54

yakoff94's avatar
yakoff94 committed
55
56
import ImageResize from './extensions/Image.jsx'
// import ImageResize from 'tiptap-imagresize';
yakoff94's avatar
yakoff94 committed
57
// import ImageResize from 'tiptap-imagresize';
Рамис's avatar
Рамис committed
58

DenSakh's avatar
DenSakh committed
59
60
61
import IframeModal from './modals/IframeModal'
import IframeCustomModal from './modals/IframeCustomModal'
import { isMobile } from 'react-device-detect'
firesong1337's avatar
firesong1337 committed
62
import { ExportPdf } from './extensions/ExportPdf'
Яков's avatar
Яков committed
63
import { mergeAttributes, Extension } from "@tiptap/core";
Яков's avatar
Яков committed
64
import Upload from "rc-upload";
Яков's avatar
Яков committed
65
import { NodeSelection, TextSelection } from 'prosemirror-state'
Яков's avatar
Яков committed
66

yakoff94's avatar
yakoff94 committed
67
68
69
70
71
72
73
74
75
76
77
78
79
// 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
80
const {TextArea} = Input;
yakoff94's avatar
yakoff94 committed
81

Яков's avatar
Яков committed
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// Word-by-word navigation (Word-like: Ctrl+Arrow)
function _wordFwd(text, pos) {
    let i = pos
    while (i < text.length && /\s/.test(text[i])) i++
    while (i < text.length && /\S/.test(text[i])) i++
    return i
}
function _wordBwd(text, pos) {
    let i = pos
    while (i > 0 && /\s/.test(text[i - 1])) i--
    while (i > 0 && /\S/.test(text[i - 1])) i--
    return i
}
function _moveByWord(editor, forward, extend) {
    const { state } = editor
    const { selection, doc } = state
    const { $anchor, $head } = selection

    const $cursor = extend ? $head : (forward ? selection.$to : selection.$from)
    const pos = $cursor.pos
    const blockStart = $cursor.start()
    const blockEnd = $cursor.end()
    const blockText = doc.textBetween(blockStart, blockEnd, '', '')
    const relPos = pos - blockStart

    let newPos
    if (forward) {
        const nr = _wordFwd(blockText, relPos)
        if (nr === relPos && blockEnd + 1 <= doc.content.size) {
            // no movement possible in this block — jump into next block
            try {
                const $next = doc.resolve(blockEnd + 1)
                newPos = $next.start()
            } catch { newPos = blockEnd }
        } else {
            newPos = blockStart + nr
        }
    } else {
        const nr = _wordBwd(blockText, relPos)
        if (nr === relPos && blockStart - 1 > 0) {
            // no movement possible in this block — jump to end of previous block
            try {
                const $prev = doc.resolve(blockStart - 1)
                newPos = $prev.end()
            } catch { newPos = Math.max(0, blockStart - 1) }
        } else {
            newPos = blockStart + nr
        }
    }

    newPos = Math.max(0, Math.min(newPos, doc.content.size))
    const anchorPos = extend ? $anchor.pos : newPos
    try {
        const sel = TextSelection.create(doc, anchorPos, newPos)
        editor.view.dispatch(state.tr.setSelection(sel).scrollIntoView())
    } catch { /* invalid position */ }
    return true
}
const WordNavigation = Extension.create({
    name: 'wordNavigation',
    addKeyboardShortcuts() {
        return {
            'Ctrl-ArrowRight':       () => _moveByWord(this.editor, true,  false),
            'Ctrl-ArrowLeft':        () => _moveByWord(this.editor, false, false),
            'Ctrl-Shift-ArrowRight': () => _moveByWord(this.editor, true,  true),
            'Ctrl-Shift-ArrowLeft':  () => _moveByWord(this.editor, false, true),
        }
    }
})

Яков's avatar
Яков committed
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
const ImageWrapEnter = Extension.create({
    name: 'imageWrapEnter',
    addKeyboardShortcuts() {
        return {
            'Enter': ({ editor }) => {
                const { state } = editor
                const { $from } = state.selection
                const parent = $from.parent
                const cursorOffset = $from.parentOffset
                let lastWrappedEnd = null
                parent.forEach((child, offset) => {
                    if (child.type.name === 'image' && child.attrs.wrap && offset >= cursorOffset) {
                        lastWrappedEnd = $from.start() + offset + child.nodeSize
                    }
                })
                if (lastWrappedEnd === null) return false
                return editor.chain()
                    .setTextSelection(lastWrappedEnd)
                    .splitBlock()
                    .run()
            }
        }
    }
})

DenSakh's avatar
DenSakh committed
177
const initialBubbleItems = [
yakoff94's avatar
yakoff94 committed
178
179
180
181
182
183
184
    'bold',
    'italic',
    'underline',
    'strike',
    'superscript',
    'subscript',
    '|',
Яков's avatar
Яков committed
185
    'fontSize',
yakoff94's avatar
yakoff94 committed
186
    'colorText',
Яков's avatar
update    
Яков committed
187
188
189
    'highlight',
    '|',
    'glossary'
DenSakh's avatar
DenSakh committed
190
]
Рамис's avatar
Рамис committed
191

Яков's avatar
Яков committed
192
const QEditor = ({
yakoff94's avatar
yakoff94 committed
193
194
195
196
    value,
    onChange = () => {},
    style,
    uploadOptions = {url: '', errorMessage: ''},
Яков's avatar
Яков committed
197
    toolsOptions = {type: 'all'},
Яков's avatar
update    
Яков committed
198
199
    onInfo,
    // Режим оформления контента, задаётся хостом: 'atma-content--lesson' | 'atma-content--compact' | ''
200
201
202
    contentClass = '',
    // Словарь подписей от хоста: { [ключ кнопки]: { title, hint } }.
    // Нужен для перевода — своей локализации у пакета нет. Пусто — встроенные русские.
203
    labels = {},
204
205
206
207
208
209
    // Выбор задания для вставки в урок. Возвращает промис с атрибутами ссылки
    // либо null, если автор передумал. Пакет не знает ни маршрутов платформы,
    // ни её API — список заданий показывает хост.
    onPickActivity = null,
    // Открыть конструктор задания из карточки в редакторе
    onOpenActivity = null,
210
    activityLabels = null,
Яков's avatar
update    
Яков committed
211
212
213
214
    // Выбор термина глоссария. Возвращает промис с идентификатором либо null.
    // Список терминов — у хоста: глоссарий это сущность платформы, и он свой
    // у каждой компании.
    onPickTerm = null,
215
216
217
218
    /** Интерактивное изображение как сущность платформы: три колбэка */
    onCreateInteractiveImage = null,
    onLoadInteractiveImage = null,
    onSaveInteractiveImage = null,
219
220
221
222
    // Документ tiptap наружу. Отдельным пропом, а НЕ вторым аргументом onChange:
    // редактор используется в 21 месте, и все ждут строку с HTML.
    // Не передали — ничего не меняется.
    onChangeDoc = null
Яков's avatar
Яков committed
223
}) => {
yakoff94's avatar
yakoff94 committed
224
    global.uploadUrl = uploadOptions.url
Sergey's avatar
Sergey committed
225

Яков's avatar
Яков committed
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
    const defaultButtonLinkData = {
        text: 'Перейти',
        href: '',
        fontSize: '16px',
        textColor: '#ffffff',
        backgroundColor: '#1790FF'
    }

    const getSelectedButtonLinkData = () => {
        if (!editor || !(editor.state.selection instanceof NodeSelection)) {
            return null
        }

        const selectedNode = editor.state.selection.node

        if (!selectedNode || selectedNode.type.name !== 'buttonLink') {
            return null
        }

        return {
            text: selectedNode.attrs.text || defaultButtonLinkData.text,
            href: selectedNode.attrs.href || '',
            fontSize: selectedNode.attrs.fontSize || defaultButtonLinkData.fontSize,
            textColor: selectedNode.attrs.textColor || defaultButtonLinkData.textColor,
            backgroundColor: selectedNode.attrs.backgroundColor || defaultButtonLinkData.backgroundColor
        }
    }

yakoff94's avatar
yakoff94 committed
254
255
256
257
258
    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
259
260
    const [modalGlossaryIsOpen, setModalGlossaryIsOpen] = useState(false)
    const [wordGlossary, setWordGlossary] = useState(false)
yakoff94's avatar
yakoff94 committed
261
262
263
264
265
266
267
    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})
Яков's avatar
Яков committed
268
    const [buttonLinkData, setButtonLinkData] = useState(defaultButtonLinkData)
Яков's avatar
Яков committed
269
270
    const [suggestedFiles, setSuggestedFiles] = useState([])
    const [suggestedLoading, setSuggestedLoading] = useState(false)
Яков's avatar
Яков committed
271
272
    const [suggestPage, setSuggestPage] = useState(1)
    const [suggestTotal, setSuggestTotal] = useState(0)
Яков's avatar
Яков committed
273
274
275
    const SUGGEST_LIMIT = innerModalType === 'video' ? 8 : 20
    const [playingAudio, setPlayingAudio] = useState(null)
    const audioRefs = useRef({})
Sergey's avatar
Sergey committed
276

277
    let formRef = useRef(null);
yakoff94's avatar
yakoff94 committed
278
279
280
281
282
283
284
285
286
    // 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
287
    }
yakoff94's avatar
yakoff94 committed
288
289
290
291
292
293
294
295
296
297
298
    const {
        status,
        startRecording,
        stopRecording,
        mediaBlobUrl,
        previewStream,
        muteAudio,
        unMuteAudio,
        isAudioMuted,
        clearBlobUrl
    } = useReactMediaRecorder(recordType)
Рамис's avatar
Рамис committed
299

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

yakoff94's avatar
yakoff94 committed
302
303
304
    useEffect(() => {
        if (videoRef.current && previewStream) {
            videoRef.current.srcObject = previewStream
Рамис's avatar
bug fix    
Рамис committed
305
        }
yakoff94's avatar
yakoff94 committed
306
    }, [previewStream])
Рамис's avatar
Рамис committed
307

yakoff94's avatar
yakoff94 committed
308
309
310
311
    useEffect(() => {
        if (focusFromTo !== oldFocusFromTo) {
            setColorsSelected(null)
            setOldFocusFromTo(focusFromTo)
Рамис's avatar
Рамис committed
312
        }
yakoff94's avatar
yakoff94 committed
313
    }, [focusFromTo])
Рамис's avatar
Рамис committed
314

Яков's avatar
Яков committed
315
    const SUGGEST_TYPES = ['image', 'interactiveImage', 'video', 'audio', 'file', 'iframe_pdf', 'iframe_pptx']
Яков's avatar
Яков committed
316
317
318
319
320
    const SUGGEST_TYPE_MAP = {
        image: 'image',
        interactiveImage: 'image',
        video: 'video',
        audio: 'audio',
Яков's avatar
Яков committed
321
322
323
        file: 'file',
        iframe_pdf: 'pdf',
        iframe_pptx: 'pptx'
Яков's avatar
Яков committed
324
325
    }

Яков's avatar
Яков committed
326
327
328
329
    useEffect(() => {
        setSuggestPage(1)
        setSuggestTotal(0)
        setSuggestedFiles([])
Яков's avatar
Яков committed
330
331
332
        setPlayingAudio(null)
        Object.values(audioRefs.current).forEach(el => { if (el) el.pause() })
        audioRefs.current = {}
Яков's avatar
Яков committed
333
334
    }, [innerModalType])

Яков's avatar
Яков committed
335
336
337
    useEffect(() => {
        if (!modalIsOpen || !uploadOptions.suggestUrl || !SUGGEST_TYPES.includes(innerModalType)) {
            setSuggestedFiles([])
Яков's avatar
Яков committed
338
            setSuggestTotal(0)
Яков's avatar
Яков committed
339
340
341
342
            return
        }
        let cancelled = false
        setSuggestedLoading(true)
Яков's avatar
Яков committed
343
344
345
346
347
348
349
        axios.get(uploadOptions.suggestUrl, {
            params: {
                type: SUGGEST_TYPE_MAP[innerModalType],
                page: suggestPage,
                limit: SUGGEST_LIMIT
            }
        })
Яков's avatar
Яков committed
350
351
352
            .then(response => {
                if (!cancelled && response.data.state === 'success' && Array.isArray(response.data.files)) {
                    setSuggestedFiles(response.data.files)
Яков's avatar
Яков committed
353
                    setSuggestTotal(response.data.total || response.data.files.length)
Яков's avatar
Яков committed
354
355
356
357
358
                }
            })
            .catch(() => {})
            .finally(() => { if (!cancelled) setSuggestedLoading(false) })
        return () => { cancelled = true }
Яков's avatar
Яков committed
359
    }, [modalIsOpen, innerModalType, suggestPage])
Яков's avatar
Яков committed
360

Яков's avatar
Яков committed
361
362
363
364
365
366
367
368
369
370
371
    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('Ошибка');
                }
Яков's avatar
Яков committed
372
                setModalGlossaryIsOpen(false);
Яков's avatar
Яков committed
373
            }).catch((reason)=>{
Яков's avatar
Яков committed
374
                setModalGlossaryIsOpen(false);
Яков's avatar
Яков committed
375
376
377
378
379
380
381
                message.error('Что-то пошло не так');
            })
        } else {
            message.error('Термин не может состоять из одних пробелов');
        }
    }

yakoff94's avatar
yakoff94 committed
382
    const modalOpener = (type, title) => {
Яков's avatar
Яков committed
383
384
385
386
387
        if (type === 'buttonLink') {
            const selectedButtonLinkData = getSelectedButtonLinkData()

            setButtonLinkData(selectedButtonLinkData || defaultButtonLinkData)
        }
yakoff94's avatar
yakoff94 committed
388
389
390
391
        setModalTitle(title)
        setInnerModalType(type)
        setModalIsOpen(true)
    }
392
393
394
395
396
    // Палитра сведена к шести семантическим значениям (решение владельца, §12 ТЗ,
    // вопрос 3). Было по двенадцать произвольных оттенков на каждый список —
    // с ними «заголовок выглядит одинаково во всех уроках» недостижимо.
    // Значения взяты из темы платформы (_variables.scss / _content.scss),
    // а не подобраны заново.
yakoff94's avatar
yakoff94 committed
397
398
    const colors = {
        color: [
399
400
401
402
403
404
            'none',        // обычный текст
            '#6B7280',     // приглушённый
            '#1790FF',     // акцент
            '#09C358',     // успех
            '#F6993F',     // предупреждение
            '#FF5F56'      // ошибка
yakoff94's avatar
yakoff94 committed
405
406
407
        ],
        highlight: [
            'none',
408
409
410
411
412
            '#E3E7EC',     // нейтральное выделение
            '#CDE8FF',     // акцент
            '#C9F2D8',     // успех
            '#FFE9B8',     // предупреждение
            '#FFD9D6'      // ошибка
yakoff94's avatar
yakoff94 committed
413
        ]
Рамис's avatar
Рамис committed
414
    }
Яков's avatar
Яков committed
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
    const fontSizes = ['12px', '14px', '16px', '18px', '20px', '24px', '28px', '32px']

    const validateLinkHref = (href) => {
        if (!href || typeof href !== 'string') {
            return false
        }

        try {
            const normalizedHref = /^[a-zA-Z][a-zA-Z\d+\-.]*:/.test(href)
                ? href
                : `https://${href}`
            const parsedUrl = new URL(normalizedHref)

            return ['http:', 'https:'].includes(parsedUrl.protocol)
        } catch (error) {
            return false
        }
    }

    const normalizeLinkHref = (href) => {
        if (!href || typeof href !== 'string') {
            return ''
        }

        return /^[a-zA-Z][a-zA-Z\d+\-.]*:/.test(href) ? href : `https://${href}`
    }
Рамис's avatar
Рамис committed
441

yakoff94's avatar
yakoff94 committed
442
443
444
445
    const toolsLib = {
        link: {
            title: 'Вставить ссылку',
            onClick: () => {
Яков's avatar
Яков committed
446
447
448
449
450
                const selection = {
                    from: editor.state.selection.from,
                    to: editor.state.selection.to,
                    empty: editor.state.selection.empty
                }
yakoff94's avatar
yakoff94 committed
451
452
453
454
455
456
457
458
459
460
                const previousUrl = editor.getAttributes('link').href
                const url = window.prompt('Введите URL', previousUrl)

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

                // empty
                if (url === '') {
Яков's avatar
Яков committed
461
                    editor.chain().focus().setTextSelection({ from: selection.from, to: selection.to }).extendMarkRange('link').unsetLink().run()
yakoff94's avatar
yakoff94 committed
462
463
464
                    return
                }

Яков's avatar
Яков committed
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
                const normalizedUrl = normalizeLinkHref(url)

                if (!validateLinkHref(normalizedUrl)) {
                    window.alert('Некорректный URL')
                    return
                }

                if (selection.empty) {
                    editor.chain().focus().setTextSelection(selection.from).insertContent({
                        type: 'text',
                        text: url,
                        marks: [
                            {
                                type: 'link',
                                attrs: {
                                    href: normalizedUrl,
                                    target: '_blank'
                                }
                            }
                        ]
                    }).run()
                    return
                }

                editor.chain().focus().setTextSelection({ from: selection.from, to: selection.to }).extendMarkRange('link').setLink({href: normalizedUrl, target: '_blank'}).run()
yakoff94's avatar
yakoff94 committed
490
            }
firesong1337's avatar
firesong1337 committed
491
        },
Яков's avatar
Яков committed
492
493
494
495
        buttonLink: {
            title: 'Кнопка-ссылка',
            onClick: () => modalOpener('buttonLink', 'Добавить кнопку')
        },
yakoff94's avatar
yakoff94 committed
496
497
498
        file: {
            title: 'Прикрепить файл',
            onClick: () => modalOpener('file', 'Прикрепить файл')
firesong1337's avatar
firesong1337 committed
499
        },
yakoff94's avatar
yakoff94 committed
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
        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')
        },
Яков's avatar
Яков committed
520
521
522
523
        pdf: {
            title: 'Вставить pdf -> text',
            onClick: () => modalOpener('pdf', 'Вставить pdf -> text')
        },
firesong1337's avatar
firesong1337 committed
524
525
526
527
        export_pdf: {
            title: 'Экспорт в pdf',
            onClick: () => ExportPdf()
        },
yakoff94's avatar
yakoff94 committed
528
529
530
531
532
533
534
535
        audio: {
            title: 'Вставить аудио файл',
            onClick: () => modalOpener('audio', 'Вставить аудио файл')
        },
        image: {
            title: 'Загрузить изображение',
            onClick: () => modalOpener('image', 'Загрузить изображение')
        },
Яков's avatar
Яков committed
536
537
538
539
        emoji: {
            title: 'Эмодзи',
            render: ({ key }) => <EmojiPicker key={key} editor={editor} />
        },
540
541
542
        // pdfToText удалён: его onClick вызывал modalOpener('pdf', …) — тот же модал
        // с тем же аргументом, что и кнопка pdf, то есть буквальный дубль.
        // В пресетах он не значился, автору не показывался никогда.
543
        activityRef: {
Яков's avatar
update    
Яков committed
544
            title: 'Задание в модуле',
545
546
547
548
549
550
551
552
553
554
555
556
            onClick: async () => {
                if (!onPickActivity) {
                    message.info('Выбор задания недоступен в этом окне редактора')
                    return
                }
                const picked = await onPickActivity()
                if (!picked || !picked.activityId) {
                    return
                }
                editor.chain().focus().insertActivityRef(picked).run()
            }
        },
Яков's avatar
update    
Яков committed
557
558
559
560
561
562
        interactiveImage: {
            title: 'Интерактивное изображение',
            onClick: () => {
                modalOpener('interactiveImage', 'Интерактивное изображение')
            },
        },
Яков's avatar
update    
Яков committed
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
        callout: {
            title: 'Врезка',
            // toggleWrap, а не wrapIn: повторное нажатие снимает врезку.
            // Иначе единственный способ передумать — удалить абзац и набрать
            // заново, и авторы именно так и делали с цитатой.
            onClick: () => editor.chain().focus().toggleCallout('info').run()
        },
        showAnswer: {
            title: 'Скрытый разбор',
            onClick: () => editor.chain().focus().setShowAnswer('Показать ответ').run()
        },
        selfCheck: {
            title: 'Самопроверка',
            onClick: () => editor.chain().focus().insertSelfCheck().run()
        },
yakoff94's avatar
yakoff94 committed
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
        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: 'Код',
Яков's avatar
Яков committed
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
            onClick: () => {
                const { empty, from, to } = editor.state.selection
                if (!empty) {
                    // Есть выделение — применяем только к нему
                    editor.chain().focus().toggleCode().run()
                } else {
                    // Нет выделения — выделяем весь текущий блок
                    const { $anchor } = editor.state.selection
                    const blockStart = $anchor.start()
                    const blockEnd = $anchor.end()
                    editor
                        .chain()
                        .focus()
                        .setTextSelection({ from: blockStart, to: blockEnd })
                        .toggleCode()
                        .setTextSelection(from) // возвращаем курсор на место
                        .run()
                }
            }
yakoff94's avatar
yakoff94 committed
639
640
641
642
643
644
645
646
647
648
        },
        clearMarks: {
            title: 'Очистить форматирование',
            onClick: () => editor.chain().focus().unsetAllMarks().run()
        },
        bulletList: {
            title: 'Маркированный список',
            onClick: () => editor.chain().focus().toggleBulletList().run()
        },
        orderedList: {
Яков's avatar
Яков committed
649
            title: 'Нумерованный список',
yakoff94's avatar
yakoff94 committed
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
            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
675
676
                editor.commands.setTextAlign('left');

yakoff94's avatar
yakoff94 committed
677
                //так надо, даже не вникай, фикс бага в хроме при выравнивании картинки
yakoff94's avatar
yakoff94 committed
678
                setTimeout(()=>{
yakoff94's avatar
yakoff94 committed
679
680
                    // editor.commands.setTextAlign('left');
                    // editor.chain().focus().run()
yakoff94's avatar
yakoff94 committed
681
                },150)
yakoff94's avatar
yakoff94 committed
682
683
684
685
686
687
            }
        },
        alignCenter: {
            title: 'По центру',
            onClick: () => {
                editor.commands.setTextAlign('center');
yakoff94's avatar
yakoff94 committed
688
                // editor.chain().focus().run();
yakoff94's avatar
yakoff94 committed
689
                //так надо, даже не вникай, фикс бага в хроме при выравнивании картинки
yakoff94's avatar
yakoff94 committed
690
                setTimeout(()=>{
yakoff94's avatar
yakoff94 committed
691
692
                    // editor.commands.setTextAlign('center');
                    // editor.chain().focus().run()
yakoff94's avatar
yakoff94 committed
693
                },150)
yakoff94's avatar
yakoff94 committed
694
695
696
697
698
            }
        },
        alignRight: {
            title: 'По правому краю',
            onClick: () => {
yakoff94's avatar
yakoff94 committed
699
700
                editor.commands.setTextAlign('right');

yakoff94's avatar
yakoff94 committed
701
                //так надо, даже не вникай, фикс бага в хроме при выравнивании картинки
yakoff94's avatar
yakoff94 committed
702
                setTimeout(()=>{
yakoff94's avatar
yakoff94 committed
703
704
                    // editor.commands.setTextAlign('right');
                    // editor.chain().focus().run()
yakoff94's avatar
yakoff94 committed
705
                },150)
yakoff94's avatar
yakoff94 committed
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
            }
        },
        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()
            }
        },
Яков's avatar
Яков committed
756
757
758
759
760
761
762
        fontSize: {
            title: 'Размер текста',
            onClick: () => {
                setColorsSelected('fontSize')
                editor.chain().focus()
            }
        },
yakoff94's avatar
yakoff94 committed
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
        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', 'Записать экран')
            }
Яков's avatar
update    
Яков committed
794
795
        },
        insertToggleBlock: {
Яков's avatar
update    
Яков committed
796
            title: 'Раскрывающийся список',
Яков's avatar
Яков committed
797
798
799
800
801
802
803
804
805
806
807
808
809
810
            onClick: () => {
                const { state, view } = editor
                const { $from } = state.selection

                const schema = state.schema
                const toggleNode = schema.nodes.toggleBlock.create(
                    { title: 'Заголовок', open: true },
                    schema.nodes.paragraph.create(
                        null,
                        schema.text('Введите подробности...')
                    )
                )
                const paraNode = schema.nodes.paragraph.create()

Яков's avatar
Яков committed
811
812
813
814
815
816
817
818
819
820
821
822
                const depth = Math.min($from.depth, 1)
                const currentNode = $from.node(depth)

                // Если текущий блок — пустой параграф, заменяем его
                if (currentNode.type.name === 'paragraph' && currentNode.childCount === 0) {
                    const from = $from.before(depth)
                    const to = $from.after(depth)
                    view.dispatch(state.tr.replaceWith(from, to, [toggleNode, paraNode]))
                } else {
                    const insertPos = $from.after(depth)
                    view.dispatch(state.tr.insert(insertPos, [toggleNode, paraNode]))
                }
Яков's avatar
Яков committed
823
            },
Яков's avatar
update    
Яков committed
824
825
826
827
828
829
830
831
832
833
834
        },

        toggleTableBorders: {
            title: 'Показать/скрыть границы таблицы',
            onClick: () => {
                const current = editor.getAttributes('table')?.bordered;
                const newValue = !current;

                editor.commands.updateAttributes('table', { bordered: newValue });
            }
        },
yakoff94's avatar
yakoff94 committed
835
836
837
838
839
840
841
842
843
        // 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
844
    }
Яков's avatar
Яков committed
845

yakoff94's avatar
yakoff94 committed
846
847
848
    const editor = useEditor({
        extensions: [
            StarterKit,
Яков's avatar
try fix    
Яков committed
849
850
851
852
853
854
855
            Underline,
            ImageResize,
            Link.configure({
                autolink: true,
                linkOnPaste: true,
                defaultProtocol: 'https',
                protocols: ['http', 'https'],
Яков's avatar
Яков committed
856
                validate: validateLinkHref,
Яков's avatar
try fix    
Яков committed
857
858
859
            }),
            Video,
            Iframe,
Яков's avatar
update    
Яков committed
860
            TableExtension,
Яков's avatar
try fix    
Яков committed
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
            TableRow,
            TableHeader,
            TableCell.extend({
                renderHTML({ HTMLAttributes }) {
                    const attrs = mergeAttributes(this.options.HTMLAttributes, HTMLAttributes);

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

                    return ['td', attrs, 0];
                }
            }),
            BubbleMenu,
            TextAlign.configure({
                defaultAlignment: 'left',
                types: ['heading', 'paragraph'],
                alignments: ['left', 'center', 'right', 'justify']
            }),
            TextStyle,
Яков's avatar
Яков committed
881
            FontSize,
Яков's avatar
update    
Яков committed
882
            BlockId,
883
            ActivityRef.configure({ onOpenActivity, labels: activityLabels }),
Яков's avatar
update    
Яков committed
884
885
886
887
            Callout,
            ShowAnswer,
            SelfCheck,
            Glossary.configure({ onPickTerm }),
Яков's avatar
Яков committed
888
            ButtonLinkExtension,
Яков's avatar
try fix    
Яков committed
889
890
891
892
893
894
            Color.configure({
                types: ['textStyle']
            }),
            Highlight.configure({
                multicolor: true
            }),
Яков's avatar
Яков committed
895
896
897
898
            // CustomLink.configure({
            //     linkOnPaste: false,
            //     openOnClick: false
            // }),
Яков's avatar
try fix    
Яков committed
899
900
901
902
            Focus.configure({
                className: 'atma-editor-focused',
                mode: 'all'
            }),
Яков's avatar
try fix    
Яков committed
903
904
905
            Audio,
            Superscript,
            Subscript,
Яков's avatar
update    
Яков committed
906
            ToggleBlock,
907
908
909
910
911
            InteractiveImage.configure({
                onLoadImage: onLoadInteractiveImage,
                onSaveImage: onSaveInteractiveImage,
                onCreateImage: onCreateInteractiveImage,
            }),
Яков's avatar
Яков committed
912
            WordNavigation,
Яков's avatar
update    
Яков committed
913
914
915
            // Enter = перенос строки, двойной Enter = абзац.
            // Строго ДО ImageWrapEnter: клавишу первым получает тот, кто ниже в списке
            EnterAsBreak,
Яков's avatar
Яков committed
916
            ImageWrapEnter,
Яков's avatar
update    
Яков committed
917
918
            // Пустой абзац в конце: иначе после последней картинки писать негде
            TrailingNode,
Яков's avatar
Яков committed
919
            DragAndDrop.configure({
Яков's avatar
Яков committed
920
921
922
923
924
925
926
927
928
929
930
                uploadUrl: uploadOptions.url,
                allowedFileTypes: [
                    'image/jpeg',
                    'image/png',
                    'video/mp4'
                ],
                onUploadSuccess: (fileUrl) => {
                    console.log('File uploaded:', fileUrl);
                },
                onUploadError: (error) => {
                    console.error('Upload error:', error);
Яков's avatar
fix    
Яков committed
931
932
933
                },
                minDragDistance: 10, // Можно настроить под свои нужды
                dragPreviewOpacity: 0.3 // Настройка прозрачности
Яков's avatar
Яков committed
934
            })
yakoff94's avatar
yakoff94 committed
935
936
        ],
        content: value,
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
        onUpdate: ({editor}) => {
            onChange(editor.getHTML())

            // Документ уже существует внутри редактора — он и есть источник
            // правды для нового формата. Отдаём его, если хост попросил.
            if (onChangeDoc) {
                onChangeDoc(editor.getJSON())
            }
        },
        onCreate: ({editor}) => {
            // Без этого документ появляется только после первой правки:
            // автор открыл урок, ничего не тронул, сохранил — и body_doc пуст.
            if (onChangeDoc) {
                onChangeDoc(editor.getJSON())
            }
        },
yakoff94's avatar
yakoff94 committed
953
954
        onFocus: ({editor}) => {
            const wrap = editor.options.element.closest('.atma-editor-wrap')
Рамис's avatar
Рамис committed
955

yakoff94's avatar
yakoff94 committed
956
957
958
959
960
            wrap.querySelectorAll('.atma-editor-toolbar-s').forEach(function (s) {
                s.classList.remove('show')
            })
        }
    })
Рамис's avatar
Рамис committed
961

Яков's avatar
update    
Яков committed
962

Яков's avatar
update    
Яков committed
963
964
965
966
967
968
969
970
971
972
973
    // Открытие окна само по себе не трогает документ, а `shouldShow`
    // у меню над выделением пересчитывается только на изменениях редактора.
    // Без этого толчка меню осталось бы висеть до следующего нажатия клавиши.
    // Пустая транзакция ничего не меняет в тексте — она лишь заставляет
    // пересчитать видимость.
    useEffect(() => {
        if (editor && !editor.isDestroyed) {
            editor.view.dispatch(editor.state.tr)
        }
    }, [modalGlossaryIsOpen, modalIsOpen])

yakoff94's avatar
yakoff94 committed
974
975
976
977
    const buildActionsModal = (buttons = []) => {
        if (buttons.length === 0) {
            return null
        }
Рамис's avatar
Рамис committed
978

yakoff94's avatar
yakoff94 committed
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
        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
994
    }
995

Яков's avatar
Яков committed
996
    const getUploader = ({accept = '*', processingMessage = null, ...o}, custom_url = '') => {
yakoff94's avatar
yakoff94 committed
997
998
999
1000
1001
1002
1003
        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
1004
            }
yakoff94's avatar
yakoff94 committed
1005
        }
Sergey's avatar
Sergey committed
1006

yakoff94's avatar
yakoff94 committed
1007
1008
1009
        if (typeof o.multiple !== 'undefined') {
            multiple = o.multiple
        }
Яков's avatar
update    
Яков committed
1010
        // console.log(o);
Sergey's avatar
Sergey committed
1011

yakoff94's avatar
yakoff94 committed
1012
1013
1014
1015
        return (
            <Uploader
                key={uploaderUid}
                accept={accept}
Яков's avatar
Яков committed
1016
                action={custom_url.length > 0 ? custom_url : url}
yakoff94's avatar
yakoff94 committed
1017
                errorMessage={uploadOptions.errorMessage}
Яков's avatar
Яков committed
1018
                processingMessage={processingMessage}
Яков's avatar
Яков committed
1019
1020
1021
1022
1023
1024
1025
1026
                onSuccess={(file, html) => {
                    if (typeof file !== "undefined") {
                        const _uploadedPaths = [...uploadedPaths]
                        _uploadedPaths.push(file)
                        setUploadedPaths(_uploadedPaths)
                    } else {
                        setEmbedContent(html);
                    }
yakoff94's avatar
yakoff94 committed
1027
1028
1029
1030
                }}
                onDelete={(deleteFile) => {
                    let deleteIdx = null
                    const _uploadedPaths = [...uploadedPaths]
DenSakh's avatar
DenSakh committed
1031

yakoff94's avatar
yakoff94 committed
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
                    _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
1045

yakoff94's avatar
yakoff94 committed
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
    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
1069
1070
    }

Яков's avatar
Яков committed
1071
1072
1073
1074
    const getSuggestionsSection = () => {
        if (!uploadOptions.suggestUrl || !SUGGEST_TYPES.includes(innerModalType)) {
            return null
        }
Яков's avatar
Яков committed
1075
        if (suggestedLoading && suggestedFiles.length === 0) {
Яков's avatar
Яков committed
1076
1077
            return <div className='atma-editor-suggest-loading'>Загрузка файлов...</div>
        }
Яков's avatar
Яков committed
1078
        if (!suggestedLoading && suggestedFiles.length === 0) {
Яков's avatar
Яков committed
1079
1080
1081
1082
            return null
        }
        const isVideo = innerModalType === 'video'
        const isAudio = innerModalType === 'audio'
Яков's avatar
Яков committed
1083
        const isFileType = innerModalType === 'file' || innerModalType === 'iframe_pdf' || innerModalType === 'iframe_pptx'
Яков's avatar
Яков committed
1084
        const totalPages = Math.ceil(suggestTotal / SUGGEST_LIMIT)
Яков's avatar
Яков committed
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099

        const toggleSelect = (file, uid) => {
            const isSelected = uploadedPaths.some(p => p.uid === uid)
            if (isSelected) {
                setUploadedPaths(uploadedPaths.filter(p => p.uid !== uid))
            } else {
                setUploadedPaths([...uploadedPaths, {
                    path: file.path,
                    uid,
                    name: file.name,
                    size: file.size
                }])
            }
        }

Яков's avatar
Яков committed
1100
1101
1102
        return (
            <div className='atma-editor-suggest'>
                <div className='atma-editor-suggest-title'>Ранее загруженные файлы</div>
Яков's avatar
Яков committed
1103
                <div className={'atma-editor-suggest-list' + (isVideo ? ' is-video' : '')}>
Яков's avatar
Яков committed
1104
1105
1106
                    {suggestedFiles.map((file, i) => {
                        const uid = 'suggest_' + file.path
                        const isSelected = uploadedPaths.some(p => p.uid === uid)
Яков's avatar
Яков committed
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129

                        if (isVideo) {
                            return (
                                <div
                                    key={'suggest' + i}
                                    className={'atma-editor-suggest-item is-video' + (isSelected ? ' selected' : '')}
                                >
                                    <video
                                        src={file.path}
                                        controls
                                        className='atma-editor-suggest-video'
                                        title={file.name}
                                    />
                                    <button
                                        type='button'
                                        className='atma-editor-suggest-select-btn'
                                        title={isSelected ? 'Снять выбор' : 'Выбрать'}
                                        onClick={() => toggleSelect(file, uid)}
                                    />
                                </div>
                            )
                        }

Яков's avatar
Яков committed
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
                        if (isAudio) {
                            const isPlaying = playingAudio === uid
                            return (
                                <div
                                    key={'suggest' + i}
                                    className={'atma-editor-suggest-item is-audio' + (isSelected ? ' selected' : '')}
                                >
                                    <audio
                                        ref={el => { audioRefs.current[uid] = el }}
                                        src={file.path}
                                        onEnded={() => setPlayingAudio(null)}
                                        onPause={() => {
                                            if (playingAudio === uid) setPlayingAudio(null)
                                        }}
                                    />
                                    <button
                                        type='button'
                                        className={'atma-editor-suggest-audio-btn' + (isPlaying ? ' playing' : '')}
                                        title={isPlaying ? 'Пауза' : 'Воспроизвести'}
                                        onClick={(e) => {
                                            e.stopPropagation()
                                            const el = audioRefs.current[uid]
Яков's avatar
Яков committed
1152
                                            if (!el || !el.src) return
Яков's avatar
Яков committed
1153
1154
1155
1156
                                            if (isPlaying) {
                                                el.pause()
                                            } else {
                                                Object.entries(audioRefs.current).forEach(([key, ref]) => {
Яков's avatar
Яков committed
1157
                                                    if (key !== uid && ref && !ref.paused) ref.pause()
Яков's avatar
Яков committed
1158
1159
                                                })
                                                setPlayingAudio(uid)
Яков's avatar
Яков committed
1160
1161
1162
1163
1164
1165
1166
                                                const p = el.play()
                                                if (p !== undefined) {
                                                    p.catch(err => {
                                                        if (err.name !== 'AbortError') console.warn(err)
                                                        setPlayingAudio(null)
                                                    })
                                                }
Яков's avatar
Яков committed
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
                                            }
                                        }}
                                    />
                                    <span
                                        className='atma-editor-suggest-item-name'
                                        onClick={() => toggleSelect(file, uid)}
                                    >{file.name}</span>
                                    <button
                                        type='button'
                                        className={'atma-editor-suggest-select-btn' + (isSelected ? ' selected-mark' : '')}
                                        title={isSelected ? 'Снять выбор' : 'Выбрать'}
                                        onClick={() => toggleSelect(file, uid)}
                                    />
                                </div>
                            )
                        }

                        const thumbnail = !isFileType ? file.path : null
Яков's avatar
Яков committed
1185
1186
1187
1188
1189
1190
                        return (
                            <div
                                key={'suggest' + i}
                                className={
                                    'atma-editor-suggest-item' +
                                    (isSelected ? ' selected' : '') +
Яков's avatar
Яков committed
1191
                                    (isFileType ? ' is-file' : '')
Яков's avatar
Яков committed
1192
1193
1194
                                }
                                style={thumbnail ? { backgroundImage: `url(${thumbnail})` } : {}}
                                title={file.name}
Яков's avatar
Яков committed
1195
                                onClick={() => toggleSelect(file, uid)}
Яков's avatar
Яков committed
1196
1197
1198
1199
1200
1201
                            >
                                <span className='atma-editor-suggest-item-name'>{file.name}</span>
                            </div>
                        )
                    })}
                </div>
Яков's avatar
Яков committed
1202
1203
1204
1205
1206
                {totalPages > 1 && (
                    <div className='atma-editor-suggest-pagination'>
                        <button
                            type='button'
                            className='atma-editor-suggest-page-btn'
Яков's avatar
Яков committed
1207
                            disabled={suggestPage <= 1 || suggestedLoading}
Яков's avatar
Яков committed
1208
1209
1210
                            onClick={() => setSuggestPage(p => p - 1)}
                        >&#8592;</button>
                        <span className='atma-editor-suggest-page-info'>
Яков's avatar
Яков committed
1211
                            {suggestedLoading ? '...' : `${suggestPage} / ${totalPages}`}
Яков's avatar
Яков committed
1212
1213
1214
1215
                        </span>
                        <button
                            type='button'
                            className='atma-editor-suggest-page-btn'
Яков's avatar
Яков committed
1216
                            disabled={suggestPage >= totalPages || suggestedLoading}
Яков's avatar
Яков committed
1217
1218
1219
1220
                            onClick={() => setSuggestPage(p => p + 1)}
                        >&#8594;</button>
                    </div>
                )}
Яков's avatar
Яков committed
1221
1222
1223
1224
            </div>
        )
    }

yakoff94's avatar
yakoff94 committed
1225
1226
1227
1228
1229
1230
1231
    const getInnerModal = () => {
        switch (innerModalType) {
            case 'iframe':
                return (
                    <IframeModal
                        embedContent={embedContent}
                        setEmbedContent={setEmbedContent}
DenSakh's avatar
DenSakh committed
1232
                    />
yakoff94's avatar
yakoff94 committed
1233
1234
1235
1236
1237
1238
                )
            case 'iframe_custom':
                return (
                    <IframeCustomModal
                        embedContent={embedContent}
                        setEmbedContent={setEmbedContent}
DenSakh's avatar
DenSakh committed
1239
                    />
yakoff94's avatar
yakoff94 committed
1240
1241
1242
1243
                )
            case 'iframe_pptx':
                return (
                    <Fragment>
Яков's avatar
Яков committed
1244
                        {getSuggestionsSection()}
yakoff94's avatar
yakoff94 committed
1245
1246
1247
1248
1249
1250
1251
1252
1253
                        {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 (
Яков's avatar
Яков committed
1254
1255
                    <Fragment>
                        {getUploader({accept: '.wav, .mp3, .ogg'})}
Яков's avatar
Яков committed
1256
                        {getSuggestionsSection()}
Яков's avatar
Яков committed
1257
                    </Fragment>
yakoff94's avatar
yakoff94 committed
1258
1259
1260
1261
                )
            case 'iframe_pdf':
                return (
                    <Fragment>
Яков's avatar
Яков committed
1262
                        {getSuggestionsSection()}
yakoff94's avatar
yakoff94 committed
1263
1264
1265
1266
1267
1268
                        {getUploader({
                            accept: 'application/pdf',
                            afterParams: ['no_convert=1']
                        })}
                    </Fragment>
                )
Яков's avatar
Яков committed
1269
1270
1271
1272
1273
            case 'pdf':
                return (
                    <Fragment>
                        {getUploader({
                            accept: 'application/pdf',
Яков's avatar
Яков committed
1274
1275
                            afterParams: ['no_convert=1'],
                            processingMessage: 'Распознаём текст PDF, подождите...'
Яков's avatar
Яков committed
1276
1277
1278
                        }, '/ru/pdf-to-text/')}
                    </Fragment>
                )
yakoff94's avatar
yakoff94 committed
1279
            case 'video':
Яков's avatar
Яков committed
1280
1281
1282
                return (
                    <Fragment>
                        {getUploader({accept: 'video/mp4,.mp4'})}
Яков's avatar
Яков committed
1283
                        {getSuggestionsSection()}
Яков's avatar
Яков committed
1284
1285
                    </Fragment>
                )
yakoff94's avatar
yakoff94 committed
1286
            case 'image':
Яков's avatar
Яков committed
1287
1288
1289
                return (
                    <Fragment>
                        {getUploader({accept: 'image/*'})}
Яков's avatar
Яков committed
1290
                        {getSuggestionsSection()}
Яков's avatar
Яков committed
1291
1292
                    </Fragment>
                )
Яков's avatar
update    
Яков committed
1293
            case 'interactiveImage':
Яков's avatar
Яков committed
1294
1295
1296
                return (
                    <Fragment>
                        {getUploader({accept: 'image/*', multiple: false})}
Яков's avatar
Яков committed
1297
                        {getSuggestionsSection()}
Яков's avatar
Яков committed
1298
1299
                    </Fragment>
                )
yakoff94's avatar
yakoff94 committed
1300
1301
1302
1303
            case 'file':
                return (
                    <Fragment>
                        {getUploader({accept: '*', afterParams: ['no_convert=1']})}
Яков's avatar
Яков committed
1304
                        {getSuggestionsSection()}
yakoff94's avatar
yakoff94 committed
1305
1306
                    </Fragment>
                )
Яков's avatar
Яков committed
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
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
            case 'buttonLink':
                return (
                    <div className='atma-editor-button-link-form'>
                        <label className='atma-editor-field'>
                            <span>Текст кнопки</span>
                            <Input
                                value={buttonLinkData.text}
                                placeholder='Перейти'
                                onChange={(event) => {
                                    setButtonLinkData({
                                        ...buttonLinkData,
                                        text: event.target.value
                                    })
                                }}
                            />
                        </label>
                        <label className='atma-editor-field'>
                            <span>Ссылка</span>
                            <Input
                                value={buttonLinkData.href}
                                placeholder='https://example.com'
                                onChange={(event) => {
                                    setButtonLinkData({
                                        ...buttonLinkData,
                                        href: event.target.value
                                    })
                                }}
                            />
                        </label>
                        <div className='atma-editor-button-link-grid'>
                            <label className='atma-editor-field atma-editor-field-select'>
                                <span>Размер шрифта</span>
                                <AntdSelect
                                    value={buttonLinkData.fontSize}
                                    options={fontSizes.map((fontSize) => ({
                                        value: fontSize,
                                        label: fontSize
                                    }))}
                                    getPopupContainer={(triggerNode) => triggerNode.parentNode}
                                    dropdownStyle={{ zIndex: 100003 }}
                                    onChange={(value) => {
                                        setButtonLinkData({
                                            ...buttonLinkData,
                                            fontSize: value
                                        })
                                    }}
                                />
                            </label>
                            <label className='atma-editor-field atma-editor-field-color'>
                                <span>Цвет текста</span>
                                <input
                                    type='color'
                                    value={buttonLinkData.textColor}
                                    className='atma-editor-color-input'
                                    onChange={(event) => {
                                        setButtonLinkData({
                                            ...buttonLinkData,
                                            textColor: event.target.value
                                        })
                                    }}
                                />
                            </label>
                            <label className='atma-editor-field atma-editor-field-color'>
                                <span>Цвет кнопки</span>
                                <input
                                    type='color'
                                    value={buttonLinkData.backgroundColor}
                                    className='atma-editor-color-input'
                                    onChange={(event) => {
                                        setButtonLinkData({
                                            ...buttonLinkData,
                                            backgroundColor: event.target.value
                                        })
                                    }}
                                />
                            </label>
                        </div>
                        <div className='atma-editor-button-link-preview-wrap'>
                            <span>Предпросмотр</span>
                            <a
                                href='/'
                                onClick={(event) => event.preventDefault()}
                                className='atma-editor-button-link-preview'
                                style={{
                                    color: buttonLinkData.textColor,
                                    backgroundColor: buttonLinkData.backgroundColor,
                                    fontSize: buttonLinkData.fontSize || '16px'
                                }}
                            >
                                {buttonLinkData.text || 'Кнопка'}
                            </a>
                        </div>
                    </div>
                )
yakoff94's avatar
yakoff94 committed
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
            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
1437
1438
                          {formatted}
                        </span>
yakoff94's avatar
yakoff94 committed
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
                                            )
                                        }}
                                    />
                                ) : (
                                    <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
1521
1522
                          Перезаписать
                        </span>
yakoff94's avatar
yakoff94 committed
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
                                            </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
1613
1614
                          Перезаписать
                        </span>
yakoff94's avatar
yakoff94 committed
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
                                            </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
1633
            default:
yakoff94's avatar
yakoff94 committed
1634
                return <div>Пусто</div>
DenSakh's avatar
DenSakh committed
1635
        }
1636
1637
    }

yakoff94's avatar
yakoff94 committed
1638
1639
    const isDisabledAction = () => {
        let isDisabled = false
Nikita's avatar
Nikita committed
1640

yakoff94's avatar
yakoff94 committed
1641
1642
1643
        switch (innerModalType) {
            case 'video':
            case 'image':
Яков's avatar
Яков committed
1644
1645
            case 'iframe_pdf':
            case 'iframe_pptx':
yakoff94's avatar
yakoff94 committed
1646
1647
1648
1649
                if (uploadOptions.url === null || uploadedPaths.length === 0) {
                    isDisabled = true
                }
                break
Яков's avatar
update    
Яков committed
1650
1651
1652
1653
1654
            case 'interactiveImage':
                if (uploadOptions.url === null || uploadedPaths.length === 0) {
                    isDisabled = true
                }
                break
yakoff94's avatar
yakoff94 committed
1655
1656
1657
            case 'screencust':
                if (status === 'recording' || isUploading || ! mediaBlobUrl) {
                    isDisabled = true
DenSakh's avatar
DenSakh committed
1658
                }
yakoff94's avatar
yakoff94 committed
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
                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
1671
                try {
yakoff94's avatar
yakoff94 committed
1672
                    const url = new URL(embedContent)
DenSakh's avatar
DenSakh committed
1673

yakoff94's avatar
yakoff94 committed
1674
                    switch (url.hostname) {
DenSakh's avatar
DenSakh committed
1675
1676
1677
1678
1679
1680
1681
1682
                        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
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
                            break
                        default:
                            isDisabled = true
                    }
                } catch (error) {
                    isDisabled = true
                }
                break
            case 'iframe_custom':
                const regex = new RegExp(
                    '(?:<iframe[^>]*)(?:(?:\\/>)|(?:>.*?<\\/iframe>))'
                )
                isDisabled = ! regex.test(embedContent)
                break
Яков's avatar
Яков committed
1697
1698
1699
            case 'buttonLink':
                isDisabled = !buttonLinkData.text.trim() || !validateLinkHref(buttonLinkData.href)
                break
yakoff94's avatar
yakoff94 committed
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
        }

        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([])
Яков's avatar
Яков committed
1721
                        setButtonLinkData(defaultButtonLinkData)
yakoff94's avatar
yakoff94 committed
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
                        setModalIsOpen(false)
                    }
                },
                {
                    title: 'Удалить',
                    className: ' atma-editor-complete',
                    onClick: () => {
                        stopRecording()
                        unMuteAudio()
                        clearBlobUrl()
                        setUploaderUid(`uid${new Date()}`)
                        setUploadedPaths([])
Яков's avatar
Яков committed
1734
                        setButtonLinkData(defaultButtonLinkData)
yakoff94's avatar
yakoff94 committed
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
                        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
1775
                            }
yakoff94's avatar
yakoff94 committed
1776
1777
1778
                            try {
                                switch (innerModalType) {
                                    case 'image':
Яков's avatar
update    
Яков committed
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
                                        uploadedPaths.map(async (file) => {
                                            const img = new Image()
                                            img.src = file.path

                                            img.onload = () => {
                                                const maxWidth = editor.view.dom.clientWidth - 32 // учёт padding
                                                const realWidth = Math.min(img.naturalWidth, maxWidth)
                                                const realHeight = img.naturalHeight * (realWidth / img.naturalWidth)

                                                editor
                                                .chain()
                                                .focus()
                                                .setImage({
                                                    src: file.path,
                                                    width: Math.round(realWidth),
                                                    height: Math.round(realHeight),
                                                    align: 'center',
                                                    'data-node-id': `img-${Date.now()}-${Math.random().toString(36).slice(2, 10)}`
                                                })
Яков's avatar
Яков committed
1798
1799
                                                .command(({ tr, state }) => {
                                                    // После setImage курсор — NodeSelection на картинке.
Яков's avatar
Яков committed
1800
1801
1802
                                                    // На десктопе: TextSelection сразу после картинки (inline).
                                                    // На мобильном: курсор в следующий параграф — иначе он
                                                    // растягивается на всю высоту картинки.
Яков's avatar
Яков committed
1803
                                                    const { $to } = state.selection
Яков's avatar
Яков committed
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
                                                    if (isMobile) {
                                                        const afterPara = $to.after(Math.min($to.depth, 1))
                                                        const target = afterPara < tr.doc.nodeSize - 1
                                                            ? afterPara + 1
                                                            : afterPara
                                                        try {
                                                            tr.setSelection(TextSelection.create(tr.doc, target))
                                                        } catch {
                                                            tr.setSelection(TextSelection.create(tr.doc, $to.pos))
                                                        }
                                                    } else {
                                                        tr.setSelection(TextSelection.create(tr.doc, $to.pos))
                                                    }
Яков's avatar
Яков committed
1817
1818
                                                    return true
                                                })
Яков's avatar
update    
Яков committed
1819
1820
                                                .run()
                                            }
yakoff94's avatar
yakoff94 committed
1821
                                        })
Яков's avatar
update    
Яков committed
1822
1823
1824
                                        // uploadedPaths.map((file, i) => {
                                        //     editor.chain().focus().setImage({src: file.path}).run();
                                        // })
Яков's avatar
update    
Яков committed
1825
1826
1827
1828
1829
1830
                                        break
                                    case 'interactiveImage':
                                        uploadedPaths.map(async (file) => {
                                            const img = new Image()
                                            img.src = file.path

1831
                                            img.onload = async () => {
Яков's avatar
Яков committed
1832
1833
                                                const domWidth = editor.view.dom.clientWidth
                                                const maxWidth = domWidth > 0 ? domWidth - 32 : img.naturalWidth
Яков's avatar
update    
Яков committed
1834
1835
1836
                                                const realWidth = Math.min(img.naturalWidth, maxWidth)
                                                const realHeight = img.naturalHeight * (realWidth / img.naturalWidth)

1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
                                                // Картинка заводится сущностью НА СЕРВЕРЕ, и в урок уходит
                                                // ссылка на неё. Так одну схему можно поставить в несколько
                                                // уроков, а правка точек доедет до всех.
                                                //
                                                // Хост колбэка не дал (встраивание без платформы) — работаем
                                                // по-старому, точки лягут в документ.
                                                let imageId = null
                                                if (onCreateInteractiveImage) {
                                                    try {
                                                        imageId = await onCreateInteractiveImage({
                                                            src: file.path,
                                                            width: Math.round(realWidth),
                                                            height: Math.round(realHeight),
                                                        })
                                                    } catch (e) {
                                                        imageId = null
                                                    }
                                                }

Яков's avatar
update    
Яков committed
1856
1857
1858
1859
1860
1861
1862
1863
1864
                                                editor
                                                .chain()
                                                .focus()
                                                .insertContent({
                                                    type: 'interactiveImage',
                                                    attrs: {
                                                        src: file.path,
                                                        width: Math.round(realWidth),
                                                        height: Math.round(realHeight),
Яков's avatar
update    
Яков committed
1865
                                                        align: 'center',
1866
                                                        imageId: imageId,
Яков's avatar
update    
Яков committed
1867
1868
1869
1870
1871
1872
1873
                                                        points: []
                                                    },
                                                })
                                                .run()
                                            }
                                        })

yakoff94's avatar
yakoff94 committed
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
                                        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(
Яков's avatar
Яков committed
1959
                                                `<iframe src="https://office.atmaguru.online/pptx?readOnly=1&file=${file.path}"  frameBorder="0"></iframe>`
yakoff94's avatar
yakoff94 committed
1960
                                            ).run()
Яков's avatar
Яков committed
1961
1962
1963
                                            // editor.chain().focus().insertContent(
                                            //     `<iframe src="https://view.officeapps.live.com/op/embed.aspx?src=${file.path}"  frameBorder="0"></iframe>`
                                            // ).run()
yakoff94's avatar
yakoff94 committed
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
                                        })
                                        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
1975
1976
1977
                                            // editor.chain().focus().insertContent(
                                            //     `<embed src="${file.path}" width="100%" height="800px" />`
                                            // ).run()
Яков's avatar
Яков committed
1978
1979
1980
                                            // editor.chain().focus().insertContent(
                                            //     `<iframe src="https://docs.google.com/viewer?embedded=true&url=${file.path}" frameBorder="0"></iframe>`
                                            // ).run()
yakoff94's avatar
yakoff94 committed
1981
                                            editor.chain().focus().insertContent(
Яков's avatar
Яков committed
1982
                                                `<iframe src="https://cdn.atmaguru.online/pdfjs/web/viewer.html?file=${file.path}" frameBorder="0"></iframe>`
yakoff94's avatar
yakoff94 committed
1983
1984
1985
                                            ).run()
                                        })
                                        break
Яков's avatar
Яков committed
1986
1987
1988
                                    case 'pdf':
                                        editor.chain().focus().insertContent(embedContent).run()
                                        break
yakoff94's avatar
yakoff94 committed
1989
1990
1991
1992
1993
                                    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
1994
                                                `<a href="${file.path}" target="_blank" download="${file.name}.${exp}" data-size="${file.size}">${file.name}</a>`
yakoff94's avatar
yakoff94 committed
1995
1996
1997
                                            ).run()
                                        })
                                        break
Яков's avatar
Яков committed
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
                                    case 'buttonLink':
                                        {
                                            const buttonLinkAttrs = {
                                                text: buttonLinkData.text.trim(),
                                                href: normalizeLinkHref(buttonLinkData.href),
                                                fontSize: buttonLinkData.fontSize.trim() || '16px',
                                                textColor: buttonLinkData.textColor,
                                                backgroundColor: buttonLinkData.backgroundColor
                                            }

                                            if (editor.state.selection instanceof NodeSelection
                                                && editor.state.selection.node
                                                && editor.state.selection.node.type.name === 'buttonLink'
                                            ) {
                                                editor.chain().focus().updateAttributes('buttonLink', buttonLinkAttrs).run()
                                            } else {
                                                editor.chain().focus().setButtonLink(buttonLinkAttrs).insertContent(' ').run()
                                            }
                                        }
                                        break
yakoff94's avatar
yakoff94 committed
2018
2019
2020
2021
2022
2023
2024
                                }
                                setModalIsOpen(false)
                                clearBlobUrl()
                                setUploaderUid(`uid${new Date()}`)
                                setEmbedContent('')
                                setUploadedPaths([])
                                setModalTitle('')
Яков's avatar
Яков committed
2025
                                setButtonLinkData(defaultButtonLinkData)
yakoff94's avatar
yakoff94 committed
2026
2027
2028
2029
2030
2031
2032
2033
                            } catch (err) {
                                console.log(err)
                                setModalIsOpen(false)
                                clearBlobUrl()
                                setUploaderUid(`uid${new Date()}`)
                                setEmbedContent('')
                                setUploadedPaths([])
                                setModalTitle('')
Яков's avatar
Яков committed
2034
                                setButtonLinkData(defaultButtonLinkData)
yakoff94's avatar
yakoff94 committed
2035
2036
2037
2038
                            }
                        }
                    },
                    disabled: isDisabledAction()
Nikita's avatar
Nikita committed
2039
                }
yakoff94's avatar
yakoff94 committed
2040
            ]
Рамис's avatar
Рамис committed
2041

Яков's avatar
update    
Яков committed
2042

yakoff94's avatar
yakoff94 committed
2043
2044
2045
    return (
        <div className='atma-editor-wrap' style={style}>
            <div className='atma-editor'>
2046
                <ToolBar editor={editor} {...{toolsOptions}} {...{toolsLib}} onInfo={onInfo} labels={labels} />
yakoff94's avatar
yakoff94 committed
2047
2048
2049
2050
                <BubbleMenu
                    typpyOptions={{followCursor: true}}
                    editor={editor}
                    shouldShow={({...o}) => {
Яков's avatar
update    
Яков committed
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
                        // Открыто окно — меню над выделением прячем.
                        //
                        // Выделение при открытии окна никуда не девается,
                        // поэтому меню продолжало висеть ПОВЕРХ модалки:
                        // нажимаешь «Добавить в глоссарий», окно открылось,
                        // а панелька так и стоит сверху. Своего z-index у неё
                        // нет — она в портале tippy, который заведомо выше
                        // модалки, так что чинить надо условием показа,
                        // а не слоями.
                        if (modalGlossaryIsOpen || modalIsOpen) {
                            return false
                        }

Яков's avatar
Яков committed
2064
2065
2066
2067
2068
2069
2070
2071
                        if (o.state.selection instanceof NodeSelection) {
                            const selectedNode = o.state.selection.node

                            if (selectedNode && selectedNode.type && selectedNode.type.name === 'buttonLink') {
                                return false
                            }
                        }

yakoff94's avatar
yakoff94 committed
2072
2073
2074
2075
2076
2077
2078
2079
2080
                        let items = []
                        if (
                            o.from !== o.to &&
                            editor.isActive('paragraph') &&
                            editor.isActive('image') === false &&
                            document.querySelectorAll('.selectedCell').length === 0
                        ) {
                            items = initialBubbleItems
                        }
Рамис's avatar
Рамис committed
2081

yakoff94's avatar
yakoff94 committed
2082
                        if (editor.isActive('image') === true) {
yakoff94's avatar
yakoff94 committed
2083
2084
                            items = []
                            // items = ['alignLeft', 'alignCenter', 'alignRight']
Рамис's avatar
Рамис committed
2085
                        }
yakoff94's avatar
yakoff94 committed
2086
2087
2088
2089
2090
                        setFocusFromTo([o.from, o.to].join(':'))

                        if (items.length > 0) {
                            setBubbleItems(items)
                            return true
DenSakh's avatar
DenSakh committed
2091
                        }
yakoff94's avatar
yakoff94 committed
2092
2093
2094
2095
2096
2097
2098
2099
                    }}
                    tippyOptions={{duration: 100}}
                >
                    <div
                        className='atma-editor-bubble'
                        onClick={(e) => e.stopPropagation()}
                    >
                        {colorsSelected !== null
Яков's avatar
Яков committed
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
                            ? (colorsSelected === 'fontSize'
                                ? fontSizes.map((fontSize, i) => {
                                    const currentFontSize = editor.getAttributes('textStyle').fontSize || 'default'

                                    return (
                                        <button
                                            key={'fontSize' + i}
                                            type='button'
                                            className={'qfont-size-option' + (currentFontSize === fontSize ? ' active' : '')}
                                            onClick={() => {
                                                if (fontSize === 'default') {
                                                    editor.chain().focus().unsetFontSize().run()
                                                } else {
                                                    editor.chain().focus().setFontSize(fontSize).run()
                                                }

                                                setColorsSelected(null)
                                            }}
                                        >
                                            {fontSize === 'default' ? 'A' : fontSize.replace('px', '')}
                                        </button>
                                    )
                                })
                                : colors[colorsSelected].map((itemColor, i) => {
yakoff94's avatar
yakoff94 committed
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
                                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)
                                        }}
                                    />
                                )
Яков's avatar
Яков committed
2145
                                }))
yakoff94's avatar
yakoff94 committed
2146
2147
2148
2149
2150
                            : bubbleItems.map((type, i) => {
                                if (type === '|') {
                                    return (
                                        <div key={'bubbleSeparator' + i} className='qseparator'/>
                                    )
Яков's avatar
update    
Яков committed
2151
2152
2153
                                } else if (type === 'glossary') {
                                    if (window.location.pathname.includes('admin/maps')) {
                                        return (
Яков's avatar
update    
Яков committed
2154
2155
2156
                                          <Tip key={'bubbleItems-glossary'}
                                               placement={'top'}
                                               info={toolInfo('glossary', null, labels)}>
Яков's avatar
update    
Яков committed
2157
                                            <div
2158
                                                className={'qicon'}
Яков's avatar
update    
Яков committed
2159
2160
2161
                                                role={'button'}
                                                tabIndex={0}
                                                aria-label={toolInfo('glossary', null, labels).title}
Яков's avatar
update    
Яков committed
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
                                                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);
                                                            setTimeout(()=>{formRef.current.resetFields();},1)
                                                        }, 100)
                                                    }
                                                    // console.log(editor.chain().focus());
                                                }}
2177
2178
2179
                                            >
                                                <Icon type='glossary' />
                                            </div>
Яков's avatar
update    
Яков committed
2180
                                          </Tip>
Яков's avatar
update    
Яков committed
2181
2182
                                        )
                                    }
yakoff94's avatar
yakoff94 committed
2183
                                } else {
Яков's avatar
update    
Яков committed
2184
2185
2186
2187
2188
                                    // Подсказка та же, что на панели: одна таблица
                                    // подписей и одна обёртка. Раньше здесь стоял
                                    // нативный `title` браузера — серый и с задержкой.
                                    const info = toolInfo(type, toolsLib[type], labels);

yakoff94's avatar
yakoff94 committed
2189
                                    return (
Яков's avatar
update    
Яков committed
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
                                        <Tip key={'bubbleItems' + i} placement={'top'} info={info}>
                                            <div
                                                className={'qicon' + (editor.isActive(type) ? ' active' : '')}
                                                role={'button'}
                                                tabIndex={0}
                                                aria-label={info.title}
                                                onClick={toolsLib[type].onClick}
                                            >
                                                <Icon type={type} />
                                            </div>
                                        </Tip>
yakoff94's avatar
yakoff94 committed
2201
2202
2203
                                    )
                                }
                            })}
Яков's avatar
Яков committed
2204

yakoff94's avatar
yakoff94 committed
2205
2206
                    </div>
                </BubbleMenu>
Яков's avatar
update    
Яков committed
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
                {/*
                    atma-content — оформление контента из платформы (AtmaGuru/src/React/sass/_content.scss).
                    Благодаря ему автор в редакторе видит ровно то же, что учащийся в уроке:
                    один файл стилей на обе стороны. Пакет своей типографики больше не имеет.

                    contentClass — режим оформления от хоста: 'atma-content--lesson' для урока,
                    'atma-content--compact' для комментария. Пусто — базовый режим.
                */}
                <EditorContent
                    editor={editor}
                    className={('atma-editor-content atma-content ' + contentClass).trim()}
                />
yakoff94's avatar
yakoff94 committed
2219
2220
2221
2222
2223
            </div>
            <EditorModal isOpen={modalIsOpen} title={modalTitle}>
                {getInnerModal()}
                {buildActionsModal(buttons)}
            </EditorModal>
Яков's avatar
update    
Яков committed
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
            {/*
                Ширина 560, а не 1100. Было «во весь экран» под два поля:
                термин и короткое описание. Широкая форма читается хуже —
                глаз идёт через пустое поле от подписи к вводу, — и заодно
                накрывала собой текст модуля, из-за чего было непонятно,
                к какому слову относится окно.

                Кнопки — та же разметка и те же классы, что у остальных окон
                редактора (buildActionsModal). Раньше здесь стояли кнопки antd:
                другая форма, другой отступ и «Отменить» вместо «Отмена».
                Два окна одного редактора не должны выглядеть из разных мест.
            */}
Яков's avatar
Яков committed
2236
            <Modal
Яков's avatar
update    
Яков committed
2237
                width={560}
Яков's avatar
Яков committed
2238
2239
2240
2241
2242
                open={modalGlossaryIsOpen}
                title={'Добавить слово'}
                onCancel={()=>{
                    setModalGlossaryIsOpen(false);
                }}
Яков's avatar
update    
Яков committed
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
                footer={
                    <div className='atma-editor-modal-action'>
                        <button type='button'
                                className='atma-editor-btn atma-editor-cancel'
                                onClick={()=>{
                                    setModalGlossaryIsOpen(false);
                                }}>Отмена</button>
                        <button type='submit'
                                form={'form-glossary'}
                                className='atma-editor-btn atma-editor-complete'
                        >Сохранить</button>
                    </div>
                }
Яков's avatar
Яков committed
2256
2257
            >
                <Form
2258
                    ref={formRef}
Яков's avatar
Яков committed
2259
2260
2261
2262
2263
2264
                    name={'form-glossary'}
                    initialValues={{word : wordGlossary}}
                    labelCol={{span: 8}}
                    wrapperCol={{span: 32}}
                    layout="vertical"
                    size="middle"
Яков's avatar
update    
Яков committed
2265
                    style={{marginTop: '20px'}}
Яков's avatar
Яков committed
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
                    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>
Яков's avatar
Яков committed
2288

Яков's avatar
Яков committed
2289
2290
2291
2292
2293
2294
2295
2296
2297
                    <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
2298
2299
        </div>
    )
Рамис's avatar
Рамис committed
2300
}
Рамис's avatar
Рамис committed
2301

DenSakh's avatar
DenSakh committed
2302
export default QEditor