| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372 |
- import React, { useEffect, useState, useCallback } from 'react';
- import path from 'path';
- import Linker from '@growi/editor/src/services/link-util/Linker';
- import { useLinkEditModal } from '@growi/editor/src/stores/use-link-edit-modal';
- import { useTranslation } from 'next-i18next';
- import {
- Modal,
- ModalHeader,
- ModalBody,
- ModalFooter,
- Popover,
- PopoverBody,
- } from 'reactstrap';
- import validator from 'validator';
- import { apiv3Get } from '~/client/util/apiv3-client';
- import { useCurrentPagePath } from '~/stores/page';
- import { usePreviewOptions } from '~/stores/renderer';
- import loggerFactory from '~/utils/logger';
- import SearchTypeahead from '../SearchTypeahead';
- import Preview from './Preview';
- import styles from './LinkEditPreview.module.scss';
- const logger = loggerFactory('growi:components:LinkEditModal');
- export const LinkEditModal = (): JSX.Element => {
- const { t } = useTranslation();
- const { data: currentPath } = useCurrentPagePath();
- const { data: rendererOptions } = usePreviewOptions();
- const { data: linkEditModalStatus, close } = useLinkEditModal();
- const [isUseRelativePath, setIsUseRelativePath] = useState<boolean>(false);
- const [isUsePermanentLink, setIsUsePermanentLink] = useState<boolean>(false);
- const [linkInputValue, setLinkInputValue] = useState<string>('');
- const [labelInputValue, setLabelInputValue] = useState<string>('');
- const [linkerType, setLinkerType] = useState<string>('');
- const [markdown, setMarkdown] = useState<string>('');
- const [pagePath, setPagePath] = useState<string>('');
- const [previewError, setPreviewError] = useState<string>();
- const [permalink, setPermalink] = useState<string>('');
- const [isPreviewOpen, setIsPreviewOpen] = useState<boolean>(false);
- const getRootPath = useCallback((type: string) => {
- // rootPaths of md link and pukiwiki link are different
- if (currentPath == null) return '';
- return type === Linker.types.markdownLink ? path.dirname(currentPath) : currentPath;
- }, [currentPath]);
- // parse link, link is ...
- // case-1. url of this growi's page (ex. 'http://localhost:3000/hoge/fuga')
- // case-2. absolute path of this growi's page (ex. '/hoge/fuga')
- // case-3. relative path of this growi's page (ex. '../fuga', 'hoge')
- // case-4. external link (ex. 'https://growi.org')
- // case-5. the others (ex. '')
- const parseLinkAndSetState = useCallback((link: string, type: string) => {
- // create url from link, add dummy origin if link is not valid url.
- // ex-1. link = 'https://growi.org/' -> url = 'https://growi.org/' (case-1,4)
- // ex-2. link = 'hoge' -> url = 'http://example.com/hoge' (case-2,3,5)
- let isFqcn = false;
- let isUseRelativePath = false;
- let url;
- try {
- const url = new URL(link, 'http://example.com');
- isFqcn = url.origin !== 'http://example.com';
- }
- catch (err) {
- logger.debug(err);
- }
- // case-1: when link is this growi's page url, return pathname only
- let reshapedLink = url != null && url.origin === window.location.origin
- ? decodeURIComponent(url.pathname)
- : link;
- // case-3
- if (!isFqcn && !reshapedLink.startsWith('/') && reshapedLink !== '') {
- isUseRelativePath = true;
- const rootPath = getRootPath(type);
- reshapedLink = path.resolve(rootPath, reshapedLink);
- }
- setLinkInputValue(reshapedLink);
- setIsUseRelativePath(isUseRelativePath);
- }, [getRootPath]);
- useEffect(() => {
- if (linkEditModalStatus == null) { return }
- const { label = '', link = '' } = linkEditModalStatus.defaultMarkdownLink ?? {};
- const { type = Linker.types.markdownLink } = linkEditModalStatus.defaultMarkdownLink ?? {};
- parseLinkAndSetState(link, type);
- setLabelInputValue(label);
- setIsUsePermanentLink(false);
- setPermalink('');
- setLinkerType(type);
- }, [linkEditModalStatus, parseLinkAndSetState]);
- const toggleIsUseRelativePath = () => {
- if (!linkInputValue.startsWith('/') || linkerType === Linker.types.growiLink) {
- return;
- }
- // User can't use both relativePath and permalink at the same time
- setIsUseRelativePath(!isUseRelativePath);
- setIsUsePermanentLink(false);
- };
- const toggleIsUsePamanentLink = () => {
- if (permalink === '' || linkerType === Linker.types.growiLink) {
- return;
- }
- // User can't use both relativePath and permalink at the same time
- setIsUsePermanentLink(!isUsePermanentLink);
- setIsUseRelativePath(false);
- };
- const setMarkdownHandler = async() => {
- const path = linkInputValue;
- let markdown = '';
- let pagePath = '';
- let permalink = '';
- if (path.startsWith('/')) {
- try {
- const pathWithoutFragment = new URL(path, 'http://dummy').pathname;
- const isPermanentLink = validator.isMongoId(pathWithoutFragment.slice(1));
- const pageId = isPermanentLink ? pathWithoutFragment.slice(1) : null;
- const { data } = await apiv3Get('/page', { path: pathWithoutFragment, page_id: pageId });
- const { page } = data;
- markdown = page.revision.body;
- pagePath = page.path;
- permalink = page.id;
- }
- catch (err) {
- setPreviewError(err.message);
- }
- }
- else {
- setPreviewError(t('link_edit.page_not_found_in_preview', { path }));
- }
- setMarkdown(markdown);
- setPagePath(pagePath);
- setPermalink(permalink);
- };
- const generateLink = () => {
- let reshapedLink = linkInputValue;
- if (isUseRelativePath) {
- const rootPath = getRootPath(linkerType);
- reshapedLink = rootPath === linkInputValue ? '.' : path.relative(rootPath, linkInputValue);
- }
- if (isUsePermanentLink && permalink != null) {
- reshapedLink = permalink;
- }
- return new Linker(linkerType, labelInputValue, reshapedLink);
- };
- const renderLinkPreview = (): JSX.Element => {
- const linker = generateLink();
- return (
- <div className="d-flex justify-content-between mb-3 flex-column flex-sm-row">
- <div className="card card-disabled w-100 p-1 mb-0">
- <p className="text-start text-muted mb-1 small">Markdown</p>
- <p className="text-center text-truncate text-muted">{linker.generateMarkdownText()}</p>
- </div>
- <div className="d-flex align-items-center justify-content-center">
- <span className="lead mx-3">
- <span className="d-none d-sm-block material-symbols-outlined">arrow_right</span>
- <span className="d-sm-none material-symbols-outlined">arrow_drop_down</span>
- </span>
- </div>
- <div className="card w-100 p-1 mb-0">
- <p className="text-start text-muted mb-1 small">HTML</p>
- <p className="text-center text-truncate">
- <a href={linker.link}>{linker.label}</a>
- </p>
- </div>
- </div>
- );
- };
- const handleChangeTypeahead = (selected) => {
- const pageWithMeta = selected[0];
- if (pageWithMeta != null) {
- const page = pageWithMeta.data;
- const permalink = `${window.location.origin}/${page.id}`;
- setLinkInputValue(page.path);
- setPermalink(permalink);
- }
- };
- const handleChangeLabelInput = (label: string) => {
- setLabelInputValue(label);
- };
- const handleChangeLinkInput = (link) => {
- let useRelativePath = isUseRelativePath;
- if (!linkInputValue.startsWith('/') || linkerType === Linker.types.growiLink) {
- useRelativePath = false;
- }
- setLinkInputValue(link);
- setIsUseRelativePath(useRelativePath);
- setIsUsePermanentLink(false);
- setPermalink('');
- };
- const save = () => {
- const linker = generateLink();
- if (linkEditModalStatus?.onSave != null) {
- linkEditModalStatus.onSave(linker.generateMarkdownText() ?? '');
- }
- close();
- };
- const toggleIsPreviewOpen = async() => {
- // open popover
- if (!isPreviewOpen) {
- setMarkdownHandler();
- }
- setIsPreviewOpen(!isPreviewOpen);
- };
- const renderLinkAndLabelForm = (): JSX.Element => {
- return (
- <>
- <h3 className="grw-modal-head">{t('link_edit.set_link_and_label')}</h3>
- <form>
- <div className="form-gorup my-3">
- <div className="input-group flex-nowrap">
- <div>
- <span className="input-group-text">{t('link_edit.link')}</span>
- </div>
- <SearchTypeahead
- onChange={handleChangeTypeahead}
- onInputChange={handleChangeLinkInput}
- placeholder={t('link_edit.placeholder_of_link_input')}
- keywordOnInit={linkInputValue}
- autoFocus
- />
- <div className="d-none d-sm-block">
- <button type="button" id="preview-btn" className={`btn btn-info btn-page-preview ${styles['btn-page-preview']}`}>
- <span className="material-symbols-outlined">find_in_page</span>
- </button>
- <Popover trigger="focus" placement="right" isOpen={isPreviewOpen} target="preview-btn" toggle={toggleIsPreviewOpen}>
- <PopoverBody>
- {markdown != null && pagePath != null && rendererOptions != null
- && (
- <div className={`linkedit-preview ${styles['linkedit-preview']}`}>
- <Preview markdown={markdown} pagePath={pagePath} rendererOptions={rendererOptions} />
- </div>
- )
- }
- </PopoverBody>
- </Popover>
- </div>
- </div>
- </div>
- <div className="form-gorup my-3">
- <div className="input-group flex-nowrap">
- <div>
- <span className="input-group-text">{t('link_edit.label')}</span>
- </div>
- <input
- type="text"
- className="form-control"
- id="label"
- value={labelInputValue}
- onChange={e => handleChangeLabelInput(e.target.value)}
- disabled={linkerType === Linker.types.growiLink}
- placeholder={linkInputValue}
- />
- </div>
- </div>
- </form>
- </>
- );
- };
- const renderPathFormatForm = (): JSX.Element => {
- return (
- <div className="card custom-card pt-3">
- <form className="mb-0">
- <div className="mb-0 row">
- <label className="form-label col-sm-3">{t('link_edit.path_format')}</label>
- <div className="col-sm-9">
- <div className="form-check form-check-info form-check-inline">
- <input
- className="form-check-input"
- id="relativePath"
- type="checkbox"
- checked={isUseRelativePath}
- onChange={toggleIsUseRelativePath}
- disabled={!linkInputValue.startsWith('/') || linkerType === Linker.types.growiLink}
- />
- <label className="form-label form-check-label" htmlFor="relativePath">
- {t('link_edit.use_relative_path')}
- </label>
- </div>
- <div className="form-check form-check-info form-check-inline">
- <input
- className="form-check-input"
- id="permanentLink"
- type="checkbox"
- checked={isUsePermanentLink}
- onChange={toggleIsUsePamanentLink}
- disabled={permalink === '' || linkerType === Linker.types.growiLink}
- />
- <label className="form-label form-check-label" htmlFor="permanentLink">
- {t('link_edit.use_permanent_link')}
- </label>
- </div>
- </div>
- </div>
- </form>
- </div>
- );
- };
- if (linkEditModalStatus == null) {
- return <></>;
- }
- return (
- <Modal className="link-edit-modal" isOpen={linkEditModalStatus.isOpened} toggle={close} size="lg" autoFocus={false}>
- <ModalHeader tag="h4" toggle={close}>
- {t('link_edit.edit_link')}
- </ModalHeader>
- <ModalBody className="container">
- <div className="row">
- <div className="col-12">
- {renderLinkAndLabelForm()}
- {renderPathFormatForm()}
- </div>
- </div>
- <div className="row">
- <div className="col-12">
- <h3 className="grw-modal-head">{t('link_edit.preview')}</h3>
- {renderLinkPreview()}
- </div>
- </div>
- </ModalBody>
- <ModalFooter>
- { previewError && <span className="text-danger">{previewError}</span>}
- <button type="button" className="btn btn-sm btn-outline-secondary mx-1" onClick={close}>
- {t('Cancel')}
- </button>
- <button type="submit" className="btn btn-sm btn-primary mx-1" onClick={save}>
- {t('Done')}
- </button>
- </ModalFooter>
- </Modal>
- );
- };
- LinkEditModal.displayName = 'LinkEditModal';
|