Merge branch 'main' of ssh://85.143.175.152:222/dry_wash_inc/dry-wash-pl
This commit is contained in:
commit
eb91c89cd9
@ -21,8 +21,16 @@ export const api = createApi({
|
|||||||
}),
|
}),
|
||||||
tagTypes: ['Masters', 'Orders'],
|
tagTypes: ['Masters', 'Orders'],
|
||||||
endpoints: (builder) => ({
|
endpoints: (builder) => ({
|
||||||
getMasters: builder.query<Master[], void>({
|
getMasters: builder.query<Master[], { date: Date }>({
|
||||||
query: () => ({ url: '/arm/masters' }),
|
query: ({ date }) => {
|
||||||
|
const startDate = dayjs(date).startOf('day').toISOString();
|
||||||
|
const endDate = dayjs(date).endOf('day').toISOString();
|
||||||
|
return {
|
||||||
|
url: '/arm/masters/list',
|
||||||
|
method: 'POST',
|
||||||
|
body: { startDate, endDate },
|
||||||
|
};
|
||||||
|
},
|
||||||
transformResponse: extractBodyFromResponse<Master[]>,
|
transformResponse: extractBodyFromResponse<Master[]>,
|
||||||
providesTags: ['Masters'],
|
providesTags: ['Masters'],
|
||||||
}),
|
}),
|
||||||
@ -32,7 +40,7 @@ export const api = createApi({
|
|||||||
method: 'PATCH',
|
method: 'PATCH',
|
||||||
body: { status, notes, master },
|
body: { status, notes, master },
|
||||||
}),
|
}),
|
||||||
invalidatesTags: ['Orders'],
|
invalidatesTags: ['Orders', 'Masters'],
|
||||||
}),
|
}),
|
||||||
getOrders: builder.query<OrderArm[], { date: Date }>({
|
getOrders: builder.query<OrderArm[], { date: Date }>({
|
||||||
query: ({ date }) => {
|
query: ({ date }) => {
|
||||||
@ -54,14 +62,14 @@ export const api = createApi({
|
|||||||
method: 'POST',
|
method: 'POST',
|
||||||
body: master,
|
body: master,
|
||||||
}),
|
}),
|
||||||
invalidatesTags: ['Masters'],
|
invalidatesTags: ['Masters', 'Orders'],
|
||||||
}),
|
}),
|
||||||
deleteMaster: builder.mutation<void, { id: string }>({
|
deleteMaster: builder.mutation<void, { id: string }>({
|
||||||
query: ({ id }) => ({
|
query: ({ id }) => ({
|
||||||
url: `/arm/masters/${id}`,
|
url: `/arm/masters/${id}`,
|
||||||
method: 'DELETE',
|
method: 'DELETE',
|
||||||
}),
|
}),
|
||||||
invalidatesTags: ['Masters'],
|
invalidatesTags: ['Masters', 'Orders'],
|
||||||
}),
|
}),
|
||||||
updateMaster: builder.mutation<void, UpdateMasterPayload>({
|
updateMaster: builder.mutation<void, UpdateMasterPayload>({
|
||||||
query: ({ id, name, phone }) => ({
|
query: ({ id, name, phone }) => ({
|
||||||
@ -69,7 +77,7 @@ export const api = createApi({
|
|||||||
method: 'PATCH',
|
method: 'PATCH',
|
||||||
body: { name, phone },
|
body: { name, phone },
|
||||||
}),
|
}),
|
||||||
invalidatesTags: ['Masters'],
|
invalidatesTags: ['Masters', 'Orders'],
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
@ -3,7 +3,6 @@ import { FetchBaseQueryError } from '@reduxjs/toolkit/query';
|
|||||||
import { BaseResponse } from '../../models/api';
|
import { BaseResponse } from '../../models/api';
|
||||||
|
|
||||||
export const extractBodyFromResponse = <Body>(response: BaseResponse<Body>) => {
|
export const extractBodyFromResponse = <Body>(response: BaseResponse<Body>) => {
|
||||||
console.log('response', response);
|
|
||||||
if (response.success) {
|
if (response.success) {
|
||||||
return response.body;
|
return response.body;
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Box, Button, Heading, HStack, Divider, Flex } from '@chakra-ui/react';
|
import { Box, Button, Heading, HStack, Flex } from '@chakra-ui/react';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { useLocation, Link } from 'react-router-dom';
|
import { useLocation, Link } from 'react-router-dom';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
@ -30,7 +30,6 @@ const Header = () => {
|
|||||||
{t('orders')}
|
{t('orders')}
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
<Divider orientation='vertical' height='30px' />
|
|
||||||
{URLs.armMaster.isOn && (
|
{URLs.armMaster.isOn && (
|
||||||
<Button
|
<Button
|
||||||
as={Link}
|
as={Link}
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
import React, { useMemo } from 'react';
|
import React, { useState } from 'react';
|
||||||
import { Box, Flex, Heading, Spinner } from '@chakra-ui/react';
|
import { Box, Flex, Heading, Spinner } from '@chakra-ui/react';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
import { YMaps, Map, Placemark } from '@pbe/react-yandex-maps';
|
import { YMaps, Map, Placemark } from '@pbe/react-yandex-maps';
|
||||||
import { useLocation } from 'react-router-dom';
|
import { useLocation } from 'react-router-dom';
|
||||||
|
import dayjs from 'dayjs';
|
||||||
|
|
||||||
import { useGetOrdersQuery } from '../../__data__/service/api';
|
import { useGetOrdersQuery } from '../../__data__/service/api';
|
||||||
import getCoordinates from '../../utils/getCoordinates';
|
import getCoordinates from '../../utils/getCoordinates';
|
||||||
|
import DateNavigator from '../DateNavigator';
|
||||||
|
|
||||||
const OrdersMap = () => {
|
const OrdersMap = () => {
|
||||||
const { t } = useTranslation('~', {
|
const { t } = useTranslation('~', {
|
||||||
@ -14,14 +16,13 @@ const OrdersMap = () => {
|
|||||||
|
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
const params = new URLSearchParams(location.search);
|
const params = new URLSearchParams(location.search);
|
||||||
const latFromUrl = parseFloat(params.get('lat') || 55.78);
|
const latFromUrl = parseFloat(params.get('lat') || '55.78');
|
||||||
const lonFromUrl = parseFloat(params.get('lon') || 49.12);
|
const lonFromUrl = parseFloat(params.get('lon') || '49.12');
|
||||||
const currentDate = useMemo(
|
|
||||||
() =>
|
const [currentDate, setCurrentDate] = useState(
|
||||||
params.get('currentDate')
|
params.get('currentDate')
|
||||||
? new Date(params.get('currentDate'))
|
? new Date(params.get('currentDate'))
|
||||||
: new Date(),
|
: new Date(),
|
||||||
[],
|
|
||||||
);
|
);
|
||||||
|
|
||||||
const {
|
const {
|
||||||
@ -44,6 +45,18 @@ const OrdersMap = () => {
|
|||||||
{t('title')}
|
{t('title')}
|
||||||
</Heading>
|
</Heading>
|
||||||
|
|
||||||
|
<DateNavigator
|
||||||
|
currentDate={currentDate}
|
||||||
|
onPreviousDate={() =>
|
||||||
|
setCurrentDate((prevDate) =>
|
||||||
|
dayjs(prevDate).subtract(1, 'day').toDate(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
onNextDate={() =>
|
||||||
|
setCurrentDate((prevDate) => dayjs(prevDate).add(1, 'day').toDate())
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
{isLoading && (
|
{isLoading && (
|
||||||
<Flex justifyContent='center' alignItems='center'>
|
<Flex justifyContent='center' alignItems='center'>
|
||||||
<Spinner size='lg' />
|
<Spinner size='lg' />
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import React, { useEffect } from 'react';
|
import React, { useEffect, useState } from 'react';
|
||||||
import {
|
import {
|
||||||
Box,
|
Box,
|
||||||
Heading,
|
Heading,
|
||||||
@ -15,11 +15,13 @@ import {
|
|||||||
Spinner,
|
Spinner,
|
||||||
} from '@chakra-ui/react';
|
} from '@chakra-ui/react';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
|
import dayjs from 'dayjs';
|
||||||
|
|
||||||
import MasterItem from '../MasterItem';
|
import MasterItem from '../MasterItem';
|
||||||
import MasterDrawer from '../MasterDrawer';
|
import MasterDrawer from '../MasterDrawer';
|
||||||
import { useGetMastersQuery } from '../../__data__/service/api';
|
import { useGetMastersQuery } from '../../__data__/service/api';
|
||||||
import useShowToast from '../../hooks/useShowToast';
|
import useShowToast from '../../hooks/useShowToast';
|
||||||
|
import DateNavigator from '../DateNavigator';
|
||||||
|
|
||||||
const TABLE_HEADERS = [
|
const TABLE_HEADERS = [
|
||||||
'name' as const,
|
'name' as const,
|
||||||
@ -31,12 +33,18 @@ const TABLE_HEADERS = [
|
|||||||
const Masters = () => {
|
const Masters = () => {
|
||||||
const { isOpen, onOpen, onClose } = useDisclosure();
|
const { isOpen, onOpen, onClose } = useDisclosure();
|
||||||
const showToast = useShowToast();
|
const showToast = useShowToast();
|
||||||
|
const [currentDate, setCurrentDate] = useState(new Date());
|
||||||
|
|
||||||
const { t } = useTranslation('~', {
|
const { t } = useTranslation('~', {
|
||||||
keyPrefix: 'dry-wash.arm.master',
|
keyPrefix: 'dry-wash.arm.master',
|
||||||
});
|
});
|
||||||
|
|
||||||
const { data: masters, error, isLoading, isSuccess } = useGetMastersQuery();
|
const {
|
||||||
|
data: masters,
|
||||||
|
error,
|
||||||
|
isLoading,
|
||||||
|
isSuccess,
|
||||||
|
} = useGetMastersQuery({ date: currentDate });
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (error) {
|
if (error) {
|
||||||
@ -46,12 +54,24 @@ const Masters = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Box p='8'>
|
<Box p='8'>
|
||||||
<Flex justifyContent='space-between' alignItems='center' mb='5'>
|
<Flex justifyContent='space-between' alignItems='baseline' mb='5'>
|
||||||
<Heading size='lg'> {t('title')}</Heading>
|
<Heading size='lg'> {t('title')}</Heading>
|
||||||
|
|
||||||
<Button colorScheme='green' onClick={onOpen}>
|
<Button colorScheme='green' onClick={onOpen}>
|
||||||
+ {t('add')}
|
+ {t('add')}
|
||||||
</Button>
|
</Button>
|
||||||
</Flex>
|
</Flex>
|
||||||
|
<DateNavigator
|
||||||
|
currentDate={currentDate}
|
||||||
|
onPreviousDate={() =>
|
||||||
|
setCurrentDate((prevDate) =>
|
||||||
|
dayjs(prevDate).subtract(1, 'day').toDate(),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
onNextDate={() =>
|
||||||
|
setCurrentDate((prevDate) => dayjs(prevDate).add(1, 'day').toDate())
|
||||||
|
}
|
||||||
|
/>
|
||||||
<Table variant='simple' colorScheme='blackAlpha'>
|
<Table variant='simple' colorScheme='blackAlpha'>
|
||||||
<Thead>
|
<Thead>
|
||||||
<Tr>
|
<Tr>
|
||||||
|
@ -53,7 +53,7 @@ const Orders = () => {
|
|||||||
isSuccess: isMastersSuccess,
|
isSuccess: isMastersSuccess,
|
||||||
isError: isMastersError,
|
isError: isMastersError,
|
||||||
error: mastersError,
|
error: mastersError,
|
||||||
} = useGetMastersQuery();
|
} = useGetMastersQuery({ date: currentDate });
|
||||||
|
|
||||||
const isLoading = isOrdersLoading || isMastersLoading;
|
const isLoading = isOrdersLoading || isMastersLoading;
|
||||||
const isSuccess = isOrdersSuccess && isMastersSuccess;
|
const isSuccess = isOrdersSuccess && isMastersSuccess;
|
||||||
|
@ -25,10 +25,6 @@ exports[`Master Page should display master list and show details when master but
|
|||||||
>
|
>
|
||||||
Заказы
|
Заказы
|
||||||
</a>
|
</a>
|
||||||
<hr
|
|
||||||
aria-orientation="vertical"
|
|
||||||
class="chakra-divider css-zw0v9u"
|
|
||||||
/>
|
|
||||||
<a
|
<a
|
||||||
class="chakra-button css-g11sl9"
|
class="chakra-button css-g11sl9"
|
||||||
data-testid="master-button"
|
data-testid="master-button"
|
||||||
@ -36,6 +32,12 @@ exports[`Master Page should display master list and show details when master but
|
|||||||
>
|
>
|
||||||
Мастера
|
Мастера
|
||||||
</a>
|
</a>
|
||||||
|
<a
|
||||||
|
class="chakra-button css-19byqlw"
|
||||||
|
href="/map"
|
||||||
|
>
|
||||||
|
Карта заказов
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
@ -46,7 +48,7 @@ exports[`Master Page should display master list and show details when master but
|
|||||||
class="css-1glkkdp"
|
class="css-1glkkdp"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="css-sd3fvu"
|
class="css-1dvg3xs"
|
||||||
>
|
>
|
||||||
<h2
|
<h2
|
||||||
class="chakra-heading css-1jb3vzl"
|
class="chakra-heading css-1jb3vzl"
|
||||||
@ -62,6 +64,45 @@ exports[`Master Page should display master list and show details when master but
|
|||||||
Добавить
|
Добавить
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
<div
|
||||||
|
class="css-1u3smh"
|
||||||
|
>
|
||||||
|
<button
|
||||||
|
class="chakra-button css-ez23ye"
|
||||||
|
type="button"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
class="chakra-icon css-onkibi"
|
||||||
|
focusable="false"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"
|
||||||
|
fill="currentColor"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
<p
|
||||||
|
class="chakra-text css-52ukzg"
|
||||||
|
>
|
||||||
|
17.03.2025
|
||||||
|
</p>
|
||||||
|
<button
|
||||||
|
class="chakra-button css-ez23ye"
|
||||||
|
type="button"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
class="chakra-icon css-onkibi"
|
||||||
|
focusable="false"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"
|
||||||
|
fill="currentColor"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
<table
|
<table
|
||||||
class="chakra-table css-5605sr"
|
class="chakra-table css-5605sr"
|
||||||
>
|
>
|
||||||
@ -216,11 +257,11 @@ exports[`Master Page should display master list and show details when master but
|
|||||||
class="css-zgoslk"
|
class="css-zgoslk"
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-controls="menu-list-:r2:"
|
aria-controls="menu-list-:r3:"
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="menu"
|
aria-haspopup="menu"
|
||||||
class="chakra-button chakra-menu__menu-button css-13sr8jm"
|
class="chakra-button chakra-menu__menu-button css-13sr8jm"
|
||||||
id="menu-button-:r2:"
|
id="menu-button-:r3:"
|
||||||
type="button"
|
type="button"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
@ -251,7 +292,7 @@ exports[`Master Page should display master list and show details when master but
|
|||||||
<div
|
<div
|
||||||
aria-orientation="vertical"
|
aria-orientation="vertical"
|
||||||
class="chakra-menu__menu-list css-s5t7bz"
|
class="chakra-menu__menu-list css-s5t7bz"
|
||||||
id="menu-list-:r2:"
|
id="menu-list-:r3:"
|
||||||
role="menu"
|
role="menu"
|
||||||
style="transform-origin: var(--popper-transform-origin); opacity: 0; visibility: hidden; transform: scale(0.8) translateZ(0);"
|
style="transform-origin: var(--popper-transform-origin); opacity: 0; visibility: hidden; transform: scale(0.8) translateZ(0);"
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
@ -260,7 +301,7 @@ exports[`Master Page should display master list and show details when master but
|
|||||||
aria-disabled="false"
|
aria-disabled="false"
|
||||||
class="chakra-menu__menuitem css-y7jzs3"
|
class="chakra-menu__menuitem css-y7jzs3"
|
||||||
data-index="0"
|
data-index="0"
|
||||||
id="menu-list-:r2:-menuitem-:r3:"
|
id="menu-list-:r3:-menuitem-:r4:"
|
||||||
role="menuitem"
|
role="menuitem"
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
type="button"
|
type="button"
|
||||||
@ -391,11 +432,11 @@ exports[`Master Page should display master list and show details when master but
|
|||||||
class="css-zgoslk"
|
class="css-zgoslk"
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-controls="menu-list-:r5:"
|
aria-controls="menu-list-:r6:"
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="menu"
|
aria-haspopup="menu"
|
||||||
class="chakra-button chakra-menu__menu-button css-13sr8jm"
|
class="chakra-button chakra-menu__menu-button css-13sr8jm"
|
||||||
id="menu-button-:r5:"
|
id="menu-button-:r6:"
|
||||||
type="button"
|
type="button"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
@ -426,7 +467,7 @@ exports[`Master Page should display master list and show details when master but
|
|||||||
<div
|
<div
|
||||||
aria-orientation="vertical"
|
aria-orientation="vertical"
|
||||||
class="chakra-menu__menu-list css-s5t7bz"
|
class="chakra-menu__menu-list css-s5t7bz"
|
||||||
id="menu-list-:r5:"
|
id="menu-list-:r6:"
|
||||||
role="menu"
|
role="menu"
|
||||||
style="transform-origin: var(--popper-transform-origin); opacity: 0; visibility: hidden; transform: scale(0.8) translateZ(0);"
|
style="transform-origin: var(--popper-transform-origin); opacity: 0; visibility: hidden; transform: scale(0.8) translateZ(0);"
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
@ -435,7 +476,7 @@ exports[`Master Page should display master list and show details when master but
|
|||||||
aria-disabled="false"
|
aria-disabled="false"
|
||||||
class="chakra-menu__menuitem css-y7jzs3"
|
class="chakra-menu__menuitem css-y7jzs3"
|
||||||
data-index="0"
|
data-index="0"
|
||||||
id="menu-list-:r5:-menuitem-:r6:"
|
id="menu-list-:r6:-menuitem-:r7:"
|
||||||
role="menuitem"
|
role="menuitem"
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
type="button"
|
type="button"
|
||||||
@ -571,11 +612,11 @@ exports[`Master Page should display master list and show details when master but
|
|||||||
class="css-zgoslk"
|
class="css-zgoslk"
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
aria-controls="menu-list-:r8:"
|
aria-controls="menu-list-:r9:"
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
aria-haspopup="menu"
|
aria-haspopup="menu"
|
||||||
class="chakra-button chakra-menu__menu-button css-13sr8jm"
|
class="chakra-button chakra-menu__menu-button css-13sr8jm"
|
||||||
id="menu-button-:r8:"
|
id="menu-button-:r9:"
|
||||||
type="button"
|
type="button"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
@ -606,7 +647,7 @@ exports[`Master Page should display master list and show details when master but
|
|||||||
<div
|
<div
|
||||||
aria-orientation="vertical"
|
aria-orientation="vertical"
|
||||||
class="chakra-menu__menu-list css-s5t7bz"
|
class="chakra-menu__menu-list css-s5t7bz"
|
||||||
id="menu-list-:r8:"
|
id="menu-list-:r9:"
|
||||||
role="menu"
|
role="menu"
|
||||||
style="transform-origin: var(--popper-transform-origin); opacity: 0; visibility: hidden; transform: scale(0.8) translateZ(0);"
|
style="transform-origin: var(--popper-transform-origin); opacity: 0; visibility: hidden; transform: scale(0.8) translateZ(0);"
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
@ -615,7 +656,7 @@ exports[`Master Page should display master list and show details when master but
|
|||||||
aria-disabled="false"
|
aria-disabled="false"
|
||||||
class="chakra-menu__menuitem css-y7jzs3"
|
class="chakra-menu__menuitem css-y7jzs3"
|
||||||
data-index="0"
|
data-index="0"
|
||||||
id="menu-list-:r8:-menuitem-:r9:"
|
id="menu-list-:r9:-menuitem-:ra:"
|
||||||
role="menuitem"
|
role="menuitem"
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
type="button"
|
type="button"
|
||||||
|
@ -25,10 +25,6 @@ exports[`Страница заказов должна корректно ото
|
|||||||
>
|
>
|
||||||
Заказы
|
Заказы
|
||||||
</a>
|
</a>
|
||||||
<hr
|
|
||||||
aria-orientation="vertical"
|
|
||||||
class="chakra-divider css-zw0v9u"
|
|
||||||
/>
|
|
||||||
<a
|
<a
|
||||||
class="chakra-button css-g11sl9"
|
class="chakra-button css-g11sl9"
|
||||||
data-testid="master-button"
|
data-testid="master-button"
|
||||||
@ -36,6 +32,12 @@ exports[`Страница заказов должна корректно ото
|
|||||||
>
|
>
|
||||||
Мастера
|
Мастера
|
||||||
</a>
|
</a>
|
||||||
|
<a
|
||||||
|
class="chakra-button css-g11sl9"
|
||||||
|
href="/auth/login"
|
||||||
|
>
|
||||||
|
Карта заказов
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
@ -71,7 +73,7 @@ exports[`Страница заказов должна корректно ото
|
|||||||
<p
|
<p
|
||||||
class="chakra-text css-52ukzg"
|
class="chakra-text css-52ukzg"
|
||||||
>
|
>
|
||||||
12.03.2025
|
17.03.2025
|
||||||
</p>
|
</p>
|
||||||
<button
|
<button
|
||||||
class="chakra-button css-ez23ye"
|
class="chakra-button css-ez23ye"
|
||||||
@ -264,13 +266,9 @@ exports[`Страница заказов должна корректно ото
|
|||||||
<td
|
<td
|
||||||
class="css-zgoslk"
|
class="css-zgoslk"
|
||||||
>
|
>
|
||||||
<button
|
<a
|
||||||
aria-controls="popover-content-:r1:"
|
|
||||||
aria-expanded="false"
|
|
||||||
aria-haspopup="dialog"
|
|
||||||
class="chakra-button css-ez23ye"
|
class="chakra-button css-ez23ye"
|
||||||
id="popover-trigger-:r1:"
|
href="/auth/login/arm//auth/login?lat=55.78&lon=49.12¤tDate=Mon Mar 17 2025 20:55:45 GMT+0300 (Moscow Standard Time)"
|
||||||
type="button"
|
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
class="chakra-icon css-onkibi"
|
class="chakra-icon css-onkibi"
|
||||||
@ -290,54 +288,7 @@ exports[`Страница заказов должна корректно ото
|
|||||||
/>
|
/>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</a>
|
||||||
<div
|
|
||||||
class="chakra-popover__popper css-iy22zq"
|
|
||||||
style="visibility: hidden; position: absolute; min-width: max-content; inset: 0 auto auto 0;"
|
|
||||||
>
|
|
||||||
<section
|
|
||||||
aria-describedby="popover-body-:r1:"
|
|
||||||
class="chakra-popover__content css-sjj62m"
|
|
||||||
id="popover-content-:r1:"
|
|
||||||
role="dialog"
|
|
||||||
style="transform-origin: var(--popper-transform-origin); opacity: 0; visibility: hidden; transform: scale(0.95) translateZ(0);"
|
|
||||||
tabindex="-1"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="chakra-popover__arrow-positioner css-0"
|
|
||||||
data-popper-arrow=""
|
|
||||||
style="position: absolute;"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="chakra-popover__arrow css-0"
|
|
||||||
data-popper-arrow-inner=""
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<button
|
|
||||||
aria-label="Close"
|
|
||||||
class="chakra-popover__close-btn css-1o8qips"
|
|
||||||
type="button"
|
|
||||||
>
|
|
||||||
<svg
|
|
||||||
aria-hidden="true"
|
|
||||||
class="chakra-icon css-onkibi"
|
|
||||||
focusable="false"
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
>
|
|
||||||
<path
|
|
||||||
d="M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"
|
|
||||||
fill="currentColor"
|
|
||||||
/>
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
<div
|
|
||||||
class="chakra-popover__body css-45vz3u"
|
|
||||||
id="popover-body-:r1:"
|
|
||||||
>
|
|
||||||
Казань, ул. Баумана, 1
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
</div>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr
|
<tr
|
||||||
@ -471,13 +422,9 @@ exports[`Страница заказов должна корректно ото
|
|||||||
<td
|
<td
|
||||||
class="css-zgoslk"
|
class="css-zgoslk"
|
||||||
>
|
>
|
||||||
<button
|
<a
|
||||||
aria-controls="popover-content-:r3:"
|
|
||||||
aria-expanded="false"
|
|
||||||
aria-haspopup="dialog"
|
|
||||||
class="chakra-button css-ez23ye"
|
class="chakra-button css-ez23ye"
|
||||||
id="popover-trigger-:r3:"
|
href="/auth/login/arm//auth/login?lat=55.78&lon=49.12¤tDate=Mon Mar 17 2025 20:55:45 GMT+0300 (Moscow Standard Time)"
|
||||||
type="button"
|
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
class="chakra-icon css-onkibi"
|
class="chakra-icon css-onkibi"
|
||||||
@ -497,54 +444,7 @@ exports[`Страница заказов должна корректно ото
|
|||||||
/>
|
/>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</a>
|
||||||
<div
|
|
||||||
class="chakra-popover__popper css-iy22zq"
|
|
||||||
style="visibility: hidden; position: absolute; min-width: max-content; inset: 0 auto auto 0;"
|
|
||||||
>
|
|
||||||
<section
|
|
||||||
aria-describedby="popover-body-:r3:"
|
|
||||||
class="chakra-popover__content css-sjj62m"
|
|
||||||
id="popover-content-:r3:"
|
|
||||||
role="dialog"
|
|
||||||
style="transform-origin: var(--popper-transform-origin); opacity: 0; visibility: hidden; transform: scale(0.95) translateZ(0);"
|
|
||||||
tabindex="-1"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="chakra-popover__arrow-positioner css-0"
|
|
||||||
data-popper-arrow=""
|
|
||||||
style="position: absolute;"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="chakra-popover__arrow css-0"
|
|
||||||
data-popper-arrow-inner=""
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<button
|
|
||||||
aria-label="Close"
|
|
||||||
class="chakra-popover__close-btn css-1o8qips"
|
|
||||||
type="button"
|
|
||||||
>
|
|
||||||
<svg
|
|
||||||
aria-hidden="true"
|
|
||||||
class="chakra-icon css-onkibi"
|
|
||||||
focusable="false"
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
>
|
|
||||||
<path
|
|
||||||
d="M.439,21.44a1.5,1.5,0,0,0,2.122,2.121L11.823,14.3a.25.25,0,0,1,.354,0l9.262,9.263a1.5,1.5,0,1,0,2.122-2.121L14.3,12.177a.25.25,0,0,1,0-.354l9.263-9.262A1.5,1.5,0,0,0,21.439.44L12.177,9.7a.25.25,0,0,1-.354,0L2.561.44A1.5,1.5,0,0,0,.439,2.561L9.7,11.823a.25.25,0,0,1,0,.354Z"
|
|
||||||
fill="currentColor"
|
|
||||||
/>
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
<div
|
|
||||||
class="chakra-popover__body css-45vz3u"
|
|
||||||
id="popover-body-:r3:"
|
|
||||||
>
|
|
||||||
Казань, ул. Баумана, 43
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
</div>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
@ -20,7 +20,7 @@ import { store } from '../../__data__/store';
|
|||||||
import Page from '../arm';
|
import Page from '../arm';
|
||||||
|
|
||||||
const server = setupServer(
|
const server = setupServer(
|
||||||
http.get('/api/arm/masters', () => {
|
http.post('/api/arm/masters/list', () => {
|
||||||
return HttpResponse.json({
|
return HttpResponse.json({
|
||||||
success: true,
|
success: true,
|
||||||
body: [
|
body: [
|
||||||
|
@ -25,7 +25,7 @@ const server = setupServer(
|
|||||||
body: [],
|
body: [],
|
||||||
});
|
});
|
||||||
}),
|
}),
|
||||||
http.get('/api/arm/masters', () => {
|
http.post('/api/arm/masters/list', () => {
|
||||||
return HttpResponse.json({
|
return HttpResponse.json({
|
||||||
success: true,
|
success: true,
|
||||||
body: [],
|
body: [],
|
||||||
|
@ -24,7 +24,7 @@ const server = setupServer(
|
|||||||
http.post('/api/arm/orders', () => {
|
http.post('/api/arm/orders', () => {
|
||||||
return HttpResponse.json({}, { status: 500 });
|
return HttpResponse.json({}, { status: 500 });
|
||||||
}),
|
}),
|
||||||
http.get('/api/arm/masters', () => {
|
http.post('/api/arm/masters/list', () => {
|
||||||
return HttpResponse.json({
|
return HttpResponse.json({
|
||||||
success: true,
|
success: true,
|
||||||
body: [
|
body: [
|
||||||
|
@ -55,7 +55,7 @@ const server = setupServer(
|
|||||||
],
|
],
|
||||||
});
|
});
|
||||||
}),
|
}),
|
||||||
http.get('/api/arm/masters', () => {
|
http.post('/api/arm/masters/list', () => {
|
||||||
return HttpResponse.json({
|
return HttpResponse.json({
|
||||||
success: true,
|
success: true,
|
||||||
body: [
|
body: [
|
||||||
|
@ -8,12 +8,12 @@ const commonError = { success: false, message: 'Что-то пошло не та
|
|||||||
|
|
||||||
const sleep =
|
const sleep =
|
||||||
(duration = 1000) =>
|
(duration = 1000) =>
|
||||||
(req, res, next) =>
|
(req, res, next) =>
|
||||||
setTimeout(next, duration);
|
setTimeout(next, duration);
|
||||||
|
|
||||||
router.use(sleep());
|
router.use(sleep());
|
||||||
|
|
||||||
router.get('/arm/masters', (req, res) => {
|
router.post('/arm/masters/list', (req, res) => {
|
||||||
res
|
res
|
||||||
.status(/error/.test(STUBS.masters) ? 500 : 200)
|
.status(/error/.test(STUBS.masters) ? 500 : 200)
|
||||||
.send(
|
.send(
|
||||||
@ -108,9 +108,7 @@ router.post('/order/:orderId/upload-car-img', (req, res) => {
|
|||||||
.send(require(`../json/landing-order-car-image-upload/${stubName}.json`));
|
.send(require(`../json/landing-order-car-image-upload/${stubName}.json`));
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
res
|
res.status(500).send(commonError);
|
||||||
.status(500)
|
|
||||||
.send(commonError);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user