Merge master into storybook-deploy

This commit is contained in:
github-actions[bot]
2024-01-02 08:19:18 +00:00
committed by GitHub
58 changed files with 688 additions and 131 deletions

View File

@@ -27,6 +27,7 @@
"@radix-ui/react-tabs": "^1.0.4",
"@reduxjs/toolkit": "^2.0.1",
"@storybook/theming": "^7.6.6",
"async-mutex": "^0.4.0",
"clsx": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
@@ -42,7 +43,7 @@
"@hookform/devtools": "^4.3.1",
"@it-incubator/eslint-config": "^1.0.2",
"@it-incubator/prettier-config": "^0.1.2",
"@it-incubator/stylelint-config": "^1.0.1",
"@it-incubator/stylelint-config": "^1.0.2",
"@storybook/addon-essentials": "^7.6.6",
"@storybook/addon-interactions": "^7.6.6",
"@storybook/addon-links": "^7.6.6",

17
pnpm-lock.yaml generated
View File

@@ -38,6 +38,9 @@ dependencies:
'@storybook/theming':
specifier: ^7.6.6
version: 7.6.6(react-dom@18.2.0)(react@18.2.0)
async-mutex:
specifier: ^0.4.0
version: 0.4.0
clsx:
specifier: ^2.0.0
version: 2.0.0
@@ -80,8 +83,8 @@ devDependencies:
specifier: ^0.1.2
version: 0.1.2
'@it-incubator/stylelint-config':
specifier: ^1.0.1
version: 1.0.1(stylelint-config-clean-order@5.2.0)(stylelint-config-standard-scss@12.0.0)(stylelint@16.1.0)
specifier: ^1.0.2
version: 1.0.2(stylelint-config-clean-order@5.2.0)(stylelint-config-standard-scss@12.0.0)(stylelint@16.1.0)
'@storybook/addon-essentials':
specifier: ^7.6.6
version: 7.6.6(@types/react-dom@18.2.18)(@types/react@18.2.46)(react-dom@18.2.0)(react@18.2.0)
@@ -2175,8 +2178,8 @@ packages:
prettier: 3.0.0
dev: true
/@it-incubator/stylelint-config@1.0.1(stylelint-config-clean-order@5.2.0)(stylelint-config-standard-scss@12.0.0)(stylelint@16.1.0):
resolution: {integrity: sha512-dZuCX0wXtuNwU0BoNM1fbfo9V9DIG4IhtZ67cOgTsv7/zXFOxXCPiOSx2SguCA7sg4P62/oq2pMQq/x/Y4Edag==}
/@it-incubator/stylelint-config@1.0.2(stylelint-config-clean-order@5.2.0)(stylelint-config-standard-scss@12.0.0)(stylelint@16.1.0):
resolution: {integrity: sha512-2LIducOMyfhFOGV1GvmpWjjvgRGhEtHw/qBv3Vjw+Nel8jCl9cpH2yJrdehK1QJSOkzvQGs2pPQViouW9FQUCA==}
peerDependencies:
stylelint: 16.1.0
stylelint-config-clean-order: 5.2.0
@@ -4854,6 +4857,12 @@ packages:
resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
dev: true
/async-mutex@0.4.0:
resolution: {integrity: sha512-eJFZ1YhRR8UN8eBLoNzcDPcy/jqjsg6I1AP+KvWQX80BqOSW1oJPJXDylPUEeMr2ZQvHgnQ//Lp6f3RQ1zI7HA==}
dependencies:
tslib: 2.6.2
dev: false
/async@3.2.5:
resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
dev: true

View File

@@ -1,11 +1,15 @@
import { Provider } from 'react-redux'
import { ToastContainer } from 'react-toastify'
import { Router } from '@/router'
import { store } from '@/services/store'
import 'react-toastify/dist/ReactToastify.css'
export function App() {
return (
<Provider store={store}>
<ToastContainer />
<Router />
</Provider>
)

View File

@@ -1,10 +1,10 @@
import { Link } from 'react-router-dom'
import s from './check-email.module.scss'
import { Email } from '../../../assets/icons'
import { Button, Card, Typography } from '../../ui'
import s from './check-email.module.scss'
type Props = {
email: string
}

View File

@@ -1,14 +1,15 @@
import { useForm } from 'react-hook-form'
import { Button, Card, ControlledTextField, Typography } from '../../ui'
import { DevTool } from '@hookform/devtools'
import { zodResolver } from '@hookform/resolvers/zod'
import { z } from 'zod'
import s from './new-password.module.scss'
import { Button, Card, ControlledTextField, Typography } from '../../ui'
const schema = z.object({
password: z.string().nonempty('Enter password'),
password: z.string().min(1, 'Enter password'),
})
type FormType = z.infer<typeof schema>

View File

@@ -1,13 +1,14 @@
import { useForm } from 'react-hook-form'
import { Link } from 'react-router-dom'
import { Button, Card, ControlledCheckbox, ControlledTextField, Typography } from '../../ui'
import { DevTool } from '@hookform/devtools'
import { zodResolver } from '@hookform/resolvers/zod'
import { z } from 'zod'
import s from './sign-in.module.scss'
import { Button, Card, ControlledCheckbox, ControlledTextField, Typography } from '../../ui'
const schema = z.object({
email: z.string().email('Invalid email address').nonempty('Enter email'),
password: z.string().nonempty('Enter password'),

View File

@@ -1,7 +1,6 @@
import { useForm } from 'react-hook-form'
import { Link } from 'react-router-dom'
import { Button, Card, ControlledTextField, Typography } from '../../ui'
import { DevTool } from '@hookform/devtools'
import { zodResolver } from '@hookform/resolvers/zod'
import { omit } from 'remeda'
@@ -9,6 +8,8 @@ import { z } from 'zod'
import s from './sign-up.module.scss'
import { Button, Card, ControlledTextField, Typography } from '../../ui'
const schema = z
.object({
email: z.string().email('Invalid email address').nonempty('Enter email'),

View File

@@ -1,9 +1,10 @@
import { useState } from 'react'
import { DeckDialog } from './'
import { Button } from '@/components'
import { Meta, StoryObj } from '@storybook/react'
import { DeckDialog } from './'
const meta = {
component: DeckDialog,
tags: ['autodocs'],

View File

@@ -8,7 +8,7 @@ import s from './deck-dialog.module.scss'
const newDeckSchema = z.object({
isPrivate: z.boolean(),
name: z.string().min(3).max(50),
name: z.string().min(3).max(5000),
})
type FormValues = z.infer<typeof newDeckSchema>

View File

@@ -1 +1 @@
export * from './deck-dialog.tsx'
export * from './deck-dialog'

View File

@@ -2,7 +2,9 @@ import { Link } from 'react-router-dom'
import { Edit2Outline, PlayCircleOutline, TrashOutline } from '@/assets'
import {
Button,
Column,
Sort,
Table,
TableBody,
TableCell,
@@ -43,14 +45,24 @@ type Props = {
decks: Deck[] | undefined
onDeleteClick: (id: string) => void
onEditClick: (id: string) => void
onSort: (key: Sort) => void
sort: Sort
}
export const DecksTable = ({ currentUserId, decks, onDeleteClick, onEditClick }: Props) => {
export const DecksTable = ({
currentUserId,
decks,
onDeleteClick,
onEditClick,
onSort,
sort,
}: Props) => {
const handleEditClick = (id: string) => () => onEditClick(id)
const handleDeleteClick = (id: string) => () => onDeleteClick(id)
return (
<Table>
<TableHeader columns={columns} />
<TableHeader columns={columns} onSort={onSort} sort={sort} />
<TableBody>
{decks?.map(deck => (
<TableRow key={deck.id}>
@@ -64,17 +76,17 @@ export const DecksTable = ({ currentUserId, decks, onDeleteClick, onEditClick }:
<TableCell>{deck.author.name}</TableCell>
<TableCell>
<div className={s.iconsContainer}>
<Link to={`/decks/${deck.id}/learn`}>
<Button as={Link} to={`/decks/${deck.id}/learn`} variant={'icon'}>
<PlayCircleOutline />
</Link>
</Button>
{deck.author.id === currentUserId && (
<>
<button onClick={handleEditClick(deck.id)}>
<Button onClick={handleEditClick(deck.id)} variant={'icon'}>
<Edit2Outline />
</button>
<button onClick={handleDeleteClick(deck.id)}>
</Button>
<Button onClick={handleDeleteClick(deck.id)} variant={'icon'}>
<TrashOutline />
</button>
</Button>
</>
)}
</div>

View File

@@ -1,9 +1,10 @@
import { useState } from 'react'
import { DeleteDeckDialog } from './'
import { Button } from '@/components'
import { Meta, StoryObj } from '@storybook/react'
import { DeleteDeckDialog } from './'
const meta = {
component: DeleteDeckDialog,
tags: ['autodocs'],

View File

@@ -1,2 +1,2 @@
export * from './decks-table.tsx'
export * from './cards-table.tsx'
export * from './decks-table'
export * from './cards-table'

View File

@@ -16,13 +16,17 @@ import {
import s from './user-dropdown.module.scss'
export type UserDropdownProps = {
avatar: string
avatar: null | string
email: string
onLogout: ComponentPropsWithoutRef<typeof DropdownMenuItem>['onSelect']
userName: string
}
export const UserDropdown = ({ avatar, email, onLogout, userName }: UserDropdownProps) => {
if (!avatar) {
avatar = `https://ui-avatars.com/api/?name=${userName.split(' ').join('+')}`
}
return (
<DropdownMenu>
<DropdownMenuTrigger asChild>

View File

@@ -1 +1 @@
export * from './layout.tsx'
export * from './layout'

View File

@@ -1,18 +1,18 @@
import type { Meta, StoryObj } from '@storybook/react'
import { Layout } from './'
import { LayoutPrimitive } from './'
const meta = {
argTypes: {
onLogout: { action: 'logout' },
},
component: Layout,
component: LayoutPrimitive,
parameters: {
layout: 'fullscreen',
},
tags: ['autodocs'],
title: 'Components/Layout',
} satisfies Meta<typeof Layout>
} satisfies Meta<typeof LayoutPrimitive>
export default meta
type Story = StoryObj<typeof meta>

View File

@@ -1,12 +1,43 @@
import { ReactNode } from 'react'
import { Outlet, useOutletContext } from 'react-router-dom'
import { Header, HeaderProps } from '@/components'
import { Header, HeaderProps, Spinner } from '@/components'
import { useMeQuery } from '@/services/auth/auth.service'
import s from './layout.module.scss'
export type LayoutProps = { children: ReactNode } & HeaderProps
type AuthContext = {
isAuthenticated: boolean
}
export const Layout = ({ children, ...headerProps }: LayoutProps) => {
export function useAuthContext() {
return useOutletContext<AuthContext>()
}
export const Layout = () => {
const { data, isError, isLoading } = useMeQuery()
const isAuthenticated = !isError && !isLoading
if (isLoading) {
return <Spinner fullScreen />
}
return (
<LayoutPrimitive
avatar={data?.avatar ?? null}
email={data?.email ?? ''}
isLoggedIn={isAuthenticated}
onLogout={() => {}}
userName={data?.name ?? ''}
>
<Outlet context={{ isAuthenticated } satisfies AuthContext} />
</LayoutPrimitive>
)
}
export type LayoutPrimitiveProps = { children: ReactNode } & HeaderProps
export const LayoutPrimitive = ({ children, ...headerProps }: LayoutPrimitiveProps) => {
return (
<div className={s.layout}>
<Header {...headerProps} />

View File

@@ -1,8 +1,8 @@
import s from './personal-information.module.scss'
import { Camera, Edit, Logout } from '../../../assets/icons'
import { Button, Card, Typography } from '../../ui'
import s from './personal-information.module.scss'
type Props = {
avatar: string
email: string

View File

@@ -44,6 +44,7 @@
}
.primary {
composes: button;
color: var(--color-light-100);
background-color: var(--color-accent-500);
box-shadow: 0 4px 18px rgb(140 97 255 / 35%);
@@ -58,6 +59,7 @@
}
.secondary {
composes: button;
color: var(--color-light-100);
background-color: var(--color-dark-300);
box-shadow: 0 2px 10px 0 #6d6d6d40;
@@ -72,6 +74,7 @@
}
.tertiary {
composes: button;
color: var(--color-accent-500);
background-color: var(--color-dark-900);
border: 1px solid var(--color-accent-700);
@@ -86,6 +89,8 @@
}
.link {
composes: button;
padding: 0.375rem 0;
font-weight: var(--font-weight-bold);
@@ -93,3 +98,7 @@
color: var(--color-accent-500);
text-decoration-line: underline;
}
.icon {
border-radius: 9999px;
}

View File

@@ -16,7 +16,7 @@ export type ButtonProps<T extends ElementType = 'button'> = {
children: ReactNode
className?: string
fullWidth?: boolean
variant?: 'link' | 'primary' | 'secondary' | 'tertiary'
variant?: 'icon' | 'link' | 'primary' | 'secondary' | 'tertiary'
} & ComponentPropsWithoutRef<T>
const ButtonPolymorph = <T extends ElementType = 'button'>(props: ButtonProps<T>, ref: any) => {
@@ -31,7 +31,7 @@ const ButtonPolymorph = <T extends ElementType = 'button'>(props: ButtonProps<T>
return (
<Component
className={clsx(s.button, s[variant], fullWidth && s.fullWidth, className)}
className={clsx(s[variant], fullWidth && s.fullWidth, className)}
{...rest}
ref={ref}
/>

View File

@@ -1,8 +1,9 @@
import type { Meta, StoryObj } from '@storybook/react'
import { Card } from './'
import { Typography } from '@/components'
import { Card } from './'
const meta = {
component: Card,
tags: ['autodocs'],

View File

@@ -1,7 +1,8 @@
import { useState } from 'react'
import { Checkbox } from './checkbox'
import { Meta, StoryObj } from '@storybook/react'
import { Checkbox } from './checkbox'
const meta = {
component: Checkbox,
tags: ['autodocs'],

View File

@@ -1,8 +1,9 @@
import { useState } from 'react'
import { Dialog } from './'
import { Meta, StoryObj } from '@storybook/react'
import { Dialog } from './'
const meta = {
component: Dialog,
tags: ['autodocs'],

View File

@@ -1,3 +1,4 @@
export * from './spinner'
export * from './avatar'
export * from './dropdown'
export * from '../layout/header'

View File

@@ -1,6 +1,6 @@
.root {
display: flex;
justify-content: center;
width: 100%;
margin-top: 36px;
padding-inline: 24px;
}

View File

@@ -1,11 +1,12 @@
import { FC } from 'react'
import { ComponentPropsWithoutRef, FC } from 'react'
import { usePagination } from './usePagination'
import { KeyboardArrowLeft, KeyboardArrowRight } from '@/assets'
import { clsx } from 'clsx'
import s from './pagination.module.scss'
import { usePagination } from './usePagination'
type PaginationConditionals =
| {
onPerPageChange: (itemPerPage: number) => void
@@ -26,8 +27,8 @@ export type PaginationProps = {
perPage?: number
perPageOptions?: number[]
siblings?: number
} & PaginationConditionals
} & PaginationConditionals &
Omit<ComponentPropsWithoutRef<'div'>, 'onChange'>
const classNames = {
container: s.container,
dots: s.dots,
@@ -36,12 +37,15 @@ const classNames = {
pageButton(selected?: boolean) {
return clsx(this.item, selected && s.selected)
},
root: s.root,
root(className?: string) {
return clsx(s.root, className)
},
select: s.select,
selectBox: s.selectBox,
}
export const Pagination: FC<PaginationProps> = ({
className,
count,
onChange,
onPerPageChange,
@@ -49,6 +53,7 @@ export const Pagination: FC<PaginationProps> = ({
perPage = null,
perPageOptions,
siblings,
...rest
}) => {
const {
handleMainPageClicked,
@@ -67,7 +72,7 @@ export const Pagination: FC<PaginationProps> = ({
const showPerPageSelect = !!perPage && !!perPageOptions && !!onPerPageChange
return (
<div className={classNames.root}>
<div className={classNames.root(className)} {...rest}>
<div className={classNames.container}>
<PrevButton disabled={isFirstPage} onClick={handlePreviousPageClicked} />

View File

@@ -5,6 +5,20 @@
justify-content: center;
width: 100%;
min-width: 220px;
}
.valueDisplay {
display: flex;
flex-shrink: 0;
align-items: center;
justify-content: center;
width: 44px;
height: 36px;
border: 1px solid var(--color-dark-300);
border-radius: 2px;
}
.root {
@@ -25,14 +39,14 @@
width: 100%;
height: 4px;
opacity: 0.5;
background-color: var(--color-accent-500);
background-color: rgb(140 97 255 / 50%);
border-radius: 2px;
}
.range {
position: absolute;
height: 100%;
opacity: 1;
background-color: var(--color-accent-500);
}
@@ -40,13 +54,31 @@
touch-action: pan-x;
cursor: pointer;
position: relative;
display: block;
width: 16px;
height: 16px;
background-color: var(--color-light-100);
background-color: var(--color-accent-500);
border-radius: 9999px;
outline: none;
transition: transform 0.2s ease-in-out;
&::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 8px;
height: 8px;
background-color: var(--color-light-100);
border-radius: 9999px;
}
}

View File

@@ -0,0 +1,17 @@
import type { Meta, StoryObj } from '@storybook/react'
import { Slider } from './'
const meta = {
component: Slider,
parameters: {},
tags: ['autodocs'],
title: 'Components/Slider',
} satisfies Meta<typeof Slider>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: { value: [0, 100] },
}

View File

@@ -7,7 +7,7 @@ import s from './slider.module.scss'
const Slider = forwardRef<
ElementRef<typeof SliderPrimitive.Root>,
Omit<ComponentPropsWithoutRef<typeof SliderPrimitive.Root>, 'value'> & {
value?: (number | undefined)[]
value: (null | number)[]
}
>(({ className, max, onValueChange, value, ...props }, ref) => {
useEffect(() => {
@@ -18,7 +18,7 @@ const Slider = forwardRef<
return (
<div className={s.container}>
<span>{value?.[0]}</span>
<span className={s.valueDisplay}>{value?.[0]}</span>
<SliderPrimitive.Root
className={clsx(s.root, className)}
max={max}
@@ -28,12 +28,12 @@ const Slider = forwardRef<
value={[value?.[0] ?? 0, value?.[1] ?? max ?? 0]}
>
<SliderPrimitive.Track className={s.track}>
<SliderPrimitive.Range className={'absolute h-full bg-primary'} />
<SliderPrimitive.Range className={s.range} />
</SliderPrimitive.Track>
<SliderPrimitive.Thumb className={s.thumb} />
<SliderPrimitive.Thumb className={s.thumb} />
</SliderPrimitive.Root>
<span>{value?.[1]}</span>
<span className={s.valueDisplay}>{value?.[1]}</span>
</div>
)
})

View File

@@ -0,0 +1 @@
export * from './spinner'

View File

@@ -0,0 +1,57 @@
.fullScreenContainer {
position: fixed;
z-index: 9999;
top: var(--header-height);
left: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100vw;
height: calc(100vh - var(--header-height));
background-color: rgb(0 0 0 / 50%);
}
.loader {
position: relative;
display: inline-block;
box-sizing: border-box;
width: 48px;
height: 48px;
border: 3px solid #fff;
border-radius: 50%;
animation: rotation 1s linear infinite;
}
.loader::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
box-sizing: border-box;
width: 40px;
height: 40px;
border: 3px solid transparent;
border-bottom-color: var(--color-accent-500);
border-radius: 50%;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}

View File

@@ -0,0 +1,19 @@
import type { Meta, StoryObj } from '@storybook/react'
import { Spinner } from './'
const meta = {
component: Spinner,
parameters: {
layout: 'centered',
},
tags: ['autodocs'],
title: 'Components/Spinner',
} satisfies Meta<typeof Spinner>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {},
}

View File

@@ -0,0 +1,30 @@
import { CSSProperties, ComponentPropsWithoutRef, ElementRef, forwardRef } from 'react'
import { clsx } from 'clsx'
import s from './spinner.module.scss'
export type SpinnerProps = {
fullScreen?: boolean
size?: CSSProperties['width']
} & ComponentPropsWithoutRef<'span'>
export const Spinner = forwardRef<ElementRef<'span'>, SpinnerProps>(
({ className, fullScreen, size = '48px', style, ...rest }, ref) => {
const styles = {
height: size,
width: size,
...style,
} satisfies CSSProperties
if (fullScreen) {
return (
<div className={s.fullScreenContainer}>
<span className={clsx(s.loader, className)} ref={ref} style={styles} {...rest} />
</div>
)
}
return <span className={clsx(s.loader, className)} ref={ref} style={styles} {...rest} />
}
)

View File

@@ -1,7 +1,8 @@
import { Table, TableBody, TableCell, TableEmpty, TableHead, TableHeadCell, TableRow } from './'
import { Typography } from '@/components'
import { Meta } from '@storybook/react'
import { Table, TableBody, TableCell, TableEmpty, TableHead, TableHeadCell, TableRow } from './'
export default {
component: Table,
title: 'Components/Table',

View File

@@ -1,5 +1,6 @@
.list {
display: inline-flex;
flex-shrink: 0;
background-color: var(--color-dark-900);
}

View File

@@ -1,5 +1,6 @@
.root {
width: 100%;
min-width: 200px;
}
.fieldContainer {

1
src/hooks/index.ts Normal file
View File

@@ -0,0 +1 @@
export * from './use-query-param'

View File

@@ -0,0 +1 @@
export * from './use-query-param'

View File

@@ -0,0 +1,36 @@
import { isNil } from 'remeda'
export function useQueryParam<T extends boolean | number | string>(
searchParams: URLSearchParams,
setSearchParams: (searchParams: URLSearchParams) => void,
param: string,
defaultValue?: T
): [T | null, (value: T | null) => void] {
const paramValue = searchParams.get(param)
const convertedValue = getConvertedValue<T>(paramValue, defaultValue)
const setParamValue = (value: T | null): void => {
if (isNil(value) || value === '') {
searchParams.delete(param)
} else {
searchParams.set(param, String(value))
}
setSearchParams(searchParams)
}
return [convertedValue, setParamValue]
}
function getConvertedValue<T>(value: null | string, defaultValue: T | undefined): T | null {
if (value === null) {
return defaultValue ?? null
}
if (value === 'true' || value === 'false') {
return (value === 'true') as unknown as T
}
if (!isNaN(Number(value))) {
return Number(value) as unknown as T
}
return value as unknown as T
}

View File

@@ -1,11 +1,12 @@
import { StrictMode } from 'react'
import { App } from './App'
import { createRoot } from 'react-dom/client'
import './styles/index.scss'
import '@fontsource/roboto/400.css'
import '@fontsource/roboto/700.css'
import './styles/index.scss'
import { App } from './App'
createRoot(document.getElementById('root')!).render(
<StrictMode>

View File

@@ -13,5 +13,9 @@
display: flex;
grid-template-columns: repeat(4, 1fr);
column-gap: 16px;
margin-bottom: 16px;
margin: 10px 0 16px;
}
.pagination {
margin-top: 24px;
}

View File

@@ -1,69 +1,65 @@
import { useState } from 'react'
import { Button, DecksTable, Page, Slider, TextField, Typography } from '@/components'
import { Button, DecksTable, Page, Slider, Spinner, TextField, Typography } from '@/components'
import { DeckDialog } from '@/components/decks/deck-dialog'
import { DeleteDeckDialog } from '@/components/decks/delete-deck-dialog'
import { Pagination } from '@/components/ui/pagination'
import { Tabs, TabsList, TabsTrigger } from '@/components/ui/tabs'
import { useDeckSearchParams } from '@/pages/decks-page/use-deck-search-params'
import { useMeQuery } from '@/services/auth/auth.service'
import {
Tab,
useCreateDeckMutation,
useDeleteDeckMutation,
useGetDecksQuery,
useUpdateDeckMutation,
} from '@/services/decks'
import {
selectDecksCurrentPage,
selectDecksCurrentTab,
selectDecksMaxCards,
selectDecksMinCards,
selectDecksSearch,
} from '@/services/decks/decks.selectors'
import { decksSlice } from '@/services/decks/decks.slice'
import { useAppDispatch, useAppSelector } from '@/services/store'
import s from './decks-page.module.scss'
export const DecksPage = () => {
const { data: me } = useMeQuery()
const [showCreateModal, setShowCreateModal] = useState(false)
const [deckToDeleteId, setDeckToDeleteId] = useState<null | string>(null)
const [deckToEditId, setDeckToEditId] = useState<null | string>(null)
const showEditModal = !!deckToEditId
const dispatch = useAppDispatch()
const currentPage = useAppSelector(selectDecksCurrentPage)
const minCards = useAppSelector(selectDecksMinCards)
const maxCards = useAppSelector(selectDecksMaxCards)
const currentTab = useAppSelector(selectDecksCurrentTab)
const search = useAppSelector(selectDecksSearch)
const setCurrentPage = (page: number) => dispatch(decksSlice.actions.setCurrentPage(page))
const setMinCards = (minCards: number) => dispatch(decksSlice.actions.setMinCards(minCards))
const setMaxCards = (maxCards: number) => dispatch(decksSlice.actions.setMaxCards(maxCards))
const setSearch = (search: string) => dispatch(decksSlice.actions.setSearch(search))
const setCurrentTab = (tab: Tab) => dispatch(decksSlice.actions.setCurrentTab(tab))
const {
currentPage,
currentTab,
maxCardsCount,
minCardsCount,
rangeValue,
search,
setCurrentPage,
setCurrentTab,
setMaxCards,
setMinCards,
setRangeValue,
setSearch,
setSort,
sort,
} = useDeckSearchParams()
const resetFilters = () => {
dispatch(decksSlice.actions.resetFilters())
setRangeValue([0, decks?.maxCardsCount || undefined])
}
const [rangeValue, setRangeValue] = useState([minCards, maxCards])
const handleSliderCommitted = (value: number[]) => {
setMinCards(value[0])
setMaxCards(value[1])
}
const currentUserId = 'f2be95b9-4d07-4751-a775-bd612fc9553a'
const currentUserId = me?.id
const authorId = currentTab === 'my' ? currentUserId : undefined
const { data: decks } = useGetDecksQuery({
const { currentData: decksCurrentData, data: decksData } = useGetDecksQuery({
authorId,
currentPage,
maxCardsCount: maxCards,
minCardsCount: minCards,
maxCardsCount,
minCardsCount,
name: search,
orderBy: sort ? `${sort.key}-${sort.direction}` : undefined,
})
const resetFilters = () => {
setCurrentPage(null)
setSearch(null)
setMinCards(null)
setMaxCards(null)
setRangeValue([0, decks?.maxCardsCount ?? null])
setSort(null)
}
const decks = decksCurrentData ?? decksData
const showConfirmDeleteModal = !!deckToDeleteId
const deckToDeleteName = decks?.items?.find(deck => deck.id === deckToDeleteId)?.name
@@ -73,10 +69,26 @@ export const DecksPage = () => {
const [createDeck] = useCreateDeckMutation()
const [deleteDeck] = useDeleteDeckMutation()
const [updateDeck] = useUpdateDeckMutation()
const openCreateModal = () => setShowCreateModal(true)
if (!decks) {
return <div>loading...</div>
const handleSearch = (search: null | string) => {
setCurrentPage(null)
setSearch(search)
}
const handleSliderCommitted = (value: number[]) => {
setCurrentPage(null)
setMinCards(value[0])
setMaxCards(value[1])
}
const handleTabChange = (tab: string) => {
setCurrentPage(null)
setCurrentTab(tab)
}
if (!decks || !me) {
return <Spinner fullScreen />
}
return (
@@ -110,14 +122,22 @@ export const DecksPage = () => {
<Button onClick={openCreateModal}>Add new deck</Button>
<DeckDialog
onCancel={() => setShowCreateModal(false)}
onConfirm={createDeck}
onConfirm={data => {
resetFilters()
createDeck(data)
}}
onOpenChange={setShowCreateModal}
open={showCreateModal}
/>
</div>
<div className={s.filters}>
<TextField onValueChange={setSearch} placeholder={'Search'} search value={search} />
<Tabs onValueChange={value => setCurrentTab(value as Tab)} value={currentTab}>
<TextField
onValueChange={handleSearch}
placeholder={'Search'}
search
value={search ?? ''}
/>
<Tabs asChild onValueChange={handleTabChange} value={currentTab ?? undefined}>
<TabsList>
<TabsTrigger value={'my'}>My decks</TabsTrigger>
<TabsTrigger value={'all'}>All decks</TabsTrigger>
@@ -135,15 +155,18 @@ export const DecksPage = () => {
</Button>
</div>
<DecksTable
currentUserId={currentUserId}
currentUserId={currentUserId ?? ''}
decks={decks?.items}
onDeleteClick={setDeckToDeleteId}
onEditClick={setDeckToEditId}
onSort={setSort}
sort={sort}
/>
<Pagination
className={s.pagination}
count={decks?.pagination?.totalPages || 1}
onChange={setCurrentPage}
page={currentPage}
page={currentPage ?? 1}
/>
</div>
</Page>

View File

@@ -0,0 +1,75 @@
import { useState } from 'react'
import { useSearchParams } from 'react-router-dom'
import { Sort } from '@/components'
import { useQueryParam } from '@/hooks'
export function useDeckSearchParams() {
const [searchParams, setSearchParams] = useSearchParams()
const [currentPage, setCurrentPage] = useQueryParam<number>(
searchParams,
setSearchParams,
'page',
1
)
const [minCardsCount, setMinCards] = useQueryParam<number>(
searchParams,
setSearchParams,
'minCards',
0
)
const [maxCardsCount, setMaxCards] = useQueryParam<number>(
searchParams,
setSearchParams,
'maxCards'
)
const [search, setSearch] = useQueryParam<string>(searchParams, setSearchParams, 'search')
const [currentTab, setCurrentTab] = useQueryParam<string>(
searchParams,
setSearchParams,
'currentTab',
'all'
)
const [rangeValue, setRangeValue] = useState([minCardsCount, maxCardsCount])
const [sortKey, setSortKey] = useQueryParam<string>(searchParams, setSearchParams, 'sortKey')
const [sortDirection, setSortDirection] = useQueryParam<'asc' | 'desc'>(
searchParams,
setSearchParams,
'sortDirection'
)
const setSort = (sort: Sort) => {
if (!sort) {
setSortKey(null)
setSortDirection(null)
return
}
setSortKey(sort.key)
setSortDirection(sort.direction)
}
const sort: Sort =
sortDirection === null || sortKey === null
? null
: {
direction: sortDirection,
key: sortKey,
}
return {
currentPage,
currentTab,
maxCardsCount,
minCardsCount,
rangeValue,
search,
setCurrentPage,
setCurrentTab,
setMaxCards,
setMinCards,
setRangeValue,
setSearch,
setSort,
sort,
}
}

View File

@@ -1,9 +1,26 @@
import { useNavigate } from 'react-router-dom'
import { toast } from 'react-toastify'
import { Page, SignIn } from '@/components'
import { useLoginMutation } from '@/services/auth/auth.service'
import { LoginArgs } from '@/services/auth/auth.types'
export const SignInPage = () => {
const [signIn] = useLoginMutation()
const navigate = useNavigate()
const handleSignIn = async (data: LoginArgs) => {
try {
await signIn(data).unwrap()
navigate('/')
} catch (error: any) {
console.log(error)
toast.error(error?.data?.message ?? 'Could not sign in')
}
}
return (
<Page>
<SignIn onSubmit={() => {}} />
<SignIn onSubmit={handleSignIn} />
</Page>
)
}

View File

@@ -6,9 +6,11 @@ import {
createBrowserRouter,
} from 'react-router-dom'
import { DecksPage, SignInPage } from './pages'
import { Layout, useAuthContext } from '@/components/layout'
import { DeckPage } from '@/pages/deck-page/deck-page'
import { DecksPage, SignInPage } from './pages'
const publicRoutes: RouteObject[] = [
{
children: [
@@ -34,10 +36,15 @@ const privateRoutes: RouteObject[] = [
const router = createBrowserRouter([
{
children: privateRoutes,
element: <PrivateRoutes />,
children: [
{
children: privateRoutes,
element: <PrivateRoutes />,
},
...publicRoutes,
],
element: <Layout />,
},
...publicRoutes,
])
export const Router = () => {
@@ -45,7 +52,7 @@ export const Router = () => {
}
function PrivateRoutes() {
const isAuthenticated = true
const { isAuthenticated } = useAuthContext()
return isAuthenticated ? <Outlet /> : <Navigate to={'/login'} />
}

View File

@@ -0,0 +1,21 @@
import { baseApi } from '..'
import { LoginArgs, User } from './auth.types'
export const authService = baseApi.injectEndpoints({
endpoints: builder => ({
login: builder.mutation<void, LoginArgs>({
invalidatesTags: ['Me'],
query: body => ({
body,
method: 'POST',
url: '/v1/auth/login',
}),
}),
me: builder.query<User, void>({
providesTags: ['Me'],
query: () => '/v1/auth/me',
}),
}),
})
export const { useLoginMutation, useMeQuery } = authService

View File

@@ -0,0 +1,14 @@
export type LoginArgs = {
email: string
password: string
rememberMe?: boolean
}
export type User = {
avatar: null | string
created: string
email: string
id: string
isEmailVerified: boolean
name: string
updated: string
}

View File

@@ -1,14 +1,9 @@
import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react'
import { baseQueryWithReauth } from '@/services/base-query-with-reauth'
import { createApi } from '@reduxjs/toolkit/query/react'
export const baseApi = createApi({
baseQuery: fetchBaseQuery({
baseUrl: 'https://api.flashcards.andrii.es',
credentials: 'include',
prepareHeaders: headers => {
headers.append('x-auth-skip', 'true')
},
}),
baseQuery: baseQueryWithReauth,
endpoints: () => ({}),
reducerPath: 'baseApi',
tagTypes: ['Decks'],
tagTypes: ['Decks', 'Me'],
})

View File

@@ -0,0 +1,47 @@
import {
BaseQueryFn,
FetchArgs,
FetchBaseQueryError,
fetchBaseQuery,
} from '@reduxjs/toolkit/query/react'
import { Mutex } from 'async-mutex'
const mutex = new Mutex()
const baseQuery = fetchBaseQuery({
baseUrl: 'https://api.flashcards.andrii.es',
credentials: 'include',
})
export const baseQueryWithReauth: BaseQueryFn<
FetchArgs | string,
unknown,
FetchBaseQueryError
> = async (args, api, extraOptions) => {
await mutex.waitForUnlock()
let result = await baseQuery(args, api, extraOptions)
if (result.error && result.error.status === 401) {
if (!mutex.isLocked()) {
const release = await mutex.acquire()
// try to get a new token
const refreshResult = await baseQuery(
{ method: 'POST', url: '/v1/auth/refresh-token' },
api,
extraOptions
)
if (refreshResult.meta?.response?.status === 204) {
// retry the initial query
result = await baseQuery(args, api, extraOptions)
}
release()
} else {
// wait until the mutex is available without locking it
await mutex.waitForUnlock()
result = await baseQuery(args, api, extraOptions)
}
}
return result
}

View File

@@ -1,4 +1,4 @@
import { RootState } from '@/services/store.ts'
import { RootState } from '@/services/store'
export const selectDecksCurrentPage = (state: RootState) => state.decks.currentPage

View File

@@ -7,11 +7,30 @@ import {
UpdateDeckArgs,
baseApi,
} from '@/services'
import { RootState } from '@/services/store'
import { getValuable } from '@/utils'
const decksService = baseApi.injectEndpoints({
endpoints: builder => ({
createDeck: builder.mutation<DeckResponse, CreateDeckArgs>({
invalidatesTags: ['Decks'],
async onQueryStarted(_, { dispatch, getState, queryFulfilled }) {
const res = await queryFulfilled
for (const { endpointName, originalArgs } of decksService.util.selectInvalidatedBy(
getState(),
[{ type: 'Decks' }]
)) {
if (endpointName !== 'getDecks') {
continue
}
dispatch(
decksService.util.updateQueryData(endpointName, originalArgs, draft => {
draft.items.unshift(res.data)
})
)
}
},
query: body => ({
body,
method: 'POST',
@@ -35,13 +54,49 @@ const decksService = baseApi.injectEndpoints({
providesTags: ['Decks'],
query: args => {
return {
params: args ?? undefined,
params: args ? getValuable(args) : undefined,
url: `v1/decks`,
}
},
}),
updateDeck: builder.mutation<DeckResponse, UpdateDeckArgs>({
invalidatesTags: ['Decks'],
async onQueryStarted({ id, ...patch }, { dispatch, getState, queryFulfilled }) {
const state = getState() as RootState
const minCardsCount = state.decks.minCards
const search = state.decks.search
const currentPage = state.decks.currentPage
const maxCardsCount = state.decks.maxCards
const authorId = state.decks.authorId
const patchResult = dispatch(
decksService.util.updateQueryData(
'getDecks',
{
authorId,
currentPage,
maxCardsCount,
minCardsCount,
name: search,
},
draft => {
const deck = draft.items.find(deck => deck.id === id)
if (!deck) {
return
}
Object.assign(deck, patch)
}
)
)
try {
await queryFulfilled
} catch {
patchResult.undo()
}
},
query: ({ id, ...body }) => ({
body,
method: 'PATCH',

View File

@@ -3,6 +3,7 @@ import { PayloadAction, createSlice } from '@reduxjs/toolkit'
export const decksSlice = createSlice({
initialState: {
authorId: undefined as string | undefined,
currentPage: 1,
currentTab: 'all' as Tab,
maxCards: undefined as number | undefined,
@@ -18,14 +19,17 @@ export const decksSlice = createSlice({
resetFilters: state => {
state.search = ''
state.currentTab = 'all'
state.authorId = undefined
state.minCards = 0
state.maxCards = undefined
state.currentPage = 1
},
setCurrentPage: (state, action: PayloadAction<number>) => {
state.currentPage = action.payload
},
setCurrentTab: (state, action: PayloadAction<Tab>) => {
state.currentTab = action.payload
setCurrentTab: (state, action: PayloadAction<{ authorId?: string; tab: Tab }>) => {
state.currentTab = action.payload.tab
state.authorId = action.payload.authorId
},
setMaxCards: (state, action: PayloadAction<number>) => {
state.maxCards = action.payload

View File

@@ -54,13 +54,13 @@ export type Card = {
}
export type GetDecksArgs = {
authorId?: string
currentPage?: number
itemsPerPage?: number
maxCardsCount?: number
minCardsCount?: number
name?: string
orderBy?: string
authorId?: null | string
currentPage?: null | number
itemsPerPage?: null | number
maxCardsCount?: null | number
minCardsCount?: null | number
name?: null | string
orderBy?: null | string
}
export type CreateDeckArgs = {

View File

@@ -1,10 +1,11 @@
import { TypedUseSelectorHook, useDispatch, useSelector } from 'react-redux'
import { baseApi } from './base-api'
import { decksSlice } from '@/services/decks/decks.slice'
import { configureStore } from '@reduxjs/toolkit'
import { setupListeners } from '@reduxjs/toolkit/query/react'
import { baseApi } from './base-api'
export const store = configureStore({
middleware: getDefaultMiddleware => getDefaultMiddleware().concat(baseApi.middleware),
reducer: {

View File

@@ -41,6 +41,8 @@ select,
textarea,
optgroup,
option {
box-sizing: border-box;
font-family: inherit;
font-size: inherit;
font-weight: inherit;

View File

@@ -0,0 +1,9 @@
type Valuable<T> = { [K in keyof T as T[K] extends null | undefined ? never : K]: T[K] }
export function getValuable<T extends {}, V = Valuable<T>>(obj: T): V {
return Object.fromEntries(
Object.entries(obj).filter(
([, v]) => !((typeof v === 'string' && !v.length) || v === null || typeof v === 'undefined')
)
) as V
}

View File

@@ -1 +1,2 @@
export * from './date'
export * from './get-valuable'

View File

@@ -8,7 +8,7 @@
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"allowImportingTsExtensions": false,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,