react-icons/fa#FaFile TypeScript Examples

The following examples show how to use react-icons/fa#FaFile. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ButtonNewRun.tsx    From nextclade with MIT License 5 votes vote down vote up
export function ButtonNewRun() {
  const { t } = useTranslationSafe()

  // const algorithmRun = useCallback(() => {
  //   // TODO: trigger a run
  // }, [])

  const canRun = useRecoilValue(canRunAtom)
  const [isNewRunPopupShown, setIsNewRunPopupShown] = useRecoilState(isNewRunPopupShownAtom)

  const open = useCallback(() => setIsNewRunPopupShown(true), [setIsNewRunPopupShown])
  const close = useCallback(() => setIsNewRunPopupShown(false), [setIsNewRunPopupShown])
  const toggle = useCallback(
    () => setIsNewRunPopupShown((isNewRunPopupShown) => !isNewRunPopupShown),
    [setIsNewRunPopupShown],
  )

  // const run = useCallback(() => {
  //   close()
  //   algorithmRun()
  // }, [algorithmRun, close])

  return (
    <>
      <PanelButton
        onClick={open}
        title={t('New run: opens a dialog where you can start a new analysis')}
        disabled={!canRun}
      >
        <FaFile className="mr-xl-2 mb-1" />
      </PanelButton>

      <Modal centered isOpen={isNewRunPopupShown} toggle={toggle} fade={false} size="lg">
        <ModalHeader toggle={close} tag="div">
          <h3 className="text-center">{t('New run')}</h3>
        </ModalHeader>

        <ModalBody>
          <Scrollable>
            <FilePickerAdvanced />
          </Scrollable>
        </ModalBody>

        <ModalFooter>
          <Row noGutters>
            <Col>{/* <ButtonsAdvanced canRun={canRun} run={run} /> */}</Col>
          </Row>
        </ModalFooter>
      </Modal>
    </>
  )
}