diff --git a/tailwind.common.js b/tailwind.common.js index 48d75b22ec..b1f8e93dac 100644 --- a/tailwind.common.js +++ b/tailwind.common.js @@ -85,6 +85,9 @@ module.exports = { fontWeight: { inherit: "inherit", }, + backgroundColor: { + transparent: 'transparent', + }, }, }, plugins: [], diff --git a/web-components/src/components/atoms/PlayButton/PlayButton.stories.tsx b/web-components/src/components/atoms/PlayButton/PlayButton.stories.tsx deleted file mode 100644 index 808958bf8a..0000000000 --- a/web-components/src/components/atoms/PlayButton/PlayButton.stories.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import { Meta, StoryObj } from '@storybook/react'; - -import { PlayButton } from './PlayButton'; - -export default { - title: 'atoms/PlayButton', - component: PlayButton, -} as Meta; - -type Story = StoryObj; -export const Basic: Story = { - render: args => , -}; - -Basic.args = {}; diff --git a/web-components/src/components/atoms/PlayButton/PlayButton.tsx b/web-components/src/components/atoms/PlayButton/PlayButton.tsx deleted file mode 100644 index a0a0835a71..0000000000 --- a/web-components/src/components/atoms/PlayButton/PlayButton.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import { cn } from '../../../utils/styles/cn'; -import PlayIcon from '../../icons/PlayIcon'; -import { usePlayButtonStyles } from './PlayButton.styles'; - -type Props = { className?: string }; - -const PlayButton = ({ className }: Props) => { - const { classes: styles } = usePlayButtonStyles(); - return ( -
- -
- ); -}; - -export { PlayButton }; diff --git a/web-components/src/components/atoms/PlayPauseButton/PlayPauseButton.stories.tsx b/web-components/src/components/atoms/PlayPauseButton/PlayPauseButton.stories.tsx new file mode 100644 index 0000000000..c9fa480af9 --- /dev/null +++ b/web-components/src/components/atoms/PlayPauseButton/PlayPauseButton.stories.tsx @@ -0,0 +1,26 @@ +import { Meta, StoryObj } from '@storybook/react'; + +import { PlayPauseButton } from './PlayPauseButton'; + +export default { + title: 'atoms/PlayPauseButton', + component: PlayPauseButton, +} as Meta; + +type Story = StoryObj; + +export const Play: Story = { + render: args => , +}; + +Play.args = { + playing: false, +}; + +export const Pause: Story = { + render: args => , +}; + +Pause.args = { + playing: true, +}; diff --git a/web-components/src/components/atoms/PlayButton/PlayButton.styles.ts b/web-components/src/components/atoms/PlayPauseButton/PlayPauseButton.styles.ts similarity index 84% rename from web-components/src/components/atoms/PlayButton/PlayButton.styles.ts rename to web-components/src/components/atoms/PlayPauseButton/PlayPauseButton.styles.ts index 72f8dc1825..c9f973f765 100644 --- a/web-components/src/components/atoms/PlayButton/PlayButton.styles.ts +++ b/web-components/src/components/atoms/PlayPauseButton/PlayPauseButton.styles.ts @@ -1,8 +1,8 @@ import { Theme } from '@mui/material/styles'; import { makeStyles } from 'tss-react/mui'; -export const usePlayButtonStyles = makeStyles()((theme: Theme) => ({ - play: { +export const usePlayPauseButtonStyles = makeStyles()((theme: Theme) => ({ + button: { background: theme.palette.primary.main, borderRadius: '50%', width: theme.spacing(17.5), diff --git a/web-components/src/components/atoms/PlayPauseButton/PlayPauseButton.tsx b/web-components/src/components/atoms/PlayPauseButton/PlayPauseButton.tsx new file mode 100644 index 0000000000..55fae99108 --- /dev/null +++ b/web-components/src/components/atoms/PlayPauseButton/PlayPauseButton.tsx @@ -0,0 +1,32 @@ +import { cn } from '../../../utils/styles/cn'; +import { PauseIcon } from '../../icons/PauseIcon'; +import PlayIcon from '../../icons/PlayIcon'; +import { usePlayPauseButtonStyles } from './PlayPauseButton.styles'; + +type Props = { + className?: string; + playing?: boolean; + handlePlayPause?: () => void; +}; + +export const PlayPauseButton = ({ + className, + playing = false, + handlePlayPause, +}: Props) => { + const { classes: styles } = usePlayPauseButtonStyles(); + return ( + + ); +}; diff --git a/web-components/src/components/cards/ArticleCard/ArticleCard.tsx b/web-components/src/components/cards/ArticleCard/ArticleCard.tsx index 4fdf95c34c..200edc8f03 100644 --- a/web-components/src/components/cards/ArticleCard/ArticleCard.tsx +++ b/web-components/src/components/cards/ArticleCard/ArticleCard.tsx @@ -1,6 +1,6 @@ import { Box } from '@mui/material'; -import { PlayButton } from '../../atoms/PlayButton/PlayButton'; +import { PlayPauseButton } from '../../atoms/PlayPauseButton/PlayPauseButton'; import OutlinedButton from '../../buttons/OutlinedButton'; import { Body } from '../../typography'; import MediaCard from '../MediaCard/MediaCard'; @@ -56,7 +56,7 @@ export default function ArticleCard({ elevation={1} draftText={draftText} > - {play && } + {play && } {author} diff --git a/web-components/src/components/icons/PauseIcon.tsx b/web-components/src/components/icons/PauseIcon.tsx new file mode 100644 index 0000000000..12ad4c5bb5 --- /dev/null +++ b/web-components/src/components/icons/PauseIcon.tsx @@ -0,0 +1,21 @@ +export const PauseIcon = (props: React.SVGProps) => ( + + + + + + +); diff --git a/web-components/src/components/icons/icons.stories.tsx b/web-components/src/components/icons/icons.stories.tsx index 076cf42369..91b6f7211f 100644 --- a/web-components/src/components/icons/icons.stories.tsx +++ b/web-components/src/components/icons/icons.stories.tsx @@ -68,6 +68,7 @@ import { OpenInNewIcon } from './OpenInNewIcon'; import OrganizationIcon from './OrganizationIcon'; import { OtherDocumentsIcon } from './OtherDocumentsIcon'; import OutlinedCheckIcon from './OutlinedCheckIcon'; +import { PauseIcon } from './PauseIcon'; import { PdfFileIcon } from './PdfFileIcon'; import PendingIcon from './PendingIcon'; import PhoneIcon from './PhoneIcon'; @@ -132,9 +133,9 @@ import VerifiedIcon from './VerifiedIcon'; import { VideoIcon } from './VideoIcon'; import WalletErrorIcon from './WalletErrorIcon'; import { WalletIcon } from './WalletIcon'; +import WarningIcon from './WarningIcon'; import WhitepaperIcon from './WhitepaperIcon'; import ZoomIcon from './ZoomIcon'; -import WarningIcon from './WarningIcon'; export default { title: 'Icons', @@ -306,6 +307,7 @@ export const allIcons = (): JSX.Element => ( /> } label="PinIcon" /> } label="PlayIcon" /> + } label="PauseIcon" /> } label="PlusIcon" /> } label="PointerIcon" /> } label="PrefinanceIcon" /> diff --git a/web-components/src/components/inputs/new/FileDrop/FileDrop.File.tsx b/web-components/src/components/inputs/new/FileDrop/FileDrop.File.tsx index 69661f9a0c..badd3d1503 100644 --- a/web-components/src/components/inputs/new/FileDrop/FileDrop.File.tsx +++ b/web-components/src/components/inputs/new/FileDrop/FileDrop.File.tsx @@ -9,9 +9,9 @@ import { useTheme, } from '@mui/material'; import { Feature } from 'geojson'; +import { PlayPauseButton } from 'web-components/src/components/atoms/PlayPauseButton/PlayPauseButton'; import { cn } from '../../../../utils/styles/cn'; -import { PlayButton } from '../../../atoms/PlayButton/PlayButton'; import ArrowDownIcon from '../../../icons/ArrowDownIcon'; import { DragIcon } from '../../../icons/DragIcon'; import EditIcon from '../../../icons/EditIcon'; @@ -124,7 +124,7 @@ export const FileDropFile = ({ 'absolute top-0 left-0 bg-grey-700 rounded-[5px] overflow-hidden', )} /> - + ) : isPdf(mimeType) ? ( {allImages || isImage(item?.mimeType) ? ( - ) : isVideo(item?.mimeType) ? ( + ) : isVideo(item?.mimeType) && item?.url ? ( - - - - + ) : ( diff --git a/web-components/src/components/organisms/PostFiles/PostFiles.Drawer.tsx b/web-components/src/components/organisms/PostFiles/PostFiles.Drawer.tsx index 3be02181a5..e344536c7c 100644 --- a/web-components/src/components/organisms/PostFiles/PostFiles.Drawer.tsx +++ b/web-components/src/components/organisms/PostFiles/PostFiles.Drawer.tsx @@ -2,10 +2,10 @@ import { useEffect, useRef, useState } from 'react'; import ReactPlayer from 'react-player/es6'; import { Slide } from '@mui/material'; import { Point } from 'geojson'; +import { PlayPauseButton } from 'web-components/src/components/atoms/PlayPauseButton/PlayPauseButton'; import { UseStateSetter } from '../../../types/react/useState'; import { cn } from '../../../utils/styles/cn'; -import { PlayButton } from '../../atoms/PlayButton/PlayButton'; import BreadcrumbIcon from '../../icons/BreadcrumbIcon'; import { Image } from '../../image'; import { @@ -113,7 +113,7 @@ const PostFilesDrawer = ({ width="100%" height="100%" /> - + )} diff --git a/web-components/src/components/organisms/PostFiles/components/FilePreview.tsx b/web-components/src/components/organisms/PostFiles/components/FilePreview.tsx index 5f42009d1c..777edb9d1a 100644 --- a/web-components/src/components/organisms/PostFiles/components/FilePreview.tsx +++ b/web-components/src/components/organisms/PostFiles/components/FilePreview.tsx @@ -1,8 +1,6 @@ -import ReactPlayer from 'react-player/es6'; import { Box } from '@mui/material'; import { cn } from '../../../../utils/styles/cn'; -import { PlayButton } from '../../../atoms/PlayButton/PlayButton'; import { isAudio, isCsv, @@ -18,6 +16,7 @@ import { PostFile } from '../PostFiles'; import { getColors } from '../PostFiles.utils'; import { PdfPreview } from './PdfPreview'; import { TextOrIconFilePreview } from './TextOrIconFilePreview'; +import { VideoPreview } from './VideoPreview'; export type FileToPreview = Pick; type Props = { @@ -66,18 +65,8 @@ const FilePreview = ({ linearGradientClassName, )} /> - {video ? ( - <> - - - - - + {video && url ? ( + ) : isPdf(mimeType) ? ( { + const [playing, setPlaying] = useState(false); + const [hovered, setHovered] = useState(false); + + const handlePlayPause = () => { + setPlaying(!playing); + }; + const handleMouseEnter = () => { + setHovered(true); + }; + const handleMouseLeave = () => { + setHovered(false); + }; + + return ( +
+ setPlaying(false)} + /> +
+ +
+
+ ); +};