remove collections props from collection bar

This commit is contained in:
Abhinav 2022-06-03 13:46:00 +05:30
parent 594c9ad5df
commit 7848f20466
2 changed files with 6 additions and 8 deletions

View file

@ -1,6 +1,6 @@
import ScrollButton from 'components/Collections/CollectionBar/ScrollButton';
import React, { useEffect, useMemo } from 'react';
import { Collection, CollectionSummaries } from 'types/collection';
import { CollectionSummaries } from 'types/collection';
import constants from 'utils/strings/constants';
import { ALL_SECTION, COLLECTION_SORT_BY } from 'constants/collection';
import { Typography } from '@mui/material';
@ -18,7 +18,6 @@ import { SpaceBetweenFlex } from 'components/Container';
import { sortCollectionSummaries } from 'services/collectionService';
interface IProps {
collections: Collection[];
activeCollection?: number;
setActiveCollection: (id?: number) => void;
isInSearchMode: boolean;
@ -29,7 +28,7 @@ interface IProps {
export default function CollectionBar(props: IProps) {
const {
activeCollection,
collections,
setActiveCollection,
collectionSummaries,
showAllCollections,
@ -53,12 +52,12 @@ export default function CollectionBar(props: IProps) {
onFarLeft,
onFarRight,
} = useComponentScroll({
dependencies: [windowSize, collections],
dependencies: [windowSize, collectionSummaries],
});
const collectionChipsRef = props.collections.reduce(
(refMap, collection) => {
refMap[collection.id] = React.createRef();
const collectionChipsRef = sortedCollectionSummary.reduce(
(refMap, collectionSummary) => {
refMap[collectionSummary.attributes.id] = React.createRef();
return refMap;
},
{}

View file

@ -45,7 +45,6 @@ export default function Collections(props: Iprops) {
return (
<>
<CollectionBar
collections={collections}
isInSearchMode={isInSearchMode}
activeCollection={activeCollectionID}
setActiveCollection={setActiveCollectionID}