dnote/web/src/components/Books/Content.tsx
Sung Won Cho e2e777db54
Lint JavaScript/TypeScript code (#346)
* Implement lint in all js projects

* Use yarn workspace

* Remove package-lock.json

* Fix

* Extract common dev dep

* Bump
2019-11-23 15:40:33 +08:00

225 lines
6.2 KiB
TypeScript

/* Copyright (C) 2019 Monomax Software Pty Ltd
*
* This file is part of Dnote.
*
* Dnote is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Dnote is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Dnote. If not, see <https://www.gnu.org/licenses/>.
*/
import React, { Fragment, useState, useEffect, useRef } from 'react';
import { withRouter, RouteComponentProps } from 'react-router-dom';
import classnames from 'classnames';
import { History } from 'history';
import { BookData } from 'jslib/operations/types';
import { escapesRegExp } from 'web/libs/string';
import { getHomePath } from 'web/libs/paths';
import {
KeydownSelectFn,
useSearchMenuKeydown,
useScrollToFocused
} from 'web/libs/hooks/dom';
import { useSelector } from '../../store';
import CreateBookModal from './CreateBookModal';
import BookList from './BookList';
import EmptyList from './EmptyList';
import SearchInput from '../Common/SearchInput';
import DeleteBookModal from './DeleteBookModal';
import { usePrevious } from '../../libs/hooks';
import CreateBookButton from './CreateBookButton';
import styles from './Content.scss';
function filterBooks(books: BookData[], searchInput: string): BookData[] {
if (searchInput === '') {
return books;
}
const input = escapesRegExp(searchInput);
const re = new RegExp(input, 'i');
return books.filter(book => {
return re.test(book.label);
});
}
function handleMenuKeydownSelect(history: History): KeydownSelectFn<BookData> {
return (option: BookData) => {
const destination = getHomePath({
book: option.label
});
history.push(destination);
};
}
function useSetFocusedOptionOnInputFocus({
searchValue,
searchFocus,
setFocusedIdx,
containerEl
}) {
useEffect(() => {
if (searchFocus) {
setFocusedIdx(0);
} else {
setFocusedIdx(-1);
}
}, [searchValue, searchFocus, containerEl, setFocusedIdx]);
}
function useFocusInputOnReset(
searchValue: string,
inputRef: React.MutableRefObject<any>
) {
const prevSearchValue = usePrevious(searchValue);
useEffect(() => {
if (prevSearchValue !== null && searchValue === '') {
if (inputRef.current !== null) {
inputRef.current.focus();
}
}
}, [searchValue, inputRef, prevSearchValue]);
}
interface Props extends RouteComponentProps {
setSuccessMessage: (string) => void;
}
const Content: React.FunctionComponent<Props> = ({
history,
setSuccessMessage
}) => {
const { books } = useSelector(state => {
return {
books: state.books
};
});
const [searchValue, setSearchValue] = useState('');
const [searchFocus, setSearchFocus] = useState(false);
const [focusedIdx, setFocusedIdx] = useState(-1);
const [focusedOptEl, setFocusedOptEl] = useState(null);
const [bookUUIDToDelete, setBookUUIDToDelete] = useState('');
const [isCreateBookModalOpen, setIsCreateBookModalOpen] = useState(false);
const inputRef = useRef(null);
const filteredBooks = filterBooks(books.data, searchValue);
const containerEl = document.body;
useSetFocusedOptionOnInputFocus({
searchValue,
searchFocus,
setFocusedIdx,
containerEl
});
useSearchMenuKeydown<BookData>({
options: filteredBooks,
containerEl,
focusedIdx,
setFocusedIdx,
disabled: !searchFocus,
onKeydownSelect: handleMenuKeydownSelect(history)
});
useScrollToFocused({
shouldScroll: true,
focusedOptEl,
containerEl
});
useFocusInputOnReset(searchValue, inputRef);
const hasNoBooks = books.isFetched && filteredBooks.length === 0;
return (
<Fragment>
<div className="container mobile-fw">
<div className={classnames(styles.header, 'page-header')}>
<div className={styles['header-left']}>
<h1 className="page-heading">Books</h1>
<CreateBookButton
id="T-create-book-btn"
disabled={books.isFetching}
openModal={() => {
setIsCreateBookModalOpen(true);
}}
/>
</div>
<SearchInput
placeholder="Filter books"
value={searchValue}
onChange={e => {
const val = e.target.value;
setSearchValue(val);
}}
wrapperClassName={styles['search-input-wrapper']}
inputClassName={classnames(
'text-input-small',
styles['search-input']
)}
disabled={books.isFetching}
inputRef={inputRef}
onFocus={() => {
setSearchFocus(true);
}}
onBlur={() => {
setSearchFocus(false);
}}
onReset={() => {
setSearchValue('');
}}
/>
</div>
</div>
<div className="container mobile-nopadding">
{hasNoBooks ? (
<EmptyList />
) : (
<BookList
isFetching={books.isFetching}
isFetched={books.isFetched}
books={filteredBooks}
focusedIdx={focusedIdx}
setFocusedOptEl={setFocusedOptEl}
onDeleteBook={bookUUID => {
setBookUUIDToDelete(bookUUID);
}}
/>
)}
</div>
<DeleteBookModal
isOpen={Boolean(bookUUIDToDelete)}
onDismiss={() => {
setBookUUIDToDelete(null);
}}
bookUUID={bookUUIDToDelete}
setSuccessMessage={setSuccessMessage}
/>
<CreateBookModal
isOpen={isCreateBookModalOpen}
onDismiss={() => {
setIsCreateBookModalOpen(false);
}}
onSuccess={() => {
setSearchValue('');
}}
setSuccessMessage={setSuccessMessage}
/>
</Fragment>
);
};
export default React.memo(withRouter(Content));