Skip to content

Commit

Permalink
Merge branch 'next' into task/OV-27-add-studio-page
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksandra Nedashkivska committed Aug 21, 2024
2 parents 3fd0034 + 7c3d9b7 commit 2123895
Show file tree
Hide file tree
Showing 14 changed files with 249 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
"@chakra-ui/react": "2.8.2",
"@emotion/react": "11.13.0",
"@emotion/styled": "11.13.0",
"@fortawesome/free-solid-svg-icons": "6.6.0",
"@fortawesome/react-fontawesome": "0.2.2",
"@reduxjs/toolkit": "2.2.7",
"formik": "2.4.6",
"framer-motion": "11.3.24",
Expand Down
1 change: 1 addition & 0 deletions frontend/src/bundles/common/components/components.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export { Link } from './link/link.js';
export { Loader } from './loader/loader.js';
export { Overlay } from './overlay/overlay.js';
export { RouterProvider } from './router-provider/router-provider.js';
export { VideoModal } from './video-modal/video-modal.js';
export { DownloadIcon } from '@chakra-ui/icons';
export {
Box,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { VideoModalContent } from './video-modal-content/video-modal-content.js';
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { Tab } from './tab/tab.js';
export { VideoPreview } from './video-preview/video-preview.js';
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import { Icon, Tab as ChakraTab } from '@chakra-ui/react';
import { type IconDefinition } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';

type Properties = {
label: string;
icon: IconDefinition;
};

const Tab = ({ label, icon }: Properties): JSX.Element => {
return (
<ChakraTab
justifyContent="stretch"
borderRadius="10px"
textAlign="left"
_selected={{ backgroundColor: 'gray.300' }}
>
<Icon
as={FontAwesomeIcon}
icon={icon}
padding="5px"
height="16px"
/>{' '}
{label}
</ChakraTab>
);
};

export { Tab };
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { VideoPreview } from './video-preview.enum.js';
export { VideoSizeLabel } from './video-sizes.enum.js';
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const VideoPreview = {
PORTRAIT: 'portrait',
LANDSCAPE: 'landscape',
} as const;

export { VideoPreview };
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const VideoSizeLabel = {
PORTRAIT: '1080 x 1920',
LANDSCAPE: '1920 x 1080',
} as const;

export { VideoSizeLabel };
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { type VideoPreview } from './video-preview.type.js';
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
type VideoPreview = 'portrait' | 'landscape';

export { type VideoPreview };
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
import { Button, Flex, Icon, Text } from '@chakra-ui/react';
import { faPlay } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { useCallback, useState } from 'react';

import {
VideoPreview as VideoPreviewValues,
VideoSizeLabel,
} from './libs/enums/enums.js';
import { type VideoPreview as VideoPreviewType } from './libs/types/types.js';

const VideoPreview = (): JSX.Element => {
const [view, setView] = useState<VideoPreviewType>(
VideoPreviewValues.PORTRAIT,
);

const handleSetPortraitView = useCallback((): void => {
setView(VideoPreviewValues.PORTRAIT);
}, []);

const handleSetLandscapeView = useCallback((): void => {
setView(VideoPreviewValues.LANDSCAPE);
}, []);

return (
<Flex flexDirection="column" alignItems="center">
<Flex
width={view === VideoPreviewValues.PORTRAIT ? '250px' : '720px'}
height="444px"
borderWidth="1px"
borderColor="gray.300"
borderRadius="md"
justifyContent="center"
alignItems="center"
mb={4}
>
<Flex
flexDirection="column"
alignItems="center"
color="gray.400"
>
<Icon
as={FontAwesomeIcon}
icon={faPlay}
padding="5px"
height="16px"
/>
<Text color="gray.400">
{view === VideoPreviewValues.PORTRAIT
? VideoSizeLabel.PORTRAIT
: VideoSizeLabel.LANDSCAPE}
</Text>
</Flex>
</Flex>

<Flex justifyContent="center" gap={4}>
<Button
backgroundColor="brand.secondary.300"
color="white"
onMouseEnter={handleSetLandscapeView}
_hover={{ bg: 'brand.secondary.600' }}
>
Use landscape
</Button>
<Button
backgroundColor="brand.secondary.300"
color="white"
onMouseEnter={handleSetPortraitView}
_hover={{ bg: 'brand.secondary.600' }}
>
Use portrait
</Button>
</Flex>
</Flex>
);
};

export { VideoPreview };
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import { TabList, TabPanel, TabPanels, Tabs } from '@chakra-ui/react';
import { faPlay } from '@fortawesome/free-solid-svg-icons/faPlay';

import { Tab, VideoPreview } from './components/components.js';

const VideoModalContent = (): JSX.Element => {
return (
<Tabs orientation="vertical" variant="unstyled" height="full">
<TabList
backgroundColor="gray.100"
padding="20px 20px 20px"
minWidth="290px"
>
<Tab icon={faPlay} label="Start from scratch" />
</TabList>
<TabPanels
display="flex"
alignItems="center"
justifyContent="center"
>
<TabPanel>
<VideoPreview />
</TabPanel>
</TabPanels>
</Tabs>
);
};

export { VideoModalContent };
44 changes: 44 additions & 0 deletions frontend/src/bundles/common/components/video-modal/video-modal.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import {
Modal,
ModalBody,
ModalCloseButton,
ModalContent,
ModalHeader,
ModalOverlay,
} from '@chakra-ui/react';

import { VideoModalContent } from './components/components.js';

type Properties = {
isOpen: boolean;
onModalClose: () => void;
};

const VideoModal = ({ isOpen, onModalClose }: Properties): JSX.Element => {
return (
<Modal isOpen={isOpen} onClose={onModalClose} isCentered>
<ModalOverlay />
<ModalContent
borderRadius="17px"
maxWidth="90%"
maxHeight="90%"
height="full"
overflow="auto"
>
<ModalHeader
backgroundColor="gray.100"
width="290px"
padding="33px 44px 0px"
>
Create video
</ModalHeader>
<ModalCloseButton margin="20px" />
<ModalBody padding="0px">
<VideoModalContent />
</ModalBody>
</ModalContent>
</Modal>
);
};

export { VideoModal };
45 changes: 45 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2123895

Please sign in to comment.