| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- import { useCallback, useEffect, useState } from 'react';
- import type EventEmitter from 'events';
- import { useRouter } from 'next/router';
- import type { Element } from 'react-markdown/lib/rehype-filter';
- import { NextLink } from '~/components/ReactMarkdownComponents/NextLink';
- import {
- useIsGuestUser, useIsReadOnlyUser, useIsSharedUser, useShareLinkId,
- } from '~/stores-universal/context';
- import { useCurrentPageYjsData } from '~/stores/yjs';
- import loggerFactory from '~/utils/logger';
- import styles from './Header.module.scss';
- const logger = loggerFactory('growi:components:Header');
- const moduleClass = styles['revision-head'] ?? '';
- declare global {
- // eslint-disable-next-line vars-on-top, no-var
- var globalEmitter: EventEmitter;
- }
- function setCaretLine(line?: number): void {
- if (line != null) {
- globalEmitter.emit('reservedNextCaretLine', line);
- }
- }
- type EditLinkProps = {
- line?: number,
- }
- /**
- * Inner FC to display edit link icon
- */
- const EditLink = (props: EditLinkProps): JSX.Element => {
- const isDisabled = props.line == null;
- return (
- <span className="revision-head-edit-button">
- <a href="#edit" aria-disabled={isDisabled} onClick={() => setCaretLine(props.line)}>
- <span className="material-symbols-outlined">edit_square</span>
- </a>
- </span>
- );
- };
- type HeaderProps = {
- children: React.ReactNode,
- node: Element,
- level: number,
- id?: string,
- }
- export const Header = (props: HeaderProps): JSX.Element => {
- const {
- node, id, children, level,
- } = props;
- const { data: isGuestUser } = useIsGuestUser();
- const { data: isReadOnlyUser } = useIsReadOnlyUser();
- const { data: isSharedUser } = useIsSharedUser();
- const { data: shareLinkId } = useShareLinkId();
- const { data: currentPageYjsData } = useCurrentPageYjsData();
- const router = useRouter();
- const [isActive, setActive] = useState(false);
- const CustomTag = `h${level}` as keyof JSX.IntrinsicElements;
- const activateByHash = useCallback((url: string) => {
- try {
- const hash = (new URL(url, 'https://example.com')).hash.slice(1);
- setActive(decodeURIComponent(hash) === id);
- }
- catch (err) {
- logger.debug(err);
- setActive(false);
- }
- }, [id]);
- // init
- useEffect(() => {
- activateByHash(window.location.href);
- }, [activateByHash]);
- // update isActive when hash is changed by next router
- useEffect(() => {
- router.events.on('hashChangeComplete', activateByHash);
- return () => {
- router.events.off('hashChangeComplete', activateByHash);
- };
- }, [activateByHash, router.events]);
- // update isActive when hash is changed
- useEffect(() => {
- const activeByHashWrapper = (e: HashChangeEvent) => {
- activateByHash(e.newURL);
- };
- window.addEventListener('hashchange', activeByHashWrapper);
- return () => {
- window.removeEventListener('hashchange', activeByHashWrapper);
- };
- }, [activateByHash, router.events]);
- // TODO: currentPageYjsData?.hasYdocsNewerThanLatestRevision === false make to hide the edit button when a Yjs draft exists
- // This is because the current conditional logic cannot handle cases where the draft is an empty string.
- // It will be possible to address this TODO ySyncAnnotation become available for import.
- // Ref: https://github.com/yjs/y-codemirror.next/pull/30
- const showEditButton = !isGuestUser && !isReadOnlyUser && !isSharedUser && shareLinkId == null
- && currentPageYjsData?.hasYdocsNewerThanLatestRevision === false;
- return (
- <>
- <CustomTag id={id} className={`position-relative ${moduleClass} ${isActive ? styles.blink : ''} `}>
- <NextLink href={`#${id}`} className="d-none d-md-inline revision-head-link position-absolute">
- #
- </NextLink>
- {children}
- { showEditButton && (
- <EditLink line={node.position?.start.line} />
- ) }
- </CustomTag>
- </>
- );
- };
|