react-icons/hi#HiDotsVertical TypeScript Examples

The following examples show how to use react-icons/hi#HiDotsVertical. 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: MoreActionsButton.tsx    From hub with Apache License 2.0 5 votes vote down vote up
MoreActionsButton = (props: Props) => {
  const [openStatus, setOpenStatus] = useState(false);
  const [visibleWidget, setVisibleWidget] = useState<boolean>(props.visibleWidget);
  const [currentPkgId, setCurrentPkgId] = useState<string>(props.packageId);
  const reportURL = getMetaTag('reportURL');

  const ref = useRef(null);
  useOutsideClick([ref], openStatus, () => setOpenStatus(false));

  useEffect(() => {
    if (props.packageId !== currentPkgId && openStatus) {
      setVisibleWidget(false);
      setCurrentPkgId(props.packageId);
    }
  }, [props.packageId]); /* eslint-disable-line react-hooks/exhaustive-deps */

  return (
    <>
      <div className="d-none d-md-block position-relative ms-2">
        <button
          className={`btn btn-outline-primary rounded-circle p-0 position-relative lh-1 fs-5 ${styles.iconWrapper}`}
          type="button"
          onClick={() => {
            setOpenStatus(true);
          }}
          aria-label="Open menu"
          aria-expanded={openStatus}
        >
          <HiDotsVertical />
        </button>

        <div
          ref={ref}
          role="menu"
          className={classnames('dropdown-menu dropdown-menu-end p-0', styles.dropdown, { show: openStatus })}
        >
          <div className={`dropdown-arrow ${styles.arrow}`} />

          <button
            className="dropdown-item btn btn-sm rounded-0 text-dark"
            onClick={() => {
              setVisibleWidget(true);
              setOpenStatus(false);
            }}
            aria-label="Open embed widget modal"
          >
            <div className="d-flex flex-row align-items-center">
              <BiCode className={`me-2 position-relative ${styles.icon}`} />
              <div>Embed widget</div>
            </div>
          </button>

          {!isNull(reportURL) && reportURL !== '' && (
            <button
              className="dropdown-item btn btn-sm rounded-0 text-dark"
              onClick={(e) => {
                e.stopPropagation();
                e.preventDefault();
                window.open(reportURL, '_blank');
                setOpenStatus(false);
              }}
              aria-label="Open report abuse url"
            >
              <div className="d-flex flex-row align-items-center">
                <GoStop className={`me-2 position-relative ${styles.icon}`} />
                <div>Report abuse</div>
              </div>
            </button>
          )}
        </div>
      </div>

      <WidgetModal {...props} visibleWidget={visibleWidget} setOpenStatus={setVisibleWidget} />
    </>
  );
}
Example #2
Source File: MoreActionsButton.tsx    From hub with Apache License 2.0 5 votes vote down vote up
MoreActionsButton = () => {
  const [openStatus, setOpenStatus] = useState(false);
  const [visibleWidget, setVisibleWidget] = useState<boolean>(false);

  const ref = useRef(null);
  useOutsideClick([ref], openStatus, () => setOpenStatus(false));

  return (
    <>
      <div className="d-none d-md-block position-relative ms-3">
        <button
          className={`btn btn-outline-primary rounded-circle p-0 position-relative lh-1 ${styles.iconWrapper}`}
          type="button"
          onClick={() => {
            setOpenStatus(true);
          }}
          aria-label="Show menu"
          aria-expanded={openStatus}
        >
          <HiDotsVertical />
        </button>

        <div
          ref={ref}
          role="menu"
          className={classnames('dropdown-menu dropdown-menu-end p-0', styles.dropdown, { show: openStatus })}
        >
          <div className={`dropdown-arrow ${styles.arrow}`} />

          <button
            className="dropdown-item btn btn-sm rounded-0 text-dark"
            onClick={() => {
              setVisibleWidget(true);
              setOpenStatus(false);
            }}
            aria-label="Open embed results modal"
          >
            <div className="d-flex flex-row align-items-center">
              <BiCode className="me-2" />
              <div>Embed results</div>
            </div>
          </button>
        </div>
      </div>

      <WidgetsGroupModal visibleWidget={visibleWidget} setOpenStatus={setVisibleWidget} />
    </>
  );
}