You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.0 KiB
TypeScript
73 lines
2.0 KiB
TypeScript
import React, { useCallback, useState } from 'react';
|
|
|
|
import { getTimerBucketIcon } from '../../util/timer';
|
|
import { useInterval } from '../../hooks/useInterval';
|
|
import styled, { useTheme } from 'styled-components';
|
|
import { SessionIcon } from '../session/icon';
|
|
|
|
type Props = {
|
|
expirationLength: number;
|
|
expirationTimestamp: number | null;
|
|
isCorrectSide: boolean;
|
|
};
|
|
|
|
const ExpireTimerCount = styled.div<{
|
|
color: string;
|
|
}>`
|
|
margin-inline-start: 6px;
|
|
font-size: 11px;
|
|
line-height: 16px;
|
|
letter-spacing: 0.3px;
|
|
text-transform: uppercase;
|
|
user-select: none;
|
|
color: ${props => props.color};
|
|
`;
|
|
|
|
const ExpireTimerBucket = styled.div`
|
|
margin-inline-start: 6px;
|
|
font-size: 11px;
|
|
line-height: 16px;
|
|
letter-spacing: 0.3px;
|
|
text-transform: uppercase;
|
|
user-select: none;
|
|
color: ${props => props.theme.colors.textColor};
|
|
`;
|
|
|
|
export const ExpireTimer = (props: Props) => {
|
|
const { expirationLength, expirationTimestamp, isCorrectSide } = props;
|
|
|
|
const initialTimeLeft = Math.max(Math.round(((expirationTimestamp || 0) - Date.now()) / 1000), 0);
|
|
const [timeLeft, setTimeLeft] = useState(initialTimeLeft);
|
|
const theme = useTheme();
|
|
|
|
const update = useCallback(() => {
|
|
if (expirationTimestamp) {
|
|
const newTimeLeft = Math.max(Math.round((expirationTimestamp - Date.now()) / 1000), 0);
|
|
if (newTimeLeft !== timeLeft) {
|
|
setTimeLeft(newTimeLeft);
|
|
}
|
|
}
|
|
}, [expirationTimestamp, timeLeft, setTimeLeft]);
|
|
|
|
const updateFrequency = 500;
|
|
|
|
if (!(isCorrectSide && expirationLength && expirationTimestamp)) {
|
|
return null;
|
|
}
|
|
|
|
useInterval(update, updateFrequency);
|
|
|
|
const expireTimerColor = theme.colors.textColor;
|
|
|
|
if (timeLeft <= 60) {
|
|
return <ExpireTimerCount color={expireTimerColor}>{timeLeft}</ExpireTimerCount>;
|
|
}
|
|
const bucket = getTimerBucketIcon(expirationTimestamp, expirationLength);
|
|
|
|
return (
|
|
<ExpireTimerBucket>
|
|
<SessionIcon iconType={bucket} iconSize={'tiny'} iconColor={expireTimerColor} theme={theme} />
|
|
</ExpireTimerBucket>
|
|
);
|
|
};
|