Spaces:
Sleeping
Sleeping
File size: 12,516 Bytes
13555f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 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 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 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 | // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import Editor from '@draft-js-plugins/editor'
import createEmojiPlugin from '@draft-js-plugins/emoji'
import '@draft-js-plugins/emoji/lib/plugin.css'
import createMentionPlugin from '@draft-js-plugins/mention'
import '@draft-js-plugins/mention/lib/plugin.css'
import {ContentState, DraftHandleValue, EditorState, getDefaultKeyBinding} from 'draft-js'
import React, {
ReactElement, useCallback, useEffect,
useMemo, useRef,
useState,
} from 'react'
import {debounce} from 'lodash'
import {useAppSelector} from '../../store/hooks'
import {IUser} from '../../user'
import {getBoardUsersList, getMe} from '../../store/users'
import createLiveMarkdownPlugin from '../live-markdown-plugin/liveMarkdownPlugin'
import {useHasPermissions} from '../../hooks/permissions'
import {Permission} from '../../constants'
import {BoardMember, BoardTypeOpen, MemberRole} from '../../blocks/board'
import mutator from '../../mutator'
import ConfirmAddUserForNotifications from '../confirmAddUserForNotifications'
import RootPortal from '../rootPortal'
import './markdownEditorInput.scss'
import {getCurrentBoard} from '../../store/boards'
import octoClient from '../../octoClient'
import {Utils} from '../../utils'
import {ClientConfig} from '../../config/clientConfig'
import {getClientConfig} from '../../store/clientConfig'
import Entry from './entryComponent/entryComponent'
const imageURLForUser = (window as any).Components?.imageURLForUser
type MentionUser = {
user: IUser
name: string
avatar: string
is_bot: boolean
is_guest: boolean
displayName: string
isBoardMember: boolean
}
type Props = {
onChange?: (text: string) => void
onFocus?: () => void
onBlur?: (text: string) => void
onEditorCancel?: () => void
initialText?: string
id?: string
isEditing: boolean
saveOnEnter?: boolean
}
const MarkdownEditorInput = (props: Props): ReactElement => {
const {onChange, onFocus, onBlur, initialText, id} = props
const boardUsers = useAppSelector<IUser[]>(getBoardUsersList)
const board = useAppSelector(getCurrentBoard)
const clientConfig = useAppSelector<ClientConfig>(getClientConfig)
const ref = useRef<Editor>(null)
const allowManageBoardRoles = useHasPermissions(board.teamId, board.id, [Permission.ManageBoardRoles])
const [confirmAddUser, setConfirmAddUser] = useState<IUser|null>(null)
const me = useAppSelector<IUser|null>(getMe)
const [suggestions, setSuggestions] = useState<MentionUser[]>([])
const loadSuggestions = async (term: string) => {
let users: IUser[]
if (!me?.is_guest && (allowManageBoardRoles || (board && board.type === BoardTypeOpen))) {
const excludeBots = true
users = await octoClient.searchTeamUsers(term, excludeBots)
} else {
users = boardUsers.
filter((user) => {
// no search term
if (!term) {
return true
}
// does the search term occur anywhere in the display name?
return Utils.getUserDisplayName(user, clientConfig.teammateNameDisplay).includes(term)
}).
// first 10 results
slice(0, 10)
}
const mentions: MentionUser[] = users.map(
(user: IUser): MentionUser => ({
name: user.username,
avatar: `${imageURLForUser ? imageURLForUser(user.id) : ''}`,
is_bot: user.is_bot,
is_guest: user.is_guest,
displayName: Utils.getUserDisplayName(user, clientConfig.teammateNameDisplay),
isBoardMember: Boolean(boardUsers.find((u) => u.id === user.id)),
user,
}))
setSuggestions(mentions)
}
const debouncedLoadSuggestion = useMemo(() => debounce(loadSuggestions, 200), [])
useEffect(() => {
// Get the ball rolling. Searching for empty string
// returns first 10 users in alphabetical order.
loadSuggestions('')
}, [])
const generateEditorState = (text?: string) => {
const state = EditorState.createWithContent(ContentState.createFromText(text || ''))
return EditorState.moveSelectionToEnd(state)
}
const [editorState, setEditorState] = useState(() => generateEditorState(initialText))
const addUser = useCallback(async (userId: string, role: string) => {
const newRole = role || MemberRole.Viewer
const newMember = {
boardId: board.id,
userId,
roles: role,
schemeAdmin: newRole === MemberRole.Admin,
schemeEditor: newRole === MemberRole.Admin || newRole === MemberRole.Editor,
schemeCommenter: newRole === MemberRole.Admin || newRole === MemberRole.Editor || newRole === MemberRole.Commenter,
schemeViewer: newRole === MemberRole.Admin || newRole === MemberRole.Editor || newRole === MemberRole.Commenter || newRole === MemberRole.Viewer,
} as BoardMember
setConfirmAddUser(null)
setEditorState(EditorState.moveSelectionToEnd(editorState))
ref.current?.focus()
await mutator.createBoardMember(newMember)
}, [board, editorState])
const [initialTextCache, setInitialTextCache] = useState<string | undefined>(initialText)
const [initialTextUsed, setInitialTextUsed] = useState<boolean>(false)
// avoiding stale closure
useEffect(() => {
// only change editor state when initialText actually changes from one defined value to another.
// This is needed to make the mentions plugin work. For some reason, if we don't check
// for this if condition here, mentions don't work. I suspect it's because without
// the in condition, we're changing editor state twice during component initialization
// and for some reason it causes mentions to not show up.
// initial text should only be used once, i'e', initially
// `initialTextUsed` flag records if the initialText prop has been used
// to se the editor state once as a truthy value.
// Once used, we don't react to its changing value
if (!initialTextUsed && initialText && initialText !== initialTextCache) {
setEditorState(generateEditorState(initialText || ''))
setInitialTextCache(initialText)
setInitialTextUsed(true)
}
}, [initialText])
const [isMentionPopoverOpen, setIsMentionPopoverOpen] = useState(false)
const [isEmojiPopoverOpen, setIsEmojiPopoverOpen] = useState(false)
const {MentionSuggestions, plugins, EmojiSuggestions} = useMemo(() => {
const mentionPlugin = createMentionPlugin({mentionPrefix: '@'})
const emojiPlugin = createEmojiPlugin()
const markdownPlugin = createLiveMarkdownPlugin()
// eslint-disable-next-line @typescript-eslint/no-shadow
const {EmojiSuggestions} = emojiPlugin
// eslint-disable-next-line @typescript-eslint/no-shadow
const {MentionSuggestions} = mentionPlugin
// eslint-disable-next-line @typescript-eslint/no-shadow
const plugins = [
mentionPlugin,
emojiPlugin,
markdownPlugin,
]
return {plugins, MentionSuggestions, EmojiSuggestions}
}, [])
const onEditorStateChange = useCallback((newEditorState: EditorState) => {
// newEditorState.
const newText = newEditorState.getCurrentContent().getPlainText()
onChange && onChange(newText)
setEditorState(newEditorState)
}, [onChange])
const customKeyBindingFn = useCallback((e: React.KeyboardEvent) => {
if (isMentionPopoverOpen || isEmojiPopoverOpen) {
return undefined
}
if (e.key === 'Escape') {
return 'editor-blur'
}
if (e.key === 'Backspace') {
return 'backspace'
}
if (getDefaultKeyBinding(e) === 'undo') {
return 'editor-undo'
}
if (getDefaultKeyBinding(e) === 'redo') {
return 'editor-redo'
}
return getDefaultKeyBinding(e as any)
}, [isEmojiPopoverOpen, isMentionPopoverOpen])
const handleKeyCommand = useCallback((command: string, currentState: EditorState): DraftHandleValue => {
if (command === 'editor-blur') {
ref.current?.blur()
return 'handled'
}
if (command === 'editor-redo') {
const selectionRemovedState = EditorState.redo(currentState)
onEditorStateChange(EditorState.redo(selectionRemovedState))
return 'handled'
}
if (command === 'editor-undo') {
const selectionRemovedState = EditorState.undo(currentState)
onEditorStateChange(EditorState.undo(selectionRemovedState))
return 'handled'
}
if (command === 'backspace') {
if (props.onEditorCancel && editorState.getCurrentContent().getPlainText().length === 0) {
props.onEditorCancel()
return 'handled'
}
}
return 'not-handled'
}, [props.onEditorCancel, editorState])
const onEditorStateBlur = useCallback(() => {
if (confirmAddUser) {
return
}
const text = editorState.getCurrentContent().getPlainText()
onBlur && onBlur(text)
}, [editorState.getCurrentContent().getPlainText(), onBlur, confirmAddUser])
const onMentionPopoverOpenChange = useCallback((open: boolean) => {
setIsMentionPopoverOpen(open)
}, [])
const onEmojiPopoverOpen = useCallback(() => {
setIsEmojiPopoverOpen(true)
}, [])
const onEmojiPopoverClose = useCallback(() => {
setIsEmojiPopoverOpen(false)
}, [])
const onSearchChange = useCallback(({value}: { value: string }) => {
debouncedLoadSuggestion(value)
}, [suggestions])
const className = 'MarkdownEditorInput'
const handleReturn = (e: any, state: EditorState): DraftHandleValue => {
if (!e.shiftKey) {
const text = state.getCurrentContent().getPlainText()
onBlur && onBlur(text)
return 'handled'
}
return 'not-handled'
}
return (
<div
className={className}
onKeyDown={(e: React.KeyboardEvent) => {
if (isMentionPopoverOpen || isEmojiPopoverOpen) {
e.stopPropagation()
}
}}
>
<Editor
editorKey={id}
editorState={editorState}
onChange={onEditorStateChange}
plugins={plugins}
ref={ref}
onBlur={onEditorStateBlur}
onFocus={onFocus}
keyBindingFn={customKeyBindingFn}
handleKeyCommand={handleKeyCommand}
handleReturn={props.saveOnEnter ? handleReturn : undefined}
/>
<MentionSuggestions
open={isMentionPopoverOpen}
onOpenChange={onMentionPopoverOpenChange}
suggestions={suggestions}
onSearchChange={onSearchChange}
entryComponent={Entry}
onAddMention={(mention) => {
if (mention.isBoardMember) {
return
}
setConfirmAddUser(mention.user)
}}
/>
<EmojiSuggestions
onOpen={onEmojiPopoverOpen}
onClose={onEmojiPopoverClose}
/>
{confirmAddUser &&
<RootPortal>
<ConfirmAddUserForNotifications
allowManageBoardRoles={allowManageBoardRoles}
minimumRole={board.minimumRole}
user={confirmAddUser}
onConfirm={addUser}
onClose={() => {
setConfirmAddUser(null)
setEditorState(EditorState.moveSelectionToEnd(editorState))
ref.current?.focus()
}}
/>
</RootPortal>}
</div>
)
}
export default MarkdownEditorInput
|