-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Github Actions
committed
Nov 1, 2024
1 parent
37cc246
commit 8c0fa47
Showing
3 changed files
with
365 additions
and
365 deletions.
There are no files selected for viewing
370 changes: 185 additions & 185 deletions
370
src/components/ModalsContainer/BriefDescriptionModal/BriefDescriptionContent/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,185 +1,185 @@ | ||
import { Button } from '@mui/material' | ||
import clsx from 'clsx' | ||
import { FC, useCallback, useEffect, useRef, useState } from 'react' | ||
import Markdown from 'react-markdown' | ||
import styled from 'styled-components' | ||
import BubbleChartIcon from '~/components/Icons/BubbleChartIcon' | ||
import PauseIcon from '~/components/Icons/PauseIcon' | ||
import SoundIcon from '~/components/Icons/SoundIcon' | ||
import { Flex } from '~/components/common/Flex' | ||
import { Text } from '~/components/common/Text' | ||
import { useAppStore } from '~/stores/useAppStore' | ||
import { useDataStore } from '~/stores/useDataStore' | ||
import { useModal } from '~/stores/useModalStore' | ||
import { useUserStore } from '~/stores/useUserStore' | ||
import { Trending } from '~/types' | ||
import { colors } from '~/utils' | ||
|
||
type Props = { | ||
trend: Trending | ||
onClose: () => void | ||
} | ||
|
||
export const BriefDescriptionContent: FC<Props> = ({ trend, onClose }) => { | ||
const [isPlaying, setIsPlaying] = useState(false) | ||
const { close } = useModal('briefDescription') | ||
|
||
const { currentPlayingAudio, setCurrentPlayingAudio } = useAppStore((s) => s) | ||
|
||
const [setBudget] = useUserStore((s) => [s.setBudget]) | ||
const { fetchData, setAbortRequests } = useDataStore((s) => s) | ||
|
||
const audioRef = useRef<HTMLAudioElement | null>(null) | ||
|
||
const handleLearnMore = async () => { | ||
handleClose() | ||
await fetchData(setBudget, setAbortRequests, trend.tldr_topic ?? trend.name) | ||
} | ||
|
||
const handleClose = useCallback(() => { | ||
onClose() | ||
close() | ||
}, [onClose, close]) | ||
|
||
const handleToggle = () => { | ||
if (audioRef.current) { | ||
if (isPlaying) { | ||
audioRef.current.pause() | ||
} else { | ||
audioRef.current.play() | ||
} | ||
|
||
setIsPlaying(!isPlaying) | ||
} | ||
} | ||
|
||
const togglePlay = () => { | ||
const isBackgroundAudioPlaying = !currentPlayingAudio?.current?.paused | ||
|
||
if (isBackgroundAudioPlaying) { | ||
currentPlayingAudio?.current?.pause() | ||
setCurrentPlayingAudio(null) | ||
} | ||
|
||
if (currentPlayingAudio?.current?.src !== trend.audio_EN || !isBackgroundAudioPlaying) { | ||
handleToggle() | ||
} | ||
} | ||
|
||
useEffect(() => { | ||
const audioElement = audioRef.current | ||
|
||
const onAudioPlaybackComplete = () => { | ||
setIsPlaying(false) | ||
setCurrentPlayingAudio(null) | ||
} | ||
|
||
if (audioElement) { | ||
audioElement.addEventListener('ended', onAudioPlaybackComplete) | ||
} | ||
|
||
return () => { | ||
if (audioElement) { | ||
audioElement.removeEventListener('ended', onAudioPlaybackComplete) | ||
} | ||
} | ||
}, [setCurrentPlayingAudio]) | ||
|
||
const showPlayBtn = | ||
(currentPlayingAudio?.current?.src === trend.audio_EN && !currentPlayingAudio?.current?.paused) || isPlaying | ||
|
||
return ( | ||
<> | ||
{trend.audio_EN ? ( | ||
<> | ||
<StyledHeader> | ||
<StyleButton | ||
className={clsx('default', { play: showPlayBtn })} | ||
onClick={togglePlay} | ||
size="small" | ||
startIcon={showPlayBtn ? <PauseIcon /> : <SoundIcon />} | ||
> | ||
{showPlayBtn ? 'Pause' : 'Listen'} | ||
</StyleButton> | ||
|
||
<StyleButton className="default" onClick={handleLearnMore} size="small" startIcon={<BubbleChartIcon />}> | ||
Learn More | ||
</StyleButton> | ||
</StyledHeader> | ||
<StyledAudio ref={audioRef} src={trend.audio_EN}> | ||
<track kind="captions" /> | ||
</StyledAudio> | ||
</> | ||
) : null} | ||
<Flex mt={75}> | ||
<Title>{trend.tldr_topic ?? trend.name}</Title> | ||
<ScrollableContent> | ||
<Flex> | ||
<StyledText>{trend.tldr && <Markdown>{trend.tldr}</Markdown>}</StyledText> | ||
</Flex> | ||
</ScrollableContent> | ||
</Flex> | ||
</> | ||
) | ||
} | ||
|
||
const ScrollableContent = styled.div` | ||
max-height: 310px; | ||
overflow-y: auto; | ||
margin: 8px 0; | ||
padding: 0 20px; | ||
` | ||
|
||
const StyledText = styled(Text)` | ||
font-size: 18px; | ||
font-weight: 400; | ||
font-family: 'Barlow'; | ||
* { | ||
all: revert; | ||
} | ||
` | ||
|
||
const Title = styled(Text)` | ||
font-weight: 600; | ||
font-size: 20px; | ||
padding: 0 20px; | ||
` | ||
|
||
const StyledAudio = styled.audio` | ||
display: none; | ||
` | ||
|
||
const StyleButton = styled(Button)` | ||
&& { | ||
&.default { | ||
font-size: 13px; | ||
font-weight: 500; | ||
font-family: Barlow; | ||
padding: 12px, 16px, 12px, 10px; | ||
color: ${colors.white}; | ||
&:hover { | ||
color: ${colors.GRAY3}; | ||
} | ||
&.play { | ||
color: ${colors.BG3}; | ||
background-color: ${colors.white}; | ||
} | ||
} | ||
} | ||
` | ||
|
||
const StyledHeader = styled(Flex)` | ||
top: 0px; | ||
position: absolute; | ||
border-radius: 16px 16px 0px 0px; | ||
padding: 0px 12px; | ||
width: 100%; | ||
height: 60px; | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
background-color: ${colors.BG3}; | ||
gap: 10px; | ||
` | ||
import { Button } from '@mui/material' | ||
import clsx from 'clsx' | ||
import { FC, useCallback, useEffect, useRef, useState } from 'react' | ||
import Markdown from 'react-markdown' | ||
import styled from 'styled-components' | ||
import BubbleChartIcon from '~/components/Icons/BubbleChartIcon' | ||
import PauseIcon from '~/components/Icons/PauseIcon' | ||
import SoundIcon from '~/components/Icons/SoundIcon' | ||
import { Flex } from '~/components/common/Flex' | ||
import { Text } from '~/components/common/Text' | ||
import { useAppStore } from '~/stores/useAppStore' | ||
import { useDataStore } from '~/stores/useDataStore' | ||
import { useModal } from '~/stores/useModalStore' | ||
import { useUserStore } from '~/stores/useUserStore' | ||
import { Trending } from '~/types' | ||
import { colors } from '~/utils' | ||
|
||
type Props = { | ||
trend: Trending | ||
onClose: () => void | ||
} | ||
|
||
export const BriefDescriptionContent: FC<Props> = ({ trend, onClose }) => { | ||
const [isPlaying, setIsPlaying] = useState(false) | ||
const { close } = useModal('briefDescription') | ||
|
||
const { currentPlayingAudio, setCurrentPlayingAudio } = useAppStore((s) => s) | ||
|
||
const [setBudget] = useUserStore((s) => [s.setBudget]) | ||
const { fetchData, setAbortRequests } = useDataStore((s) => s) | ||
|
||
const audioRef = useRef<HTMLAudioElement | null>(null) | ||
|
||
const handleLearnMore = async () => { | ||
handleClose() | ||
await fetchData(setBudget, setAbortRequests, trend.tldr_topic ?? trend.name) | ||
} | ||
|
||
const handleClose = useCallback(() => { | ||
onClose() | ||
close() | ||
}, [onClose, close]) | ||
|
||
const handleToggle = () => { | ||
if (audioRef.current) { | ||
if (isPlaying) { | ||
audioRef.current.pause() | ||
} else { | ||
audioRef.current.play() | ||
} | ||
|
||
setIsPlaying(!isPlaying) | ||
} | ||
} | ||
|
||
const togglePlay = () => { | ||
const isBackgroundAudioPlaying = !currentPlayingAudio?.current?.paused | ||
|
||
if (isBackgroundAudioPlaying) { | ||
currentPlayingAudio?.current?.pause() | ||
setCurrentPlayingAudio(null) | ||
} | ||
|
||
if (currentPlayingAudio?.current?.src !== trend.audio_EN || !isBackgroundAudioPlaying) { | ||
handleToggle() | ||
} | ||
} | ||
|
||
useEffect(() => { | ||
const audioElement = audioRef.current | ||
|
||
const onAudioPlaybackComplete = () => { | ||
setIsPlaying(false) | ||
setCurrentPlayingAudio(null) | ||
} | ||
|
||
if (audioElement) { | ||
audioElement.addEventListener('ended', onAudioPlaybackComplete) | ||
} | ||
|
||
return () => { | ||
if (audioElement) { | ||
audioElement.removeEventListener('ended', onAudioPlaybackComplete) | ||
} | ||
} | ||
}, [setCurrentPlayingAudio]) | ||
|
||
const showPlayBtn = | ||
(currentPlayingAudio?.current?.src === trend.audio_EN && !currentPlayingAudio?.current?.paused) || isPlaying | ||
|
||
return ( | ||
<> | ||
{trend.audio_EN ? ( | ||
<> | ||
<StyledHeader> | ||
<StyleButton | ||
className={clsx('default', { play: showPlayBtn })} | ||
onClick={togglePlay} | ||
size="small" | ||
startIcon={showPlayBtn ? <PauseIcon /> : <SoundIcon />} | ||
> | ||
{showPlayBtn ? 'Pause' : 'Listen'} | ||
</StyleButton> | ||
|
||
<StyleButton className="default" onClick={handleLearnMore} size="small" startIcon={<BubbleChartIcon />}> | ||
Learn More | ||
</StyleButton> | ||
</StyledHeader> | ||
<StyledAudio ref={audioRef} src={trend.audio_EN}> | ||
<track kind="captions" /> | ||
</StyledAudio> | ||
</> | ||
) : null} | ||
<Flex mt={75}> | ||
<Title>{trend.tldr_topic ?? trend.name}</Title> | ||
<ScrollableContent> | ||
<Flex> | ||
<StyledText>{trend.tldr && <Markdown>{trend.tldr}</Markdown>}</StyledText> | ||
</Flex> | ||
</ScrollableContent> | ||
</Flex> | ||
</> | ||
) | ||
} | ||
|
||
const ScrollableContent = styled.div` | ||
max-height: 310px; | ||
overflow-y: auto; | ||
margin: 8px 0; | ||
padding: 0 20px; | ||
` | ||
|
||
const StyledText = styled(Text)` | ||
font-size: 18px; | ||
font-weight: 400; | ||
font-family: 'Barlow'; | ||
* { | ||
all: revert; | ||
} | ||
` | ||
|
||
const Title = styled(Text)` | ||
font-weight: 600; | ||
font-size: 20px; | ||
padding: 0 20px; | ||
` | ||
|
||
const StyledAudio = styled.audio` | ||
display: none; | ||
` | ||
|
||
const StyleButton = styled(Button)` | ||
&& { | ||
&.default { | ||
font-size: 13px; | ||
font-weight: 500; | ||
font-family: Barlow; | ||
padding: 12px, 16px, 12px, 10px; | ||
color: ${colors.white}; | ||
&:hover { | ||
color: ${colors.GRAY3}; | ||
} | ||
&.play { | ||
color: ${colors.BG3}; | ||
background-color: ${colors.white}; | ||
} | ||
} | ||
} | ||
` | ||
|
||
const StyledHeader = styled(Flex)` | ||
top: 0px; | ||
position: absolute; | ||
border-radius: 16px 16px 0px 0px; | ||
padding: 0px 12px; | ||
width: 100%; | ||
height: 60px; | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
background-color: ${colors.BG3}; | ||
gap: 10px; | ||
` |
Oops, something went wrong.