// @flow import React, { useCallback, useEffect, useRef, useState } from 'react'; import { Icon, IconMenu } from '../../../base/icons'; import { Tooltip } from '../../../base/tooltip'; import { CHAR_LIMIT } from '../../constants'; import AbstractPollCreate from '../AbstractPollCreate'; import type { AbstractProps } from '../AbstractPollCreate'; const PollCreate = (props: AbstractProps) => { const { addAnswer, answers, isSubmitDisabled, moveAnswer, onSubmit, question, removeAnswer, setAnswer, setCreateMode, setQuestion, t } = props; /* * This ref stores the Array of answer input fields, allowing us to focus on them. * This array is maintained by registerfieldRef and the useEffect below. */ const answerInputs = useRef([]); const registerFieldRef = useCallback((i, r) => { if (r === null) { return; } answerInputs.current[i] = r; }, [ answerInputs ]); useEffect(() => { answerInputs.current = answerInputs.current.slice(0, answers.length); }, [ answers ]); /* * This state allows us to requestFocus asynchronously, without having to worry * about whether a newly created input field has been rendered yet or not. */ const [ lastFocus, requestFocus ] = useState(null); useEffect(() => { if (lastFocus === null) { return; } const input = answerInputs.current[lastFocus]; if (input === undefined) { return; } input.focus(); }, [ lastFocus ]); const checkModifiers = useCallback(ev => { // Composition events used to add accents to characters // despite their absence from standard US keyboards, // to build up logograms of many Asian languages // from their base components or categories and so on. if (ev.isComposing || ev.keyCode === 229) { // keyCode 229 means that user pressed some button, // but input method is still processing that. // This is a standard behavior for some input methods // like entering japanese or сhinese hieroglyphs. return true; } // Because this isn't done automatically on MacOS if (ev.key === 'Enter' && ev.metaKey) { ev.preventDefault(); onSubmit(); return; } if (ev.ctrlKey || ev.metaKey || ev.altKey || ev.shiftKey) { return; } }); const onQuestionKeyDown = useCallback(ev => { if (checkModifiers(ev)) { return; } if (ev.key === 'Enter') { requestFocus(0); ev.preventDefault(); } }); // Called on keypress in answer fields const onAnswerKeyDown = useCallback((i, ev) => { if (checkModifiers(ev)) { return; } if (ev.key === 'Enter') { // We add a new option input // only if we are on the last option input if (i === answers.length - 1) { addAnswer(i + 1); } requestFocus(i + 1); ev.preventDefault(); } else if (ev.key === 'Backspace' && ev.target.value === '' && answers.length > 1) { removeAnswer(i); requestFocus(i > 0 ? i - 1 : 0); ev.preventDefault(); } else if (ev.key === 'ArrowDown') { if (i === answers.length - 1) { addAnswer(); } requestFocus(i + 1); ev.preventDefault(); } else if (ev.key === 'ArrowUp') { if (i === 0) { addAnswer(0); requestFocus(0); } else { requestFocus(i - 1); } ev.preventDefault(); } }, [ answers, addAnswer, removeAnswer, requestFocus ]); const [ grabbing, setGrabbing ] = useState(null); const interchangeHeights = (i, j) => { const h = answerInputs.current[i].scrollHeight; answerInputs.current[i].style.height = `${answerInputs.current[j].scrollHeight}px`; answerInputs.current[j].style.height = `${h}px`; }; const onGrab = useCallback((i, ev) => { if (ev.button !== 0) { return; } setGrabbing(i); window.addEventListener('mouseup', () => { setGrabbing(_grabbing => { requestFocus(_grabbing); return null; }); }, { once: true }); }); const onMouseOver = useCallback(i => { if (grabbing !== null && grabbing !== i) { interchangeHeights(i, grabbing); moveAnswer(grabbing, i); setGrabbing(i); } }); const autogrow = ev => { const el = ev.target; el.style.height = '1px'; el.style.height = `${el.scrollHeight + 2}px`; }; /* eslint-disable react/jsx-no-bind */ return (
{ t('polls.create.create') }
{ t('polls.create.pollQuestion') }