ente/src/pages/gallery/index.tsx

442 lines
15 KiB
TypeScript
Raw Normal View History

2020-09-20 15:18:35 +00:00
import React, { useEffect, useState } from 'react';
import { useRouter } from 'next/router';
import Spinner from 'react-bootstrap/Spinner';
import { getKey, SESSION_KEYS } from 'utils/storage/sessionStorage';
import {
file,
getFile,
getPreview,
fetchData,
localFiles,
} from 'services/fileService';
import { getData, LS_KEYS } from 'utils/storage/localStorage';
import PreviewCard from './components/PreviewCard';
import { getActualKey, getToken } from 'utils/common/key';
2020-09-20 15:18:35 +00:00
import styled from 'styled-components';
import PhotoSwipe from 'components/PhotoSwipe/PhotoSwipe';
import { Options } from 'photoswipe';
2020-11-20 17:24:21 +00:00
import AutoSizer from 'react-virtualized-auto-sizer';
2020-11-29 14:48:47 +00:00
import { VariableSizeList as List } from 'react-window';
import LoadingBar from 'react-top-loading-bar'
2020-11-28 18:11:24 +00:00
import Collections from './components/Collections';
import Upload from './components/Upload';
import {
collection,
fetchUpdatedCollections,
collectionLatestFile,
getCollectionLatestFile,
getFavItemIds,
getLocalCollections
} from 'services/collectionService';
2021-01-24 20:59:58 +00:00
import constants from 'utils/strings/constants';
2020-09-20 15:18:35 +00:00
2020-11-29 14:48:47 +00:00
enum ITEM_TYPE {
TIME = 'TIME',
TILE = 'TILE',
2020-11-29 14:48:47 +00:00
}
2021-01-12 07:01:00 +00:00
export enum FILE_TYPE {
IMAGE,
VIDEO,
OTHERS
}
2020-11-29 14:48:47 +00:00
interface TimeStampListItem {
itemType: ITEM_TYPE;
items?: file[];
itemStartIndex?: number;
date?: string;
2020-11-29 14:48:47 +00:00
}
2020-09-20 15:18:35 +00:00
const Container = styled.div`
display: block;
flex: 1;
width: 100%;
flex-wrap: wrap;
margin: 0 auto;
2020-09-20 15:18:35 +00:00
.pswp-thumbnail {
display: inline-block;
cursor: pointer;
}
2020-09-20 15:18:35 +00:00
`;
2020-11-20 17:24:21 +00:00
const ListItem = styled.div`
display: flex;
justify-content: center;
2020-11-28 18:11:24 +00:00
`;
const DeadCenter = styled.div`
flex: 1;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
text-align: center;
flex-direction: column;
2020-11-28 18:11:24 +00:00
`;
const ListContainer = styled.div`
display: flex;
max-width: 100%;
color: #fff;
2020-11-28 18:16:56 +00:00
@media (min-width: 1000px) {
width: 1000px;
}
2020-11-28 18:11:24 +00:00
@media (min-width: 450px) and (max-width: 1000px) {
width: 600px;
}
2020-11-28 18:11:24 +00:00
@media (max-width: 450px) {
width: 100%;
}
2020-11-20 17:24:21 +00:00
`;
2020-11-29 14:55:07 +00:00
const DateContainer = styled.div`
padding: 0 4px;
2020-11-29 14:55:07 +00:00
`;
2021-01-06 06:31:16 +00:00
export default function Gallery(props) {
const router = useRouter();
const [loading, setLoading] = useState(false);
2021-01-14 05:32:12 +00:00
const [reload, setReload] = useState(0);
const [collections, setCollections] = useState<collection[]>([]);
const [collectionLatestFile, setCollectionLatestFile] = useState<
collectionLatestFile[]
>([]);
const [data, setData] = useState<file[]>();
2021-01-20 12:05:04 +00:00
const [favItemIds, setFavItemIds] = useState<Set<number>>();
const [open, setOpen] = useState(false);
const [options, setOptions] = useState<Options>({
history: false,
maxSpreadZoom: 5,
});
const fetching: { [k: number]: boolean } = {};
const [progress, setProgress] = useState(0)
2021-01-05 11:12:38 +00:00
useEffect(() => {
const main = async () => {
setLoading(true);
const data = await localFiles();
const collections = await getLocalCollections();
setData(data);
setCollections(collections);
setLoading(false);
};
main();
props.setUploadButtonView(true);
}, []);
useEffect(() => {
const key = getKey(SESSION_KEYS.ENCRYPTION_KEY);
const token = getToken();
if (!key || !token) {
router.push('/');
}
const main = async () => {
setProgress(80);
const encryptionKey = await getActualKey();
const updatedCollections = await fetchUpdatedCollections(token, encryptionKey);
const data = await fetchData(token, updatedCollections);
const collections = await getLocalCollections();
2021-01-20 12:05:04 +00:00
const collectionLatestFile = await getCollectionLatestFile(collections, token);
const favItemIds = await getFavItemIds(data);
if (updatedCollections.length > 0) {
setCollections(collections);
setData(data);
setCollectionLatestFile(collectionLatestFile);
setFavItemIds(favItemIds);
}
setProgress(100);
};
main();
props.setUploadButtonView(true);
2021-01-14 05:32:12 +00:00
}, [reload]);
if (!data || loading) {
return (
<div className='text-center'>
<Spinner animation='border' variant='primary' />
</div>
);
}
const updateUrl = (index: number) => (url: string) => {
data[index] = {
...data[index],
msrc: url,
w: window.innerWidth,
h: window.innerHeight,
};
if (data[index].metadata.fileType === FILE_TYPE.VIDEO && !data[index].html) {
data[index].html = `
2020-11-26 15:57:20 +00:00
<div class="video-loading">
<img src="${url}" />
<div class="spinner-border text-light" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
`;
delete data[index].src;
}
if (data[index].metadata.fileType === FILE_TYPE.IMAGE && !data[index].src) {
data[index].src = url;
}
setData(data);
};
const updateSrcUrl = (index: number, url: string) => {
data[index] = {
...data[index],
src: url,
w: window.innerWidth,
h: window.innerHeight,
};
if (data[index].metadata.fileType === FILE_TYPE.VIDEO) {
data[index].html = `
2020-11-26 15:57:20 +00:00
<video controls>
2020-11-26 17:35:26 +00:00
<source src="${url}" />
2020-11-26 15:57:20 +00:00
Your browser does not support the video tag.
</video>
`;
delete data[index].src;
}
setData(data);
};
const handleClose = () => {
setOpen(false);
2021-01-24 20:54:14 +00:00
// setReload(Math.random());
};
const onThumbnailClick = (index: number) => () => {
setOptions({
...options,
index,
});
setOpen(true);
};
const getThumbnail = (file: file[], index: number) => {
return (
<PreviewCard
key={`tile-${file[index].id}`}
data={file[index]}
updateUrl={updateUrl(file[index].dataIndex)}
onClick={onThumbnailClick(index)}
/>
);
};
2020-09-20 15:18:35 +00:00
const getSlideData = async (instance: any, index: number, item: file) => {
const token = getData(LS_KEYS.USER).token;
if (!item.msrc) {
const url = await getPreview(token, item);
updateUrl(item.dataIndex)(url);
item.msrc = url;
if (!item.src) {
item.src = url;
}
item.w = window.innerWidth;
item.h = window.innerHeight;
try {
instance.invalidateCurrItems();
instance.updateSize(true);
} catch (e) {
// ignore
}
}
if ((!item.src || item.src === item.msrc) && !fetching[item.dataIndex]) {
fetching[item.dataIndex] = true;
const url = await getFile(token, item);
updateSrcUrl(item.dataIndex, url);
if (item.metadata.fileType === FILE_TYPE.VIDEO) {
item.html = `
2020-11-26 15:57:20 +00:00
<video width="320" height="240" controls>
2020-11-26 17:35:26 +00:00
<source src="${url}" />
2020-11-26 15:57:20 +00:00
Your browser does not support the video tag.
</video>
`;
delete item.src;
item.w = window.innerWidth;
} else {
item.src = url;
}
item.h = window.innerHeight;
try {
instance.invalidateCurrItems();
instance.updateSize(true);
} catch (e) {
// ignore
}
2020-11-28 18:11:24 +00:00
}
};
const selectCollection = (id?: string) => {
const href = `/gallery?collection=${id || ''}`;
router.push(href, undefined, { shallow: true });
};
let idSet = new Set();
const filteredData = data
.map((item, index) => ({
...item,
dataIndex: index,
}))
.filter((item) => {
if (!idSet.has(item.id)) {
2021-01-06 06:31:16 +00:00
if (
!router.query.collection ||
router.query.collection === item.collectionID.toString()
2021-01-06 06:31:16 +00:00
) {
idSet.add(item.id);
return true;
2021-01-06 06:31:16 +00:00
}
return false;
}
return false;
});
const isSameDay = (first, second) => {
return (
first.getFullYear() === second.getFullYear() &&
first.getMonth() === second.getMonth() &&
first.getDate() === second.getDate()
);
};
2020-11-29 14:48:47 +00:00
return (
<>
<LoadingBar
color='#f11946'
progress={progress}
onLoaderFinished={() => setProgress(0)}
/>
<Collections
collections={collections}
selected={router.query.collection?.toString()}
selectCollection={selectCollection}
/>
<Upload
uploadModalView={props.uploadModalView}
closeUploadModal={props.closeUploadModal}
showUploadModal={props.showUploadModal}
collectionLatestFile={collectionLatestFile}
refetchData={() => setReload(Math.random())}
/>
{filteredData.length ? (
<Container>
<AutoSizer>
{({ height, width }) => {
let columns;
if (width >= 1000) {
columns = 5;
} else if (width < 1000 && width >= 450) {
columns = 3;
} else if (width < 450 && width >= 300) {
columns = 2;
} else {
columns = 1;
}
const timeStampList: TimeStampListItem[] = [];
let listItemIndex = 0;
let currentDate = -1;
filteredData.forEach((item, index) => {
if (
!isSameDay(
new Date(item.metadata.creationTime / 1000),
new Date(currentDate)
)
) {
currentDate = item.metadata.creationTime / 1000;
const dateTimeFormat = new Intl.DateTimeFormat('en-IN', {
weekday: 'short',
year: 'numeric',
month: 'long',
day: 'numeric',
});
timeStampList.push({
itemType: ITEM_TYPE.TIME,
date: dateTimeFormat.format(currentDate),
});
timeStampList.push({
itemType: ITEM_TYPE.TILE,
items: [item],
itemStartIndex: index,
});
listItemIndex = 1;
} else {
if (listItemIndex < columns) {
timeStampList[timeStampList.length - 1].items.push(item);
listItemIndex++;
} else {
listItemIndex = 1;
timeStampList.push({
itemType: ITEM_TYPE.TILE,
items: [item],
itemStartIndex: index,
});
}
}
});
return (
<List
itemSize={(index) =>
timeStampList[index].itemType === ITEM_TYPE.TIME
? 30
: 200
}
height={height}
width={width}
itemCount={timeStampList.length}
key={`${router.query.collection}-${columns}`}
>
{({ index, style }) => {
return (
<ListItem style={style}>
<ListContainer>
{timeStampList[index].itemType ===
ITEM_TYPE.TIME ? (
<DateContainer>
{timeStampList[index].date}
</DateContainer>
) : (
timeStampList[index].items.map((item, idx) => {
return getThumbnail(
filteredData,
timeStampList[index].itemStartIndex + idx
);
})
)}
</ListContainer>
</ListItem>
);
}}
</List>
);
}}
</AutoSizer>
<PhotoSwipe
isOpen={open}
items={filteredData}
options={options}
onClose={handleClose}
gettingData={getSlideData}
2021-01-20 12:05:04 +00:00
favItemIds={favItemIds}
setFavItemIds={setFavItemIds}
/>
</Container>
) : (
<DeadCenter>
2021-01-24 20:59:58 +00:00
<div>{constants.NOTHING_HERE}</div>
</DeadCenter>
)}
</>
);
}