- implementing react-scroll

This commit is contained in:
Amruth Pillai
2020-07-09 14:30:06 +05:30
parent 3aaef5f730
commit 370b0c4020
4 changed files with 33 additions and 25 deletions

View File

@ -14,9 +14,14 @@ const LeftNavbar = () => (
<hr className="my-6" />
<div className="grid grid-cols-1 gap-8">
<div className="grid grid-cols-1 gap-5 text-secondary-dark">
{sections.map((x) => (
<SectionIcon key={x.id} section={x} containerId="LeftSidebar" />
<SectionIcon
key={x.id}
section={x}
containerId="LeftSidebar"
tooltipPlacement="right"
/>
))}
</div>

View File

@ -7,9 +7,14 @@ import SyncIndicator from './SyncIndicator';
const RightNavbar = () => {
return (
<div className={styles.container}>
<div className="grid grid-cols-1 gap-8">
<div className="grid grid-cols-1 gap-6 text-secondary-dark">
{sections.map((x) => (
<SectionIcon key={x.id} section={x} containerId="RightSidebar" />
<SectionIcon
key={x.id}
section={x}
containerId="RightSidebar"
tooltipPlacement="left"
/>
))}
</div>

View File

@ -1,31 +1,28 @@
import { Tooltip } from '@material-ui/core';
import React, { memo } from 'react';
import { scroller } from 'react-scroll';
import { handleKeyUp } from '../../utils';
import React, { memo, useEffect } from 'react';
import { Link, scrollSpy } from 'react-scroll';
const SectionIcon = ({ section, containerId, placement = 'right' }) => {
const SectionIcon = ({ section, containerId, tooltipPlacement }) => {
const { id, name, icon: Icon } = section;
const handleClick = () => {
scroller.scrollTo(id, {
duration: 500,
smooth: true,
containerId,
offset: -10,
});
};
useEffect(() => {
scrollSpy.update();
}, []);
return (
<Tooltip title={name} placement={placement} arrow>
<div
tabIndex="0"
role="button"
className="cursor-pointer focus:outline-none"
onKeyUp={(e) => handleKeyUp(e, handleClick)}
onClick={handleClick}
<Tooltip title={name} placement={tooltipPlacement} arrow>
<Link
spy
smooth
to={id}
offset={-18}
duration={500}
containerId={containerId}
activeClass="text-primary"
className="py-2 cursor-pointer focus:outline-none focus:text-primary hover:text-primary"
>
<Icon className="text-secondary-dark hover:text-primary" size="16px" />
</div>
<Icon size="16px" />
</Link>
</Tooltip>
);
};