Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[C-MAIN][J-TB][C-TB] 각종 디자인 수정, 에러 수정 #948

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions src/app/panel/MainPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import SearchOptionPanel, {
InfinityScrollPanel,
} from '@/app/panel/main-page/MainPanel'
import SelectSort from '@/app/panel/main-page/SelectSort'
import useMedia from '@/hook/useMedia'

export interface BeforeInstallPromptEvent extends Event {
readonly platforms: string[]
Expand Down Expand Up @@ -84,6 +85,7 @@ const MainPage = ({ initData }: { initData: IPagination<IPost[]> }) => {
undefined,
)
const [init, setInit] = useState<boolean>(true)
const { isTablet } = useMedia()

useEffect(() => {
if (keyword !== '') {
Expand Down Expand Up @@ -114,12 +116,7 @@ const MainPage = ({ initData }: { initData: IPagination<IPost[]> }) => {
}&tag=${detailOption.tag}`

const isInit =
page == 1 &&
type === 'STUDY' &&
!sort &&
detailOption.isInit &&
keyword == '' &&
init
page == 1 && !sort && detailOption.isInit && keyword == '' && init

const { data: favoriteData } = useSWR<IFavorite[]>(
isInit && isLogin
Expand Down Expand Up @@ -190,6 +187,7 @@ const MainPage = ({ initData }: { initData: IPagination<IPost[]> }) => {

const handleType = useCallback(
(value: ProjectType) => {
setInit(false)
setType(value)
//type이 변경될 경우 초기화
setPage(1)
Expand Down Expand Up @@ -218,11 +216,13 @@ const MainPage = ({ initData }: { initData: IPagination<IPost[]> }) => {
setPage(1)
}, [])

const noContent = error
? '에러 발생'
: content?.length == 0
? '데이터가 없습니다'
: null
const noContent = !isLoading
? error
? '에러 발생'
: content?.length == 0
? '데이터가 없습니다'
: null
: null

return (
<>
Expand All @@ -233,7 +233,6 @@ const MainPage = ({ initData }: { initData: IPagination<IPost[]> }) => {
{keyword === '' ? (
<>
<MainBanner />

<Box marginY={'0.5rem'}>
<SelectType type={type} setType={handleType} />
</Box>
Expand Down Expand Up @@ -317,7 +316,6 @@ const MainPage = ({ initData }: { initData: IPagination<IPost[]> }) => {
{keyword === '' ? (
<>
<MainBanner />

<Stack direction={'row'} justifyContent={'space-between'}>
<SelectType type={type} setType={handleType} />
<Tutorial
Expand Down Expand Up @@ -385,11 +383,13 @@ const MainPage = ({ initData }: { initData: IPagination<IPost[]> }) => {
</>
)}
</Stack>
<Stack sx={sideMenuStyle}>
<MainProfile />
<MainShowcase />
<MainCarousel />
</Stack>
{!isTablet && (
<Stack sx={sideMenuStyle}>
<MainProfile />
<MainShowcase />
<MainCarousel />
</Stack>
)}
</Stack>
</Container>
</div>
Expand Down
13 changes: 10 additions & 3 deletions src/app/panel/layout-panel/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ import useAuthStore from '@/states/useAuthStore'
* - 오른쪽 아이콘 (있을 수도 있고 없을 수도 있음)
*/

const Header = ({ pathname }: { pathname?: string }) => {
const Header = ({
pathname,
backAction,
}: {
pathname?: string
backAction?: () => void
}) => {
const theme = useTheme()
const mobileHeader = {
...style.mobileHeader,
Expand Down Expand Up @@ -64,7 +70,7 @@ const Header = ({ pathname }: { pathname?: string }) => {
} else {
setTitle('')
}
}, [pathname])
}, [keyword, pathname])
const { headerTitle } = useHeaderStore()

// 타이틀만 보여주고 싶은 경우 (뒤로 가기 버튼이 보이지 않았으면 하는 경우)
Expand Down Expand Up @@ -94,7 +100,8 @@ const Header = ({ pathname }: { pathname?: string }) => {
<Stack sx={style.mobileHeaderStack}>
<IconButton
onClick={() => {
if (pathname === '/' && keyword !== '') {
if (backAction) backAction()
else if (pathname === '/' && keyword !== '') {
router.replace(`?type=${type}`)
} else router.back()
}}
Expand Down
5 changes: 4 additions & 1 deletion src/app/panel/layout-panel/MobileNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ const MobileNav = () => {
useEffect(() => {
if (pathname === '/') {
setValue('home')
} else if (pathname.startsWith('/team-list')) {
} else if (
pathname.startsWith('/team-list') ||
pathname.startsWith('/teams')
) {
setValue('team-list')
} else if (pathname.startsWith('/hitchhiking')) {
setValue('hitchhiking')
Expand Down
2 changes: 1 addition & 1 deletion src/app/panel/layout-panel/Nav.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const navContainerStyle = {
overflow: 'hidden',
zIndex: 1300,
backgroundColor: 'background.primary',
flexDirection: 'column',
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
width: '100%',
Expand Down
29 changes: 18 additions & 11 deletions src/app/panel/layout-panel/PcNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
Avatar,
BottomNavigation,
BottomNavigationAction,
Box,
Button,
Container,
IconButton,
Expand Down Expand Up @@ -45,22 +46,28 @@ const PcNav = () => {
useEffect(() => {
if (pathname === '/') {
setValue('home')
} else if (pathname.includes('/team-list')) {
} else if (
pathname.startsWith('/team-list') ||
pathname.startsWith('/teams')
) {
setValue('team-list')
} else if (pathname.includes('/hitchhiking')) {
} else if (pathname.startsWith('/hitchhiking')) {
setValue('hitchhiking')
} else if (pathname.includes('/showcase')) {
} else if (pathname.startsWith('/showcase')) {
setValue('showcase')
}
}, [pathname])

return (
<Container sx={navContainerStyle}>
<Stack
direction={'row'}
maxWidth={1280}
width="100%"
justifyContent={'space-between'}
<Box sx={navContainerStyle}>
<Container
sx={{
display: 'flex',
flexDirection: 'row',
justifyContent: 'space-between',
width: '100%',
}}
component={'nav'}
>
<Stack direction={'row'} gap={'1.25rem'}>
<Stack alignItems={'center'} justifyContent={'center'}>
Expand Down Expand Up @@ -201,8 +208,8 @@ const PcNav = () => {
)}
</Link>
</Stack>
</Stack>
</Container>
</Container>
</Box>
)
}

Expand Down
2 changes: 2 additions & 0 deletions src/app/panel/main-page/SearchButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { useMediaQuery, IconButton, Modal, Box } from '@mui/material'
import useModal from '@/hook/useModal'
import SearchBody from '../../search/panel/SearchBody'
import { SearchIcon } from '@/icons'
import Header from '@/app/panel/layout-panel/Header'

const StyleMobileSearch = {
position: 'absolute' as 'absolute',
Expand Down Expand Up @@ -58,6 +59,7 @@ const SearchMobile = () => {
aria-describedby="modal-description"
>
<Box sx={StyleMobileSearch}>
<Header backAction={closeModal} />
<SearchBody onClose={closeModal} />
</Box>
</Modal>
Expand Down
22 changes: 12 additions & 10 deletions src/app/recruit/[id]/panel/RecruitDetailPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ const RecruitDetailPage = ({ data, id }: { data: IPostDetail; id: string }) => {
favorite={favoriteData}
title={content?.title}
content={content?.content}
status={content?.status}
me={me}
/>
</Stack>
Expand Down Expand Up @@ -121,7 +122,7 @@ const RecruitDetailPage = ({ data, id }: { data: IPostDetail; id: string }) => {

/** 모바일 뷰 **/
return (
<Stack height={'100%'} padding={'2.5rem'}>
<Stack height={'100%'} padding={'2.25rem'}>
<Stack gap={'1.5rem'} width={'100%'}>
<Stack>
<RecruitQuickMenu
Expand All @@ -130,21 +131,22 @@ const RecruitDetailPage = ({ data, id }: { data: IPostDetail; id: string }) => {
title={content?.title}
content={content?.content}
me={me}
status={content?.status}
/>
<RecruitInfo data={content} type={type} />
</Stack>
<Divider />
<RecruitDetailContent data={content} type={type} roleList={roleList} />
{isClient && !me && (
<ApplyFormButton
id={id}
type={type}
roleList={roleList}
data={content}
status={content.status}
/>
)}
</Stack>
{isClient && !me && (
<ApplyFormButton
id={id}
type={type}
roleList={roleList}
data={content}
status={content.status}
/>
)}
</Stack>
)
}
Expand Down
1 change: 1 addition & 0 deletions src/app/recruit/[id]/panel/RecruitInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const RecruitInfo = ({ data, type, children, pc }: RecruitInfoProps) => {
<Stack direction={'row'} gap={4} marginBottom={6}>
<RecruitImage
image={data?.image}
maxWidth={'40vw'}
width={'18.5rem'}
height={'12.5rem'}
/>
Expand Down
3 changes: 3 additions & 0 deletions src/app/recruit/[id]/panel/RecruitInfoElement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,11 @@ export const RecruitImage = ({
image,
width,
height,
maxWidth,
}: {
image: string
width: string
maxWidth?: string
height: string
}) => {
return (
Expand All @@ -57,6 +59,7 @@ export const RecruitImage = ({
alt="main_image"
width={width}
height={height}
maxWidth={maxWidth}
component={'img'}
borderRadius={'0.13rem'}
sx={{
Expand Down
3 changes: 3 additions & 0 deletions src/app/recruit/[id]/panel/RecruitQuickMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ const RecruitQuickMenu = ({
title,
content,
me,
status,
}: {
favorite: boolean | undefined
recruit_id: number
title: string
content: string
me?: boolean
status: string
}) => {
const path = usePathname()
const type = useSearchParams().get('type')
Expand Down Expand Up @@ -92,6 +94,7 @@ const RecruitQuickMenu = ({
action={() => router.push(`/recruit/${recruit_id}/edit`)}
icon={<WriteIcon sx={style.recruitMenuIcon} />}
text={'수정'}
disabled={status === 'DONE'}
/>
)}
{me && (
Expand Down
2 changes: 0 additions & 2 deletions src/app/search/panel/SearchBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import { MouseEvent, useState } from 'react'
import { Controller, useForm } from 'react-hook-form'
import { useRouter } from 'next/navigation'
import SearchIcon from '@mui/icons-material/Search'
import Header from '@/app/panel/layout-panel/Header'

const SearchButton = () => {
return (
Expand Down Expand Up @@ -112,7 +111,6 @@ export default function SearchBody({ onClose }: SearchBodyProps) {
return (
<>
<Stack sx={{ m: 0, p: 0 }}>
{!isPc && <Header />}
<Box sx={isPc ? StyleSeachPc : StyleSeachMobile}>
<ToggleButtonGroup onChange={handleChanged} exclusive value={type}>
<ToggleButton
Expand Down
4 changes: 3 additions & 1 deletion src/components/dropdownMenu/IconMenuItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,20 @@ const IconMenuItem = ({
icon,
text,
action,
disabled,
}: {
icon: React.ReactNode
text: string
action?: () => void
disabled?: boolean
}) => {
const handleClick = () => {
if (action) {
action()
}
}
return (
<MenuItem dense onClick={handleClick}>
<MenuItem dense onClick={handleClick} disabled={disabled}>
<Stack
direction={'row'}
spacing={'0.375rem'}
Expand Down
Loading