Compare commits
105 Commits
feature/ch
...
v0.9.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ac006267a2 | ||
|
|
63d9d069c0 | ||
| c83ebf02bc | |||
|
|
1968df7bb3 | ||
|
|
811e0e3f24 | ||
| a2ffd6f38f | |||
|
|
20017cad3c | ||
|
|
de54ac6669 | ||
|
|
eda869622e | ||
|
|
7b3889aa02 | ||
|
|
cee124fca5 | ||
|
|
b77eccc8e8 | ||
|
|
ebfaa7ea8f | ||
|
|
0027cc09b1 | ||
|
|
dd612d662c | ||
|
|
69251745fa | ||
|
|
253e3b3856 | ||
|
|
c9c17340c6 | ||
|
|
7fc5455c37 | ||
|
|
24779e2592 | ||
|
|
9111724519 | ||
|
|
c2511e0917 | ||
| b7d935f557 | |||
| fdc20e7464 | |||
| a616d3815b | |||
| 56f65fbd3a | |||
|
|
73d649f519 | ||
|
|
cf6b8ebd51 | ||
|
|
251ea5184e | ||
|
|
f07f7aeba5 | ||
|
|
bbc96a2f27 | ||
|
|
88242c5681 | ||
|
|
b2a067a644 | ||
|
|
52fec13377 | ||
|
|
1d4b796a39 | ||
|
|
142067e9ce | ||
| 3c291baa0e | |||
|
|
3cdc47b91b | ||
|
|
901d8d78a1 | ||
|
|
7736592830 | ||
|
|
8d447c9461 | ||
| 6506b89dc7 | |||
| 89d432b360 | |||
| f6cc2efb86 | |||
| 859fa4f2e1 | |||
|
|
0ec9e146b9 | ||
|
|
1669f01879 | ||
| 658e23d4e3 | |||
| ed8ae95436 | |||
| a00aaff29d | |||
| ad1f948641 | |||
| bd66f00b81 | |||
| 9a20c9f098 | |||
| d48f8011c1 | |||
| f2319542e7 | |||
| 3fb01392f0 | |||
| 1dd14caed2 | |||
| 12982cdf9e | |||
|
|
31b440656c | ||
|
|
45c4ca16c8 | ||
| e3d316c418 | |||
|
|
4c26928d23 | ||
| 1471bf94dd | |||
|
|
d3ffaa97f8 | ||
| acd09d427c | |||
| 34bf557a6f | |||
| 5e0ac9f7a5 | |||
| 9a2ef18925 | |||
| d15bd6f7d2 | |||
| adce5392a1 | |||
| 1b01c0ba4f | |||
| 54ced18ea2 | |||
| 0ddcaa5d52 | |||
| 85d96b930c | |||
|
|
adb812280d | ||
|
|
3382ae3ada | ||
|
|
5ed023866e | ||
|
|
e73773f359 | ||
|
|
a9a9b3cadd | ||
| 06abc15c9a | |||
| 6ca7de9467 | |||
| 939f107d1c | |||
| 4f92125e6d | |||
| 3ea501161c | |||
| e8634c396f | |||
| edddf6d857 | |||
| 1276b13fec | |||
| 2aa361e3db | |||
|
|
4cda998bd7 | ||
| 9b0bda3cda | |||
| cad31605d9 | |||
| 1dee68b65d | |||
| 6096cfc15c | |||
| fc699e7890 | |||
|
|
3e0e570ff6 | ||
| 7b24804498 | |||
| 5498122109 | |||
| ef90173b80 | |||
| c7162d0045 | |||
| 885ad16782 | |||
|
|
5e24537919 | ||
| 707a77d7ad | |||
|
|
8a0dff682b | ||
|
|
b8606ac05f | ||
| 6218b6f5d8 |
8
.gitignore
vendored
@@ -130,4 +130,10 @@ dist
|
|||||||
.yarn/install-state.gz
|
.yarn/install-state.gz
|
||||||
.pnp.*
|
.pnp.*
|
||||||
|
|
||||||
.idea
|
.idea
|
||||||
|
|
||||||
|
# Playwright
|
||||||
|
/test-results/
|
||||||
|
/playwright-report/
|
||||||
|
/blob-report/
|
||||||
|
/playwright/.cache/
|
||||||
|
|||||||
5
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"i18n-ally.localesPaths": [
|
||||||
|
"locales"
|
||||||
|
]
|
||||||
|
}
|
||||||
28
Jenkinsfile
vendored
@@ -1,7 +1,7 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent {
|
agent {
|
||||||
docker {
|
docker {
|
||||||
image 'node:20'
|
image 'node:22'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -30,19 +30,21 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('checks') {
|
stage('eslint') {
|
||||||
parallel {
|
steps {
|
||||||
stage('eslint') {
|
sh 'npm run eslint'
|
||||||
steps {
|
}
|
||||||
sh 'npm run eslint'
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage('build') {
|
stage('test') {
|
||||||
steps {
|
steps {
|
||||||
sh 'npm run build'
|
sh 'npm run test'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage('build') {
|
||||||
|
steps {
|
||||||
|
sh 'npm run build'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
18
__mocks__/app-context-mock.tsx
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
import React, { PropsWithChildren } from 'react';
|
||||||
|
import { jest } from '@jest/globals';
|
||||||
|
import { BrowserRouter } from 'react-router-dom';
|
||||||
|
import { ChakraProvider, theme as chakraTheme } from '@chakra-ui/react';
|
||||||
|
import { Provider } from 'react-redux';
|
||||||
|
|
||||||
|
import ErrorBoundary from '../src/components/ErrorBoundary';
|
||||||
|
import { store } from '../src/__data__/store';
|
||||||
|
|
||||||
|
export const AppContext = jest.fn(({ children }: PropsWithChildren) => (
|
||||||
|
<Provider store={store}>
|
||||||
|
<ChakraProvider theme={chakraTheme}>
|
||||||
|
<ErrorBoundary>
|
||||||
|
<BrowserRouter>{children}</BrowserRouter>
|
||||||
|
</ErrorBoundary>
|
||||||
|
</ChakraProvider>
|
||||||
|
</Provider>
|
||||||
|
));
|
||||||
18
__mocks__/brojs-cli-mock.ts
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
import { jest } from '@jest/globals';
|
||||||
|
|
||||||
|
jest.mock('@brojs/cli', () => ({
|
||||||
|
getConfigValue: jest.fn(() => '/api'),
|
||||||
|
getFeatures: jest.fn(() => ({
|
||||||
|
['order-view-status-polling']: { value: '3000' }
|
||||||
|
})),
|
||||||
|
getNavigationValue: jest.fn((navKey: string) => {
|
||||||
|
switch (navKey) {
|
||||||
|
case 'dry-wash.main':
|
||||||
|
return '/dry-wash';
|
||||||
|
case 'dry-wash.order.create':
|
||||||
|
return '/order';
|
||||||
|
case 'dry-wash.order.view':
|
||||||
|
return '/order/:orderId';
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
}));
|
||||||
1
__mocks__/file-mock.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
module.exports = 'file';
|
||||||
6
__mocks__/lottiefiles-mock.tsx
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import { jest } from '@jest/globals';
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
jest.mock('@lottiefiles/react-lottie-player', () => ({
|
||||||
|
Player: jest.fn(() => <></>),
|
||||||
|
}));
|
||||||
13
__mocks__/react-i18next.ts
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
import localeRu from '../locales/ru.json';
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
useTranslation: (_, options) => {
|
||||||
|
const { keyPrefix } = options ?? {};
|
||||||
|
return {
|
||||||
|
t: keyPrefix ? (key: string) => localeRu[`${keyPrefix}.${key}`] : undefined,
|
||||||
|
i18n: {
|
||||||
|
language: 'ru'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
11
__mocks__/react-yandex-maps-mock.tsx
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
import { jest } from '@jest/globals';
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
jest.mock('@pbe/react-yandex-maps', () => ({
|
||||||
|
YMaps: jest.fn(() => <></>),
|
||||||
|
Map: jest.fn(() => <></>),
|
||||||
|
Placemark: jest.fn(() => <></>),
|
||||||
|
GeolocationControl: jest.fn(() => <></>),
|
||||||
|
ZoomControl: jest.fn(() => <></>),
|
||||||
|
withYMaps: jest.fn(() => <></>),
|
||||||
|
}));
|
||||||
20
__mocks__/server/handlers.ts
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
import { http, delay, HttpResponse } from 'msw';
|
||||||
|
|
||||||
|
import OrderPendingMock from '../../stubs/json/landing-order-view/id1-success-pending.json';
|
||||||
|
import OrderErrorMock from '../../stubs/json/landing-order-view/id1-error.json';
|
||||||
|
|
||||||
|
export const handlers = [
|
||||||
|
http.get('/api/order/:id', async ({ params }) => {
|
||||||
|
await delay();
|
||||||
|
|
||||||
|
const { id } = params;
|
||||||
|
if (id === 'id1') {
|
||||||
|
return HttpResponse.json(OrderPendingMock);
|
||||||
|
}
|
||||||
|
|
||||||
|
return new HttpResponse(null, {
|
||||||
|
status: 500,
|
||||||
|
statusText: OrderErrorMock.message
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
5
__mocks__/server/server.ts
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
import { setupServer } from 'msw/node';
|
||||||
|
|
||||||
|
import { handlers } from './handlers';
|
||||||
|
|
||||||
|
export const server = setupServer(...handlers);
|
||||||
1
__mocks__/style-mock.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
module.exports = {};
|
||||||
7
babel.config.js
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
module.exports = {
|
||||||
|
presets: [
|
||||||
|
'@babel/preset-env',
|
||||||
|
'@babel/preset-typescript',
|
||||||
|
['@babel/preset-react', { runtime: 'automatic' }],
|
||||||
|
],
|
||||||
|
};
|
||||||
@@ -19,8 +19,18 @@ module.exports = {
|
|||||||
'dry-wash.arm': '/arm/*',
|
'dry-wash.arm': '/arm/*',
|
||||||
},
|
},
|
||||||
features: {
|
features: {
|
||||||
'dry-wash-pl': {
|
'dry-wash': {
|
||||||
// add your features here in the format [featureName]: { value: string }
|
// add your features here in the format [featureName]: { value: string }
|
||||||
|
"order-view-status-polling": {
|
||||||
|
"on": true,
|
||||||
|
"value": "3000",
|
||||||
|
"key": "order-view-status-polling"
|
||||||
|
},
|
||||||
|
"car-img-upload": {
|
||||||
|
"on": true,
|
||||||
|
"value": "true",
|
||||||
|
"key": "car-img-upload"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
config: {
|
config: {
|
||||||
|
|||||||
26
e2e/example.spec.ts
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
import { test, expect } from '@playwright/test';
|
||||||
|
|
||||||
|
test.beforeEach('check server is up', async ({ page }) => {
|
||||||
|
try {
|
||||||
|
await page.goto('http://localhost:8099/dry-wash');
|
||||||
|
const makeOrderText = page.getByText('Сделать заказ', { exact: true });
|
||||||
|
await expect(makeOrderText).toBeVisible();
|
||||||
|
} catch (error) {
|
||||||
|
console.error('server not up', error);
|
||||||
|
test.skip();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
test('login', async ({ page }) => {
|
||||||
|
await page.goto('http://localhost:8099/dry-wash/arm');
|
||||||
|
await page.getByRole('textbox', { name: 'Username or email' }).click();
|
||||||
|
await page
|
||||||
|
.getByRole('textbox', { name: 'Username or email' })
|
||||||
|
.fill('237x237');
|
||||||
|
await page.getByRole('textbox', { name: 'Password' }).click();
|
||||||
|
await page.getByRole('textbox', { name: 'Password' }).fill('');
|
||||||
|
await page.getByRole('button', { name: 'Sign In' }).click();
|
||||||
|
await page.getByRole('heading', { name: 'Заказы' }).click();
|
||||||
|
await page.getByRole('link', { name: 'Мастера' }).click();
|
||||||
|
await page.getByRole('link', { name: 'Заказы' }).click();
|
||||||
|
});
|
||||||
@@ -1,12 +1,13 @@
|
|||||||
import globals from "globals";
|
import globals from 'globals';
|
||||||
import pluginJs from "@eslint/js";
|
import pluginJs from '@eslint/js';
|
||||||
import tseslint from "typescript-eslint";
|
import tseslint from 'typescript-eslint';
|
||||||
import pluginReact from "eslint-plugin-react";
|
import pluginReact from 'eslint-plugin-react';
|
||||||
import stylistic from '@stylistic/eslint-plugin';
|
import stylistic from '@stylistic/eslint-plugin';
|
||||||
import pluginImport from 'eslint-plugin-import';
|
import pluginImport from 'eslint-plugin-import';
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
{ files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"] },
|
{ files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'] },
|
||||||
|
|
||||||
{ languageOptions: { globals: globals.browser } },
|
{ languageOptions: { globals: globals.browser } },
|
||||||
pluginJs.configs.recommended,
|
pluginJs.configs.recommended,
|
||||||
...tseslint.configs.recommended,
|
...tseslint.configs.recommended,
|
||||||
@@ -14,35 +15,38 @@ export default [
|
|||||||
{
|
{
|
||||||
plugins: {
|
plugins: {
|
||||||
'@stylistic': stylistic,
|
'@stylistic': stylistic,
|
||||||
'import': pluginImport,
|
import: pluginImport,
|
||||||
},
|
},
|
||||||
"rules": {
|
rules: {
|
||||||
"no-unused-vars": "off",
|
'no-unused-vars': 'off',
|
||||||
"@typescript-eslint/no-unused-vars": [
|
'@typescript-eslint/no-unused-vars': [
|
||||||
"warn", // or "error"
|
'warn', // or "error"
|
||||||
{
|
{
|
||||||
"argsIgnorePattern": "^_",
|
argsIgnorePattern: '^_',
|
||||||
"varsIgnorePattern": "^_",
|
varsIgnorePattern: '^_',
|
||||||
"caughtErrorsIgnorePattern": "^_"
|
caughtErrorsIgnorePattern: '^_',
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
"sort-imports": ["off"],
|
'sort-imports': ['off'],
|
||||||
"import/order": [
|
'import/order': [
|
||||||
"error",
|
'error',
|
||||||
{
|
{
|
||||||
"groups": [
|
groups: [
|
||||||
"builtin",
|
'builtin',
|
||||||
"external",
|
'external',
|
||||||
"internal",
|
'internal',
|
||||||
"parent",
|
'parent',
|
||||||
["sibling", "index"]
|
['sibling', 'index'],
|
||||||
],
|
],
|
||||||
"newlines-between": "always",
|
'newlines-between': 'always',
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
semi: ["error", "always"],
|
semi: ['error', 'always'],
|
||||||
'@stylistic/indent': ['error', 2],
|
'@stylistic/indent': ['error', 2],
|
||||||
'react/prop-types': 'off'
|
'react/prop-types': 'off',
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
ignores: ['babel.config.js'],
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
22
jest-preset-it/jest-preset.ts
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
module.exports = {
|
||||||
|
preset: 'ts-jest',
|
||||||
|
transform: {
|
||||||
|
'^.+\\.tsx?$': 'babel-jest',
|
||||||
|
},
|
||||||
|
coverageProvider: 'v8',
|
||||||
|
coverageDirectory: 'coverage',
|
||||||
|
collectCoverageFrom: ['**/src/**/*.{ts,tsx}', '!**/src/app.tsx'],
|
||||||
|
collectCoverage: true,
|
||||||
|
clearMocks: true,
|
||||||
|
moduleNameMapper: {
|
||||||
|
'\\.(svg|webp)$': '<rootDir>/__mocks__/file-mock',
|
||||||
|
'\\.(css|scss)$': '<rootDir>/__mocks__/style-mock',
|
||||||
|
'react-i18next': '<rootDir>/__mocks__/react-i18next',
|
||||||
|
},
|
||||||
|
testEnvironmentOptions: {
|
||||||
|
customExportConditions: [''],
|
||||||
|
},
|
||||||
|
testEnvironment: 'jest-fixed-jsdom',
|
||||||
|
testPathIgnorePatterns: ['/node_modules/', '<rootDir>/e2e'],
|
||||||
|
setupFilesAfterEnv: ['<rootDir>/jest-preset-it/jest.setup.js', '<rootDir>/__mocks__/brojs-cli-mock.ts', '<rootDir>/__mocks__/lottiefiles-mock.tsx'],
|
||||||
|
};
|
||||||
5
jest-preset-it/jest.setup.js
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
// eslint-disable-next-line @typescript-eslint/no-require-imports, no-undef
|
||||||
|
require('@testing-library/jest-dom');
|
||||||
|
|
||||||
|
// eslint-disable-next-line no-undef
|
||||||
|
global.__webpack_public_path__ = '';
|
||||||
@@ -24,6 +24,7 @@
|
|||||||
"dry-wash.order-create.form.car-body-field.label": "Car body type",
|
"dry-wash.order-create.form.car-body-field.label": "Car body type",
|
||||||
"dry-wash.order-create.form.washing-datetime-field.label": "What time is the car available?",
|
"dry-wash.order-create.form.washing-datetime-field.label": "What time is the car available?",
|
||||||
"dry-wash.order-create.form.washing-location-field.label": "Where is the car located?",
|
"dry-wash.order-create.form.washing-location-field.label": "Where is the car located?",
|
||||||
|
"dry-wash.order-create.form.washing-location-field.placeholder": "Enter the address or select on the map",
|
||||||
"dry-wash.order-create.form.washing-location-field.help": "For example, 55.754364, 48.743295 Universitetskaya Street, 1, Innopolis, Verkhneuslonsky district, Republic of Tatarstan (Tatarstan), 420500",
|
"dry-wash.order-create.form.washing-location-field.help": "For example, 55.754364, 48.743295 Universitetskaya Street, 1, Innopolis, Verkhneuslonsky district, Republic of Tatarstan (Tatarstan), 420500",
|
||||||
"dry-wash.order-create.car-body-select.placeholder": "Not specified",
|
"dry-wash.order-create.car-body-select.placeholder": "Not specified",
|
||||||
"dry-wash.order-create.car-body-select.options.sedan": "Sedan",
|
"dry-wash.order-create.car-body-select.options.sedan": "Sedan",
|
||||||
@@ -38,6 +39,23 @@
|
|||||||
"dry-wash.order-create.car-body-select.options.sports-car" : "Sports-car",
|
"dry-wash.order-create.car-body-select.options.sports-car" : "Sports-car",
|
||||||
"dry-wash.order-create.car-body-select.options.other": "Other",
|
"dry-wash.order-create.car-body-select.options.other": "Other",
|
||||||
"dry-wash.order-create.form.submit-button.label": "Submit",
|
"dry-wash.order-create.form.submit-button.label": "Submit",
|
||||||
|
"dry-wash.order-create.order-creation-title": "Creating order ...",
|
||||||
|
"dry-wash.order-create.create-order-query.success.title": "The order is successfully created",
|
||||||
|
"dry-wash.order-create.create-order-query.error.title": "Failed to create an order",
|
||||||
|
"dry-wash.order-view.title": "Your order",
|
||||||
|
"dry-wash.order-view.get-order-query.error.title": "Failed to fetch the details of order",
|
||||||
|
"dry-wash.order-view.details.title": "Order #{{number}}",
|
||||||
|
"dry-wash.order-view.details.owner": "Owner",
|
||||||
|
"dry-wash.order-view.details.car": "Car",
|
||||||
|
"dry-wash.order-view.details.location": "Where",
|
||||||
|
"dry-wash.order-view.details.datetime-range": "When",
|
||||||
|
"dry-wash.order-view.details.alert": "The operator will contact you about the payment at the specified phone number",
|
||||||
|
"dry-wash.order-view.upload-car-image.field.label": "Upload a photo of your car, and our service will quickly calculate the pre-order price!",
|
||||||
|
"dry-wash.order-view.upload-car-image.field.help": "Allowed formats: .jpg, .png. Maximum size: 5MB",
|
||||||
|
"dry-wash.order-view.upload-car-image.file-input.placeholder": "Upload a file",
|
||||||
|
"dry-wash.order-view.upload-car-image.file-input.button": "Upload",
|
||||||
|
"dry-wash.order-view.upload-car-image-query.success.title": "The car image is successfully uploaded",
|
||||||
|
"dry-wash.order-view.upload-car-image-query.error.title": "Failed to upload the car image",
|
||||||
"dry-wash.arm.master.add": "Add",
|
"dry-wash.arm.master.add": "Add",
|
||||||
"dry-wash.arm.order.title": "Orders",
|
"dry-wash.arm.order.title": "Orders",
|
||||||
"dry-wash.arm.order.table.empty": "Table empty",
|
"dry-wash.arm.order.table.empty": "Table empty",
|
||||||
@@ -47,11 +65,13 @@
|
|||||||
"dry-wash.arm.order.status.pending": "Pending",
|
"dry-wash.arm.order.status.pending": "Pending",
|
||||||
"dry-wash.arm.order.status.working": "Working",
|
"dry-wash.arm.order.status.working": "Working",
|
||||||
"dry-wash.arm.order.status.canceled": "Canceled",
|
"dry-wash.arm.order.status.canceled": "Canceled",
|
||||||
"dry-wash.arm.order.status.placeholder": "Select Status",
|
"dry-wash.arm.order.status.placeholder": "Select status",
|
||||||
|
"dry-wash.arm.order.master.placeholder": "Select master",
|
||||||
"dry-wash.arm.order.table.header.carNumber": "Car Number",
|
"dry-wash.arm.order.table.header.carNumber": "Car Number",
|
||||||
"dry-wash.arm.order.table.header.washingTime": "Washing Time",
|
"dry-wash.arm.order.table.header.washingTime": "Washing Time",
|
||||||
"dry-wash.arm.order.table.header.orderDate": "Order Date",
|
"dry-wash.arm.order.table.header.orderDate": "Order Date",
|
||||||
"dry-wash.arm.order.table.header.status": "Status",
|
"dry-wash.arm.order.table.header.status": "Status",
|
||||||
|
"dry-wash.arm.order.table.header.masters": "Master",
|
||||||
"dry-wash.arm.order.table.header.telephone": "Telephone",
|
"dry-wash.arm.order.table.header.telephone": "Telephone",
|
||||||
"dry-wash.arm.order.table.header.location": "Location",
|
"dry-wash.arm.order.table.header.location": "Location",
|
||||||
"dry-wash.arm.master.title": "Masters",
|
"dry-wash.arm.master.title": "Masters",
|
||||||
@@ -62,6 +82,10 @@
|
|||||||
"dry-wash.arm.master.table.header.phone": "Phone",
|
"dry-wash.arm.master.table.header.phone": "Phone",
|
||||||
"dry-wash.arm.master.table.header.actions": "Actions",
|
"dry-wash.arm.master.table.header.actions": "Actions",
|
||||||
"dry-wash.arm.master.table.actionsMenu.delete": "Delete Master",
|
"dry-wash.arm.master.table.actionsMenu.delete": "Delete Master",
|
||||||
|
"dry-wash.arm.master.schedule.empty": "free",
|
||||||
|
"dry-wash.arm.master.editable.aria.cancel": "Undo changes",
|
||||||
|
"dry-wash.arm.master.editable.aria.save": "Save changes ",
|
||||||
|
"dry-wash.arm.master.editable.aria.edit": "Edit",
|
||||||
"dry-wash.arm.master.drawer.title": "Add New Master",
|
"dry-wash.arm.master.drawer.title": "Add New Master",
|
||||||
"dry-wash.arm.master.drawer.inputName.label": "Full Name",
|
"dry-wash.arm.master.drawer.inputName.label": "Full Name",
|
||||||
"dry-wash.arm.master.drawer.inputName.placeholder": "Enter Full Name",
|
"dry-wash.arm.master.drawer.inputName.placeholder": "Enter Full Name",
|
||||||
@@ -69,6 +93,15 @@
|
|||||||
"dry-wash.arm.master.drawer.inputPhone.placeholder": "Enter Phone Number",
|
"dry-wash.arm.master.drawer.inputPhone.placeholder": "Enter Phone Number",
|
||||||
"dry-wash.arm.master.drawer.button.save": "Save",
|
"dry-wash.arm.master.drawer.button.save": "Save",
|
||||||
"dry-wash.arm.master.drawer.button.cancel": "Cancel",
|
"dry-wash.arm.master.drawer.button.cancel": "Cancel",
|
||||||
|
"dry-wash.arm.master.drawer.toast.create-master": "Master created",
|
||||||
|
"dry-wash.arm.master.drawer.toast.error.empty-fields": "Fields cannot be empty",
|
||||||
|
"dry-wash.arm.master.drawer.toast.error.base": "Error",
|
||||||
|
"dry-wash.arm.master.drawer.toast.error.create-master": "Error creating master",
|
||||||
|
"dry-wash.arm.master.drawer.toast.error.create-master-details": "Failed to add master. Please try again",
|
||||||
|
"dry-wash.arm.master.drawer.form.name.required": "Master name is required",
|
||||||
|
"dry-wash.arm.master.drawer.form.phone.required": "Phone number is required",
|
||||||
|
"dry-wash.arm.master.drawer.form.phone.pattern": "Invalid phone number",
|
||||||
|
"dry-wash.arm.master.drawer.form.name.minLength": "Name must contain at least 2 characters",
|
||||||
"dry-wash.arm.master.sideBar.orders": "Orders",
|
"dry-wash.arm.master.sideBar.orders": "Orders",
|
||||||
"dry-wash.arm.master.sideBar.master": "Masters",
|
"dry-wash.arm.master.sideBar.master": "Masters",
|
||||||
"dry-wash.arm.master.sideBar.title": "Dry Master",
|
"dry-wash.arm.master.sideBar.title": "Dry Master",
|
||||||
|
|||||||
@@ -7,10 +7,12 @@
|
|||||||
"dry-wash.arm.order.status.working": "В работе",
|
"dry-wash.arm.order.status.working": "В работе",
|
||||||
"dry-wash.arm.order.status.canceled": "Отменено",
|
"dry-wash.arm.order.status.canceled": "Отменено",
|
||||||
"dry-wash.arm.order.status.placeholder": "Выберите статус",
|
"dry-wash.arm.order.status.placeholder": "Выберите статус",
|
||||||
|
"dry-wash.arm.order.master.placeholder": "Выберите мастера",
|
||||||
"dry-wash.arm.order.table.header.carNumber": "Номер машины",
|
"dry-wash.arm.order.table.header.carNumber": "Номер машины",
|
||||||
"dry-wash.arm.order.table.header.washingTime": "Время мойки",
|
"dry-wash.arm.order.table.header.washingTime": "Время мойки",
|
||||||
"dry-wash.arm.order.table.header.orderDate": "Дата заказа",
|
"dry-wash.arm.order.table.header.orderDate": "Дата заказа",
|
||||||
"dry-wash.arm.order.table.header.status": "Статус",
|
"dry-wash.arm.order.table.header.status": "Статус",
|
||||||
|
"dry-wash.arm.order.table.header.masters": "Мастер",
|
||||||
"dry-wash.arm.order.table.header.telephone": "Телефон",
|
"dry-wash.arm.order.table.header.telephone": "Телефон",
|
||||||
"dry-wash.arm.order.table.header.location": "Расположение",
|
"dry-wash.arm.order.table.header.location": "Расположение",
|
||||||
"dry-wash.arm.order.table.empty": "Список пуст",
|
"dry-wash.arm.order.table.empty": "Список пуст",
|
||||||
@@ -23,6 +25,16 @@
|
|||||||
"dry-wash.arm.master.table.header.phone": "Телефон",
|
"dry-wash.arm.master.table.header.phone": "Телефон",
|
||||||
"dry-wash.arm.master.table.header.actions": "Действия",
|
"dry-wash.arm.master.table.header.actions": "Действия",
|
||||||
"dry-wash.arm.master.table.actionsMenu.delete": "Удалить мастера",
|
"dry-wash.arm.master.table.actionsMenu.delete": "Удалить мастера",
|
||||||
|
"dry-wash.arm.master.table.actionsMenu.toast.success": "Мастер удалён",
|
||||||
|
"dry-wash.arm.master.table.actionsMenu.toast.error.title": "Ошибка!",
|
||||||
|
"dry-wash.arm.master.table.actionsMenu.toast.error.description": "Не удалось удалить мастера. Попробуйте ещё раз.",
|
||||||
|
"dry-wash.arm.master.schedule.empty": "Свободен",
|
||||||
|
"dry-wash.arm.master.editable.aria.cancel": "Отменить изменения",
|
||||||
|
"dry-wash.arm.master.editable.aria.save": "Сохранить изменения",
|
||||||
|
"dry-wash.arm.master.editable.aria.edit": "Редактировать",
|
||||||
|
"dry-wash.arm.master.editable.toast.success": "Успешно!",
|
||||||
|
"dry-wash.arm.master.editable.toast.error.description": "Не удалось обновить данные",
|
||||||
|
"dry-wash.arm.master.editable.toast.error.title": "Ошибка!",
|
||||||
"dry-wash.arm.master.drawer.title": "Добавить нового мастера",
|
"dry-wash.arm.master.drawer.title": "Добавить нового мастера",
|
||||||
"dry-wash.arm.master.drawer.inputName.label": "ФИО",
|
"dry-wash.arm.master.drawer.inputName.label": "ФИО",
|
||||||
"dry-wash.arm.master.drawer.inputName.placeholder": "Введите ФИО",
|
"dry-wash.arm.master.drawer.inputName.placeholder": "Введите ФИО",
|
||||||
@@ -30,6 +42,15 @@
|
|||||||
"dry-wash.arm.master.drawer.inputPhone.placeholder": "Введите номер телефона",
|
"dry-wash.arm.master.drawer.inputPhone.placeholder": "Введите номер телефона",
|
||||||
"dry-wash.arm.master.drawer.button.save": "Сохранить",
|
"dry-wash.arm.master.drawer.button.save": "Сохранить",
|
||||||
"dry-wash.arm.master.drawer.button.cancel": "Отменить",
|
"dry-wash.arm.master.drawer.button.cancel": "Отменить",
|
||||||
|
"dry-wash.arm.master.drawer.toast.create-master": "Мастер создан",
|
||||||
|
"dry-wash.arm.master.drawer.toast.error.empty-fields": "Поля не могут быть пустыми",
|
||||||
|
"dry-wash.arm.master.drawer.toast.error.base": "Ошибка",
|
||||||
|
"dry-wash.arm.master.drawer.toast.error.create-master": "Ошибка при создании мастера",
|
||||||
|
"dry-wash.arm.master.drawer.toast.error.create-master-details": "Не удалось добавить мастера. Попробуйте еще раз",
|
||||||
|
"dry-wash.arm.master.drawer.form.name.required": "Имя мастера обязательно",
|
||||||
|
"dry-wash.arm.master.drawer.form.phone.required": "Телефон обязателен",
|
||||||
|
"dry-wash.arm.master.drawer.form.phone.pattern": "Некорректный номер телефона",
|
||||||
|
"dry-wash.arm.master.drawer.form.name.minLength": "Имя должно содержать минимум 2 символа",
|
||||||
"dry-wash.arm.master.sideBar.orders": "Заказы",
|
"dry-wash.arm.master.sideBar.orders": "Заказы",
|
||||||
"dry-wash.arm.master.sideBar.master": "Мастера",
|
"dry-wash.arm.master.sideBar.master": "Мастера",
|
||||||
"dry-wash.arm.master.sideBar.title": "Сухой мастер",
|
"dry-wash.arm.master.sideBar.title": "Сухой мастер",
|
||||||
@@ -58,20 +79,38 @@
|
|||||||
"dry-wash.order-create.form.car-body-field.label": "Тип кузова автомобиля",
|
"dry-wash.order-create.form.car-body-field.label": "Тип кузова автомобиля",
|
||||||
"dry-wash.order-create.form.washing-datetime-field.label": "В какое время автомобиль доступен?",
|
"dry-wash.order-create.form.washing-datetime-field.label": "В какое время автомобиль доступен?",
|
||||||
"dry-wash.order-create.form.washing-location-field.label": "Где находится автомобиль?",
|
"dry-wash.order-create.form.washing-location-field.label": "Где находится автомобиль?",
|
||||||
|
"dry-wash.order-create.form.washing-location-field.placeholder": "Введите адрес или выберите на карте",
|
||||||
"dry-wash.order-create.form.washing-location-field.help": "Например, 55.754364, 48.743295 Университетская улица, 1, Иннополис, Верхнеуслонский район, Республика Татарстан (Татарстан), 420500",
|
"dry-wash.order-create.form.washing-location-field.help": "Например, 55.754364, 48.743295 Университетская улица, 1, Иннополис, Верхнеуслонский район, Республика Татарстан (Татарстан), 420500",
|
||||||
"dry-wash.order-create.car-body-select.placeholder": "Не указан",
|
"dry-wash.order-create.car-body-select.placeholder": "Не указан",
|
||||||
"dry-wash.order-create.car-body-select.options.sedan": "Седан",
|
"dry-wash.order-create.car-body-select.options.sedan": "Седан",
|
||||||
"dry-wash.order-create.car-body-select.options.hatchback" : "Хэтчбек",
|
"dry-wash.order-create.car-body-select.options.hatchback": "Хэтчбек",
|
||||||
"dry-wash.order-create.car-body-select.options.crossover" : "Кроссовер",
|
"dry-wash.order-create.car-body-select.options.crossover": "Кроссовер",
|
||||||
"dry-wash.order-create.car-body-select.options.suv" : "Внедорожник",
|
"dry-wash.order-create.car-body-select.options.suv": "Внедорожник",
|
||||||
"dry-wash.order-create.car-body-select.options.station-wagon" : "Универсал",
|
"dry-wash.order-create.car-body-select.options.station-wagon": "Универсал",
|
||||||
"dry-wash.order-create.car-body-select.options.coupe" : "Купе",
|
"dry-wash.order-create.car-body-select.options.coupe": "Купе",
|
||||||
"dry-wash.order-create.car-body-select.options.minivan" : "Минивэн",
|
"dry-wash.order-create.car-body-select.options.minivan": "Минивэн",
|
||||||
"dry-wash.order-create.car-body-select.options.pickup" : "Пикап",
|
"dry-wash.order-create.car-body-select.options.pickup": "Пикап",
|
||||||
"dry-wash.order-create.car-body-select.options.liftback" : "Лифтбек",
|
"dry-wash.order-create.car-body-select.options.liftback": "Лифтбек",
|
||||||
"dry-wash.order-create.car-body-select.options.sports-car" : "Спорткар",
|
"dry-wash.order-create.car-body-select.options.sports-car": "Спорткар",
|
||||||
"dry-wash.order-create.car-body-select.options.other": "Другой",
|
"dry-wash.order-create.car-body-select.options.other": "Другой",
|
||||||
"dry-wash.order-create.form.submit-button.label": "Отправить",
|
"dry-wash.order-create.form.submit-button.label": "Отправить",
|
||||||
|
"dry-wash.order-create.order-creation-title": "Создаем заказ ...",
|
||||||
|
"dry-wash.order-create.create-order-query.success.title": "Заказ успешно создан",
|
||||||
|
"dry-wash.order-create.create-order-query.error.title": "Не удалось создать заказ",
|
||||||
|
"dry-wash.order-view.title": "Ваш заказ",
|
||||||
|
"dry-wash.order-view.get-order-query.error.title": "Не удалось загрузить детали заказа",
|
||||||
|
"dry-wash.order-view.details.title": "Заказ №{{number}}",
|
||||||
|
"dry-wash.order-view.details.owner": "Владелец",
|
||||||
|
"dry-wash.order-view.details.car": "Автомобиль",
|
||||||
|
"dry-wash.order-view.details.location": "Где",
|
||||||
|
"dry-wash.order-view.details.datetime-range": "Когда",
|
||||||
|
"dry-wash.order-view.details.alert": "С вами свяжется оператор насчет оплаты по указанному номеру телефона",
|
||||||
|
"dry-wash.order-view.upload-car-image.field.label": "Загрузите фото вашего автомобиля, и наш сервис быстро рассчитает предварительную стоимость заказа!",
|
||||||
|
"dry-wash.order-view.upload-car-image.field.help": "Допустимые форматы: .jpg, .png. Максимальный размер: 5МБ",
|
||||||
|
"dry-wash.order-view.upload-car-image.file-input.placeholder": "Загрузите файл",
|
||||||
|
"dry-wash.order-view.upload-car-image.file-input.button": "Загрузить",
|
||||||
|
"dry-wash.order-view.upload-car-image-query.success.title": "Изображение автомобиля успешно загружено",
|
||||||
|
"dry-wash.order-view.upload-car-image-query.error.title": "Не удалось загрузить изображение автомобиля",
|
||||||
"dry-wash.notFound.title": "Страница не найдена",
|
"dry-wash.notFound.title": "Страница не найдена",
|
||||||
"dry-wash.notFound.description": "К сожалению, запрашиваемая вами страница не существует.",
|
"dry-wash.notFound.description": "К сожалению, запрашиваемая вами страница не существует.",
|
||||||
"dry-wash.notFound.button.back": "Вернуться на главную",
|
"dry-wash.notFound.button.back": "Вернуться на главную",
|
||||||
@@ -79,4 +118,4 @@
|
|||||||
"dry-wash.errorBoundary.description": "Мы уже работаем над исправлением проблемы",
|
"dry-wash.errorBoundary.description": "Мы уже работаем над исправлением проблемы",
|
||||||
"dry-wash.errorBoundary.button.reload": "Перезагрузить страницу",
|
"dry-wash.errorBoundary.button.reload": "Перезагрузить страницу",
|
||||||
"dry-wash.washTime.timeSlot": "{{start}} - {{end}}"
|
"dry-wash.washTime.timeSlot": "{{start}} - {{end}}"
|
||||||
}
|
}
|
||||||
|
|||||||
27110
package-lock.json
generated
124
package.json
@@ -1,51 +1,77 @@
|
|||||||
{
|
{
|
||||||
"name": "dry-wash",
|
"name": "dry-wash",
|
||||||
"version": "0.2.0",
|
"version": "0.9.0",
|
||||||
"description": "<a id=\"readme-top\"></a>",
|
"description": "<a id=\"readme-top\"></a>",
|
||||||
"main": "./src/index.tsx",
|
"main": "./src/index.tsx",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "jest -u",
|
||||||
"start": "brojs server --port=8099 --with-open-browser",
|
"start": "brojs server --port=8099 --with-open-browser",
|
||||||
"build": "npm run clean && brojs build --dev",
|
"build": "npm run clean && brojs build --dev",
|
||||||
"build:prod": "npm run clean && brojs build",
|
"build:prod": "npm run clean && brojs build",
|
||||||
"clean": "rimraf dist",
|
"clean": "rimraf dist",
|
||||||
"eslint": "npx eslint .",
|
"eslint": "npx eslint src",
|
||||||
"eslint:fix": "npx eslint . --fix",
|
"eslint:fix": "npx eslint src --fix",
|
||||||
"preversion": "npm run eslint"
|
"preversion": "npm run eslint"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@brojs/cli": "^1.6.3",
|
"@babel/core": "^7.26.7",
|
||||||
"@chakra-ui/icons": "^2.2.4",
|
"@babel/preset-env": "^7.26.7",
|
||||||
"@chakra-ui/react": "^2.4.2",
|
"@babel/preset-react": "^7.26.3",
|
||||||
"@emotion/react": "^11.4.1",
|
"@babel/preset-typescript": "^7.26.0",
|
||||||
"@emotion/styled": "^11.3.0",
|
"@brojs/cli": "^1.8.4",
|
||||||
"@fontsource/open-sans": "^5.1.0",
|
"@chakra-ui/icons": "^2.2.4",
|
||||||
"@lottiefiles/react-lottie-player": "^3.5.4",
|
"@chakra-ui/react": "^2.10.5",
|
||||||
"@types/react": "^18.3.12",
|
"@emotion/react": "^11.4.1",
|
||||||
"dayjs": "^1.11.13",
|
"@emotion/styled": "^11.3.0",
|
||||||
"express": "^4.21.1",
|
"@fontsource/open-sans": "^5.1.0",
|
||||||
"framer-motion": "^6.2.8",
|
"@lottiefiles/react-lottie-player": "^3.5.4",
|
||||||
"i18next": "^23.16.4",
|
"@pbe/react-yandex-maps": "^1.2.5",
|
||||||
"react": "^18.3.1",
|
"@reduxjs/toolkit": "^2.5.0",
|
||||||
"react-dom": "^18.3.1",
|
"@testing-library/dom": "^10.4.0",
|
||||||
"react-hook-form": "^7.53.2",
|
"@testing-library/react": "^16.2.0",
|
||||||
"react-i18next": "^15.1.1",
|
"@types/react": "^18.3.12",
|
||||||
"react-icons": "^5.3.0",
|
"babel-jest": "^29.7.0",
|
||||||
"react-phone-number-input": "^3.4.9",
|
"dayjs": "^1.11.13",
|
||||||
"react-router-dom": "^6.27.0"
|
"express": "^4.21.1",
|
||||||
},
|
"framer-motion": "^6.2.8",
|
||||||
"devDependencies": {
|
"i18next": "^23.16.4",
|
||||||
"@eslint/js": "^9.14.0",
|
"jest": "^29.7.0",
|
||||||
"@stylistic/eslint-plugin": "^2.10.1",
|
"jest-environment-jsdom": "^29.7.0",
|
||||||
"@types/react-dom": "^18.3.1",
|
"jest-fixed-jsdom": "^0.0.9",
|
||||||
"eslint": "^9.14.0",
|
"keycloak-js": "^23.0.7",
|
||||||
"eslint-plugin-import": "^2.31.0",
|
"msw": "^2.7.0",
|
||||||
"eslint-plugin-react": "^7.37.2",
|
"react": "^18.3.1",
|
||||||
"globals": "^15.11.0",
|
"react-dom": "^18.3.1",
|
||||||
"prettier": "3.3.3",
|
"react-hook-form": "^7.53.2",
|
||||||
"typescript-eslint": "^8.12.2"
|
"react-i18next": "^15.1.1",
|
||||||
}
|
"react-icons": "^5.3.0",
|
||||||
|
"react-phone-number-input": "^3.4.9",
|
||||||
|
"react-redux": "^9.2.0",
|
||||||
|
"react-router-dom": "^6.27.0",
|
||||||
|
"ts-jest": "^29.2.5",
|
||||||
|
"ts-node": "^10.9.2"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@eslint/js": "^9.14.0",
|
||||||
|
"@playwright/test": "^1.50.1",
|
||||||
|
"@stylistic/eslint-plugin": "^2.10.1",
|
||||||
|
"@testing-library/jest-dom": "^6.6.3",
|
||||||
|
"@types/jest": "^29.5.14",
|
||||||
|
"@types/node": "^22.13.1",
|
||||||
|
"@types/react-dom": "^18.3.1",
|
||||||
|
"@types/testing-library__jest-dom": "^5.14.9",
|
||||||
|
"eslint": "^9.14.0",
|
||||||
|
"eslint-plugin-import": "^2.31.0",
|
||||||
|
"eslint-plugin-react": "^7.37.2",
|
||||||
|
"globals": "^15.11.0",
|
||||||
|
"prettier": "3.3.3",
|
||||||
|
"typescript": "^5.7.3",
|
||||||
|
"typescript-eslint": "^8.12.2"
|
||||||
|
},
|
||||||
|
"jest": {
|
||||||
|
"preset": "./jest-preset-it/jest-preset.ts"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
79
playwright.config.ts
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
import { defineConfig, devices } from '@playwright/test';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Read environment variables from file.
|
||||||
|
* https://github.com/motdotla/dotenv
|
||||||
|
*/
|
||||||
|
// import dotenv from 'dotenv';
|
||||||
|
// import path from 'path';
|
||||||
|
// dotenv.config({ path: path.resolve(__dirname, '.env') });
|
||||||
|
|
||||||
|
/**
|
||||||
|
* See https://playwright.dev/docs/test-configuration.
|
||||||
|
*/
|
||||||
|
export default defineConfig({
|
||||||
|
testDir: './tests',
|
||||||
|
/* Run tests in files in parallel */
|
||||||
|
fullyParallel: true,
|
||||||
|
/* Fail the build on CI if you accidentally left test.only in the source code. */
|
||||||
|
forbidOnly: !!process.env.CI,
|
||||||
|
/* Retry on CI only */
|
||||||
|
retries: process.env.CI ? 2 : 0,
|
||||||
|
/* Opt out of parallel tests on CI. */
|
||||||
|
workers: process.env.CI ? 1 : undefined,
|
||||||
|
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
|
||||||
|
reporter: 'html',
|
||||||
|
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
|
||||||
|
use: {
|
||||||
|
/* Base URL to use in actions like `await page.goto('/')`. */
|
||||||
|
// baseURL: 'http://127.0.0.1:3000',
|
||||||
|
|
||||||
|
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
|
||||||
|
trace: 'on-first-retry',
|
||||||
|
},
|
||||||
|
|
||||||
|
/* Configure projects for major browsers */
|
||||||
|
projects: [
|
||||||
|
{
|
||||||
|
name: 'chromium',
|
||||||
|
use: { ...devices['Desktop Chrome'] },
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
name: 'firefox',
|
||||||
|
use: { ...devices['Desktop Firefox'] },
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
name: 'webkit',
|
||||||
|
use: { ...devices['Desktop Safari'] },
|
||||||
|
},
|
||||||
|
|
||||||
|
/* Test against mobile viewports. */
|
||||||
|
// {
|
||||||
|
// name: 'Mobile Chrome',
|
||||||
|
// use: { ...devices['Pixel 5'] },
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// name: 'Mobile Safari',
|
||||||
|
// use: { ...devices['iPhone 12'] },
|
||||||
|
// },
|
||||||
|
|
||||||
|
/* Test against branded browsers. */
|
||||||
|
// {
|
||||||
|
// name: 'Microsoft Edge',
|
||||||
|
// use: { ...devices['Desktop Edge'], channel: 'msedge' },
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// name: 'Google Chrome',
|
||||||
|
// use: { ...devices['Desktop Chrome'], channel: 'chrome' },
|
||||||
|
// },
|
||||||
|
],
|
||||||
|
|
||||||
|
/* Run your local dev server before starting the tests */
|
||||||
|
// webServer: {
|
||||||
|
// command: 'npm run start',
|
||||||
|
// url: 'http://127.0.0.1:3000',
|
||||||
|
// reuseExistingServer: !process.env.CI,
|
||||||
|
// },
|
||||||
|
});
|
||||||
18
src/__data__/features.ts
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
import { getFeatures } from "@brojs/cli";
|
||||||
|
|
||||||
|
const features = getFeatures('dry-wash');
|
||||||
|
|
||||||
|
export const FEATURE = {
|
||||||
|
orderViewStatusPolling: {
|
||||||
|
isOn: Boolean(features?.['order-view-status-polling']),
|
||||||
|
getValue: () => {
|
||||||
|
const interval = parseInt(features?.['order-view-status-polling']?.value);
|
||||||
|
if (!Number.isNaN(interval)) {
|
||||||
|
return interval;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
carImageUpload: {
|
||||||
|
isOn: Boolean(features?.['car-img-upload'])
|
||||||
|
}
|
||||||
|
};
|
||||||
84
src/__data__/service/api.ts
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react';
|
||||||
|
import { getConfigValue } from '@brojs/cli';
|
||||||
|
import dayjs from 'dayjs';
|
||||||
|
|
||||||
|
import { Master, OrderArm } from '../../models/api';
|
||||||
|
|
||||||
|
import { extractBodyFromResponse } from './utils';
|
||||||
|
|
||||||
|
export type UpdateMasterPayload = Required<Pick<Master, 'id'>> &
|
||||||
|
Partial<Omit<Master, 'id'>>;
|
||||||
|
|
||||||
|
type UpdateOrderProps = Required<Pick<OrderArm, 'id'>> &
|
||||||
|
Partial<Pick<OrderArm, 'status' | 'notes'>> & {
|
||||||
|
master?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const api = createApi({
|
||||||
|
reducerPath: 'api',
|
||||||
|
baseQuery: fetchBaseQuery({
|
||||||
|
baseUrl: new URL(getConfigValue('dry-wash.api'), location.origin).href,
|
||||||
|
}),
|
||||||
|
tagTypes: ['Masters', 'Orders'],
|
||||||
|
endpoints: (builder) => ({
|
||||||
|
getMasters: builder.query<Master[], void>({
|
||||||
|
query: () => ({ url: '/arm/masters' }),
|
||||||
|
transformResponse: extractBodyFromResponse<Master[]>,
|
||||||
|
providesTags: ['Masters'],
|
||||||
|
}),
|
||||||
|
updateOrders: builder.mutation<void, UpdateOrderProps>({
|
||||||
|
query: ({ id, status, notes, master }) => ({
|
||||||
|
url: `/order/${id}`,
|
||||||
|
method: 'PATCH',
|
||||||
|
body: { status, notes, master },
|
||||||
|
}),
|
||||||
|
invalidatesTags: ['Orders'],
|
||||||
|
}),
|
||||||
|
getOrders: builder.query<OrderArm[], { date: Date }>({
|
||||||
|
query: ({ date }) => {
|
||||||
|
const startDate = dayjs(date).startOf('day').toISOString();
|
||||||
|
const endDate = dayjs(date).endOf('day').toISOString();
|
||||||
|
return {
|
||||||
|
url: '/arm/orders',
|
||||||
|
method: 'POST',
|
||||||
|
body: { startDate, endDate },
|
||||||
|
};
|
||||||
|
},
|
||||||
|
transformResponse: extractBodyFromResponse<OrderArm[]>,
|
||||||
|
providesTags: ['Orders'],
|
||||||
|
}),
|
||||||
|
|
||||||
|
addMaster: builder.mutation<void, Pick<Master, 'name' | 'phone'>>({
|
||||||
|
query: (master) => ({
|
||||||
|
url: '/arm/masters',
|
||||||
|
method: 'POST',
|
||||||
|
body: master,
|
||||||
|
}),
|
||||||
|
invalidatesTags: ['Masters'],
|
||||||
|
}),
|
||||||
|
deleteMaster: builder.mutation<void, { id: string }>({
|
||||||
|
query: ({ id }) => ({
|
||||||
|
url: `/arm/masters/${id}`,
|
||||||
|
method: 'DELETE',
|
||||||
|
}),
|
||||||
|
invalidatesTags: ['Masters'],
|
||||||
|
}),
|
||||||
|
updateMaster: builder.mutation<void, UpdateMasterPayload>({
|
||||||
|
query: ({ id, name, phone }) => ({
|
||||||
|
url: `/arm/masters/${id}`,
|
||||||
|
method: 'PATCH',
|
||||||
|
body: { name, phone },
|
||||||
|
}),
|
||||||
|
invalidatesTags: ['Masters'],
|
||||||
|
}),
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
export const {
|
||||||
|
useGetMastersQuery,
|
||||||
|
useAddMasterMutation,
|
||||||
|
useDeleteMasterMutation,
|
||||||
|
useUpdateMasterMutation,
|
||||||
|
useGetOrdersQuery,
|
||||||
|
useUpdateOrdersMutation,
|
||||||
|
} = api;
|
||||||
31
src/__data__/service/landing.api.ts
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
import { GetOrder, CreateOrder, UploadCarImage } from "../../models/api";
|
||||||
|
|
||||||
|
import { api } from "./api";
|
||||||
|
import { extractBodyFromResponse, extractErrorMessageFromResponse } from "./utils";
|
||||||
|
|
||||||
|
export const landingApi = api.injectEndpoints({
|
||||||
|
endpoints: ({ mutation, query }) => ({
|
||||||
|
getOrder: query<GetOrder.Response, GetOrder.Params>({
|
||||||
|
query: ({ orderId }) => `/order/${orderId}`,
|
||||||
|
transformResponse: extractBodyFromResponse<GetOrder.Response>,
|
||||||
|
transformErrorResponse: extractErrorMessageFromResponse,
|
||||||
|
}),
|
||||||
|
createOrder: mutation<CreateOrder.Response, CreateOrder.Params>({
|
||||||
|
query: ({ body }) => ({
|
||||||
|
url: `/order/create`,
|
||||||
|
body,
|
||||||
|
method: 'POST'
|
||||||
|
}),
|
||||||
|
transformResponse: extractBodyFromResponse<CreateOrder.Response>,
|
||||||
|
transformErrorResponse: extractErrorMessageFromResponse,
|
||||||
|
}),
|
||||||
|
uploadCarImage: mutation<UploadCarImage.Response, UploadCarImage.Params>({
|
||||||
|
query: ({ orderId, body }) => ({
|
||||||
|
url: `/order/${orderId}/upload-car-img`,
|
||||||
|
body,
|
||||||
|
method: 'POST'
|
||||||
|
}),
|
||||||
|
transformErrorResponse: extractErrorMessageFromResponse,
|
||||||
|
}),
|
||||||
|
})
|
||||||
|
});
|
||||||
22
src/__data__/service/utils.ts
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
import { FetchBaseQueryError } from '@reduxjs/toolkit/query';
|
||||||
|
|
||||||
|
import { BaseResponse } from '../../models/api';
|
||||||
|
|
||||||
|
export const extractBodyFromResponse = <Body>(response: BaseResponse<Body>) => {
|
||||||
|
if (response.success) {
|
||||||
|
return response.body;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const extractErrorMessageFromResponse = ({
|
||||||
|
data,
|
||||||
|
}: FetchBaseQueryError) => {
|
||||||
|
if (
|
||||||
|
typeof data === 'object' &&
|
||||||
|
data !== null &&
|
||||||
|
'error' in data &&
|
||||||
|
typeof data.error === 'string'
|
||||||
|
) {
|
||||||
|
return data.error;
|
||||||
|
}
|
||||||
|
};
|
||||||
16
src/__data__/store.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import { configureStore } from '@reduxjs/toolkit';
|
||||||
|
|
||||||
|
import { api } from './service/api';
|
||||||
|
|
||||||
|
export const store = configureStore({
|
||||||
|
reducer: {
|
||||||
|
[api.reducerPath]: api.reducer,
|
||||||
|
},
|
||||||
|
middleware: (getDefaultMiddleware) =>
|
||||||
|
getDefaultMiddleware({
|
||||||
|
serializableCheck: false
|
||||||
|
}).concat(api.middleware),
|
||||||
|
});
|
||||||
|
|
||||||
|
export type RootState = ReturnType<typeof store.getState>;
|
||||||
|
export type AppDispatch = typeof store.dispatch;
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
import { getConfigValue } from '@brojs/cli';
|
|
||||||
|
|
||||||
enum ArmEndpoints {
|
|
||||||
ORDERS = '/arm/orders',
|
|
||||||
MASTERS = '/arm/masters',
|
|
||||||
}
|
|
||||||
|
|
||||||
const armService = () => {
|
|
||||||
const endpoint = getConfigValue('dry-wash.api');
|
|
||||||
|
|
||||||
const fetchOrders = async ({ date }: { date: Date }) => {
|
|
||||||
const response = await fetch(`${endpoint}${ArmEndpoints.ORDERS}`, {
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
},
|
|
||||||
body: JSON.stringify({ date }),
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(`Failed to fetch orders: ${response.status}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
return await response.json();
|
|
||||||
};
|
|
||||||
|
|
||||||
const fetchMasters = async () => {
|
|
||||||
const response = await fetch(`${endpoint}${ArmEndpoints.MASTERS}`);
|
|
||||||
|
|
||||||
if (!response.ok) {
|
|
||||||
throw new Error(`Failed to fetch masters: ${response.status}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
return await response.json();
|
|
||||||
};
|
|
||||||
|
|
||||||
return { fetchOrders, fetchMasters };
|
|
||||||
};
|
|
||||||
|
|
||||||
export { armService, ArmEndpoints };
|
|
||||||
18
src/app.tsx
@@ -1,19 +1,23 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { BrowserRouter } from 'react-router-dom';
|
import { BrowserRouter } from 'react-router-dom';
|
||||||
import { ChakraProvider, theme as chakraTheme } from '@chakra-ui/react';
|
import { ChakraProvider, theme as chakraTheme } from '@chakra-ui/react';
|
||||||
|
import { Provider } from 'react-redux';
|
||||||
|
|
||||||
import Routers from './routes';
|
import Routers from './routes';
|
||||||
import ErrorBoundary from './components/ErrorBoundary';
|
import ErrorBoundary from './components/ErrorBoundary';
|
||||||
|
import { store } from './__data__/store';
|
||||||
|
|
||||||
const App = () => {
|
const App = () => {
|
||||||
return (
|
return (
|
||||||
<ChakraProvider theme={chakraTheme}>
|
<Provider store={store}>
|
||||||
<ErrorBoundary>
|
<ChakraProvider theme={chakraTheme}>
|
||||||
<BrowserRouter>
|
<ErrorBoundary>
|
||||||
<Routers />
|
<BrowserRouter>
|
||||||
</BrowserRouter>
|
<Routers />
|
||||||
</ErrorBoundary>
|
</BrowserRouter>
|
||||||
</ChakraProvider>
|
</ErrorBoundary>
|
||||||
|
</ChakraProvider>
|
||||||
|
</Provider>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
1
src/assets/animation/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export { default as OrderCreationAnimation } from './order-creation.json';
|
||||||
1
src/assets/animation/order-creation.json
Normal file
BIN
src/assets/images/car-body-type/coupe.webp
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
src/assets/images/car-body-type/crossover.webp
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
src/assets/images/car-body-type/hatchback.webp
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
11
src/assets/images/car-body-type/index.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
export { default as CoupeImg } from './coupe.webp';
|
||||||
|
export { default as CrossoverImg } from './crossover.webp';
|
||||||
|
export { default as HatchbackImg } from './hatchback.webp';
|
||||||
|
export { default as LiftbackImg } from './liftback.webp';
|
||||||
|
export { default as MinivanImg } from './minivan.webp';
|
||||||
|
export { default as OtherImg } from './other.webp';
|
||||||
|
export { default as PickupImg } from './pickup.webp';
|
||||||
|
export { default as SedanImg } from './sedan.webp';
|
||||||
|
export { default as SportsCarImg } from './sports-car.webp';
|
||||||
|
export { default as StationWagonImg } from './station-wagon.webp';
|
||||||
|
export { default as SuvImg } from './suv.webp';
|
||||||
BIN
src/assets/images/car-body-type/liftback.webp
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
src/assets/images/car-body-type/minivan.webp
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
src/assets/images/car-body-type/other.webp
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
src/assets/images/car-body-type/pickup.webp
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
src/assets/images/car-body-type/sedan.webp
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
src/assets/images/car-body-type/sports-car.webp
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
src/assets/images/car-body-type/station-wagon.webp
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
src/assets/images/car-body-type/suv.webp
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
@@ -1 +1,2 @@
|
|||||||
|
export * from './car-body-type';
|
||||||
export { default as DemoVideoPosterImg } from './demo-video-poster.webp';
|
export { default as DemoVideoPosterImg } from './demo-video-poster.webp';
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { Box, Button, Text } from '@chakra-ui/react';
|
import { Box, Button, Text } from '@chakra-ui/react';
|
||||||
import { ArrowBackIcon, ArrowForwardIcon } from '@chakra-ui/icons';
|
import { ArrowBackIcon, ArrowForwardIcon } from '@chakra-ui/icons';
|
||||||
|
import dayjs from 'dayjs';
|
||||||
|
|
||||||
interface DateNavigatorProps {
|
interface DateNavigatorProps {
|
||||||
currentDate: Date;
|
currentDate: Date;
|
||||||
@@ -19,7 +20,7 @@ const DateNavigator = ({
|
|||||||
<ArrowBackIcon />
|
<ArrowBackIcon />
|
||||||
</Button>
|
</Button>
|
||||||
<Text mx='4' fontSize='lg' fontWeight='bold'>
|
<Text mx='4' fontSize='lg' fontWeight='bold'>
|
||||||
{currentDate.toLocaleDateString()}
|
{dayjs(currentDate).format('DD.MM.YYYY')}
|
||||||
</Text>
|
</Text>
|
||||||
<Button onClick={onNextDate}>
|
<Button onClick={onNextDate}>
|
||||||
<ArrowForwardIcon />
|
<ArrowForwardIcon />
|
||||||
|
|||||||
107
src/components/Editable/Editable.tsx
Normal file
@@ -0,0 +1,107 @@
|
|||||||
|
import React, { useEffect, useState } from 'react';
|
||||||
|
import {
|
||||||
|
Editable,
|
||||||
|
EditableInput,
|
||||||
|
EditablePreview,
|
||||||
|
Flex,
|
||||||
|
IconButton,
|
||||||
|
Input,
|
||||||
|
useEditableControls,
|
||||||
|
ButtonGroup,
|
||||||
|
Stack,
|
||||||
|
} from '@chakra-ui/react';
|
||||||
|
import { CheckIcon, CloseIcon, EditIcon } from '@chakra-ui/icons';
|
||||||
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
|
import { useUpdateMasterMutation } from '../../__data__/service/api';
|
||||||
|
import useShowToast from '../../hooks/useShowToast';
|
||||||
|
|
||||||
|
interface EditableWrapperProps {
|
||||||
|
value: string;
|
||||||
|
fieldName: 'phone' | 'name';
|
||||||
|
id: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const EditableWrapper = ({ value, fieldName, id }: EditableWrapperProps) => {
|
||||||
|
const [updateMaster, { isError, isSuccess, error }] =
|
||||||
|
useUpdateMasterMutation();
|
||||||
|
|
||||||
|
const { t } = useTranslation('~', {
|
||||||
|
keyPrefix: 'dry-wash.arm.master.editable',
|
||||||
|
});
|
||||||
|
|
||||||
|
const showToast = useShowToast();
|
||||||
|
const [currentValue, setCurrentValue] = useState<string>(value);
|
||||||
|
|
||||||
|
const handleSubmit = async (newValue: string) => {
|
||||||
|
if (currentValue === newValue) return;
|
||||||
|
|
||||||
|
await updateMaster({ id, [fieldName]: newValue });
|
||||||
|
|
||||||
|
setCurrentValue(newValue);
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isSuccess) {
|
||||||
|
showToast(t('toast.success'), 'success');
|
||||||
|
}
|
||||||
|
}, [isSuccess]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isError) {
|
||||||
|
showToast(t('toast.error.title'), 'error', t('toast.error.description'));
|
||||||
|
console.error(t('toast.error.description'), error);
|
||||||
|
}
|
||||||
|
}, [isError, error]);
|
||||||
|
|
||||||
|
function EditableControls() {
|
||||||
|
const {
|
||||||
|
isEditing,
|
||||||
|
getSubmitButtonProps,
|
||||||
|
getCancelButtonProps,
|
||||||
|
getEditButtonProps,
|
||||||
|
} = useEditableControls();
|
||||||
|
|
||||||
|
return isEditing ? (
|
||||||
|
<ButtonGroup justifyContent='center' size='sm'>
|
||||||
|
<IconButton
|
||||||
|
aria-label={t('aria.save')}
|
||||||
|
icon={<CheckIcon />}
|
||||||
|
{...getSubmitButtonProps()}
|
||||||
|
/>
|
||||||
|
<IconButton
|
||||||
|
aria-label={t('aria.cancel')}
|
||||||
|
icon={<CloseIcon />}
|
||||||
|
{...getCancelButtonProps()}
|
||||||
|
/>
|
||||||
|
</ButtonGroup>
|
||||||
|
) : (
|
||||||
|
<Flex justifyContent='center'>
|
||||||
|
<IconButton
|
||||||
|
aria-label={t('aria.edit')}
|
||||||
|
size='sm'
|
||||||
|
icon={<EditIcon />}
|
||||||
|
{...getEditButtonProps()}
|
||||||
|
/>
|
||||||
|
</Flex>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Editable
|
||||||
|
textAlign='center'
|
||||||
|
defaultValue={currentValue}
|
||||||
|
fontSize='2xl'
|
||||||
|
isPreviewFocusable={false}
|
||||||
|
onSubmit={handleSubmit}
|
||||||
|
>
|
||||||
|
<Stack direction={['column', 'row']} spacing='15px'>
|
||||||
|
<EditablePreview />
|
||||||
|
<Input as={EditableInput} />
|
||||||
|
<EditableControls />
|
||||||
|
</Stack>
|
||||||
|
</Editable>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default EditableWrapper;
|
||||||
@@ -33,22 +33,22 @@ class ErrorBoundary extends Component<ErrorBoundaryProps, ErrorBoundaryState> {
|
|||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { hasError } = this.state;
|
const { hasError } = this.state;
|
||||||
//TODO: добавить анимацию после залива 404 страницы
|
|
||||||
//TODO: может сделать обертку для хука, чтоб язык менялся без перезагрузки
|
|
||||||
if (hasError) {
|
if (hasError) {
|
||||||
return (
|
return (
|
||||||
<Center minH='100vh'>
|
<Center minH='100vh' data-testid='error-boundary'>
|
||||||
<VStack spacing={4} textAlign='center'>
|
<VStack spacing={4} textAlign='center'>
|
||||||
<Heading as='h1' size='2xl'>
|
<Heading as='h1' size='2xl' data-testid='error-title'>
|
||||||
{i18next.t('~:dry-wash.errorBoundary.title')}
|
{i18next.t('~:dry-wash.errorBoundary.title')}
|
||||||
</Heading>
|
</Heading>
|
||||||
<Text fontSize='lg'>
|
<Text fontSize='lg' data-testid='error-description'>
|
||||||
{i18next.t('~:dry-wash.errorBoundary.description')}
|
{i18next.t('~:dry-wash.errorBoundary.description')}
|
||||||
</Text>
|
</Text>
|
||||||
<Button
|
<Button
|
||||||
colorScheme='teal'
|
colorScheme='teal'
|
||||||
size='lg'
|
size='lg'
|
||||||
variant='outline'
|
variant='outline'
|
||||||
|
data-testid='error-reload-button'
|
||||||
onClick={() => window.location.reload()}
|
onClick={() => window.location.reload()}
|
||||||
>
|
>
|
||||||
{i18next.t('~:dry-wash.errorBoundary.button.reload')}
|
{i18next.t('~:dry-wash.errorBoundary.button.reload')}
|
||||||
|
|||||||
@@ -0,0 +1,51 @@
|
|||||||
|
import * as React from 'react';
|
||||||
|
import { describe, expect, it, jest } from '@jest/globals';
|
||||||
|
import { render, screen, waitFor } from '@testing-library/react';
|
||||||
|
import { BrowserRouter } from 'react-router-dom';
|
||||||
|
import { Provider } from 'react-redux';
|
||||||
|
import { useEffect } from 'react';
|
||||||
|
|
||||||
|
import ErrorBoundary from '../ErrorBoundary';
|
||||||
|
import { store } from '../../../__data__/store';
|
||||||
|
|
||||||
|
const ProblematicComponent = () => {
|
||||||
|
useEffect(() => {
|
||||||
|
throw new Error('Test Error');
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return <div>Этот текст не должен появиться</div>;
|
||||||
|
};
|
||||||
|
jest.mock('@brojs/cli', () => {
|
||||||
|
return {
|
||||||
|
getNavigationValue: () => '/auth/login',
|
||||||
|
getConfigValue: () => '/api',
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('ErrorBoundary', () => {
|
||||||
|
it('должен отобразить запасной UI при ошибке', async () => {
|
||||||
|
// Подавляем вывод ошибки в консоль во время теста
|
||||||
|
const consoleSpy = jest.spyOn(console, 'error');
|
||||||
|
consoleSpy.mockImplementation(() => {});
|
||||||
|
|
||||||
|
const { container } = render(
|
||||||
|
<Provider store={store}>
|
||||||
|
<ErrorBoundary>
|
||||||
|
<BrowserRouter>
|
||||||
|
<ProblematicComponent />
|
||||||
|
</BrowserRouter>
|
||||||
|
</ErrorBoundary>
|
||||||
|
</Provider>,
|
||||||
|
);
|
||||||
|
|
||||||
|
const button = await waitFor(() =>
|
||||||
|
screen.getByTestId('error-reload-button'),
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(button).not.toBeNull();
|
||||||
|
expect(container).toMatchSnapshot();
|
||||||
|
|
||||||
|
// Восстанавливаем console.error после теста
|
||||||
|
consoleSpy.mockRestore();
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
|
exports[`ErrorBoundary должен отобразить запасной UI при ошибке 1`] = `
|
||||||
|
<div>
|
||||||
|
<div
|
||||||
|
class="css-1o0ed15"
|
||||||
|
data-testid="error-boundary"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="chakra-stack css-zefqyp"
|
||||||
|
>
|
||||||
|
<h1
|
||||||
|
class="chakra-heading css-0"
|
||||||
|
data-testid="error-title"
|
||||||
|
/>
|
||||||
|
<p
|
||||||
|
class="chakra-text css-1ezsviu"
|
||||||
|
data-testid="error-description"
|
||||||
|
/>
|
||||||
|
<button
|
||||||
|
class="chakra-button css-4xx2wk"
|
||||||
|
data-testid="error-reload-button"
|
||||||
|
type="button"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import React from 'react';
|
import React, { useEffect } from 'react';
|
||||||
import {
|
import {
|
||||||
Menu,
|
Menu,
|
||||||
MenuButton,
|
MenuButton,
|
||||||
@@ -9,16 +9,47 @@ import {
|
|||||||
import { EditIcon } from '@chakra-ui/icons';
|
import { EditIcon } from '@chakra-ui/icons';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
const MasterActionsMenu = () => {
|
import { useDeleteMasterMutation } from '../../__data__/service/api';
|
||||||
|
import useShowToast from '../../hooks/useShowToast';
|
||||||
|
|
||||||
|
interface MasterActionsMenu {
|
||||||
|
id: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const MasterActionsMenu = ({ id }: MasterActionsMenu) => {
|
||||||
const { t } = useTranslation('~', {
|
const { t } = useTranslation('~', {
|
||||||
keyPrefix: 'dry-wash.arm.master.table.actionsMenu',
|
keyPrefix: 'dry-wash.arm.master.table.actionsMenu',
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const [deleteMaster, { isSuccess, isError, error, isLoading }] =
|
||||||
|
useDeleteMasterMutation();
|
||||||
|
|
||||||
|
const showToast = useShowToast();
|
||||||
|
|
||||||
|
const handleClickDelete = async () => {
|
||||||
|
await deleteMaster({ id });
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isSuccess) {
|
||||||
|
showToast(t('toast.success'), 'success');
|
||||||
|
}
|
||||||
|
}, [isSuccess]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isError) {
|
||||||
|
showToast(t('toast.error.title'), 'error', t('toast.error.description'));
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
}, [isError]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Menu>
|
<Menu>
|
||||||
<MenuButton icon={<EditIcon />} as={IconButton} variant='outline' />
|
<MenuButton icon={<EditIcon />} as={IconButton} variant='outline' />
|
||||||
<MenuList>
|
<MenuList>
|
||||||
<MenuItem>{t('delete')}</MenuItem>
|
<MenuItem onClick={handleClickDelete} isDisabled={isLoading}>
|
||||||
|
{t('delete')}
|
||||||
|
</MenuItem>
|
||||||
</MenuList>
|
</MenuList>
|
||||||
</Menu>
|
</Menu>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import React, { useState } from 'react';
|
import React, { useEffect } from 'react';
|
||||||
|
import { useForm, SubmitHandler } from 'react-hook-form';
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
FormControl,
|
FormControl,
|
||||||
@@ -11,57 +12,128 @@ import {
|
|||||||
DrawerFooter,
|
DrawerFooter,
|
||||||
DrawerHeader,
|
DrawerHeader,
|
||||||
DrawerOverlay,
|
DrawerOverlay,
|
||||||
|
InputGroup,
|
||||||
|
InputLeftElement,
|
||||||
|
FormErrorMessage,
|
||||||
} from '@chakra-ui/react';
|
} from '@chakra-ui/react';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
|
import { PhoneIcon } from '@chakra-ui/icons';
|
||||||
|
|
||||||
const MasterDrawer = ({ isOpen, onClose }) => {
|
import { useAddMasterMutation } from '../../__data__/service/api';
|
||||||
const [newMaster, setNewMaster] = useState({ name: '', phone: '' });
|
import { DrawerInputs } from '../../models/arm/form';
|
||||||
|
import useShowToast from '../../hooks/useShowToast';
|
||||||
|
|
||||||
const handleSave = () => {
|
interface MasterDrawerProps {
|
||||||
console.log(`Сохранение мастера: ${newMaster}`);
|
isOpen: boolean;
|
||||||
onClose();
|
onClose: () => void;
|
||||||
};
|
}
|
||||||
|
|
||||||
|
const MasterDrawer = ({ isOpen, onClose }: MasterDrawerProps) => {
|
||||||
|
const {
|
||||||
|
register,
|
||||||
|
handleSubmit,
|
||||||
|
reset,
|
||||||
|
formState: { errors },
|
||||||
|
} = useForm<DrawerInputs>();
|
||||||
|
|
||||||
const { t } = useTranslation('~', {
|
const { t } = useTranslation('~', {
|
||||||
keyPrefix: 'dry-wash.arm.master.drawer',
|
keyPrefix: 'dry-wash.arm.master.drawer',
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const onSubmit: SubmitHandler<DrawerInputs> = async (data) => {
|
||||||
|
const trimMaster = {
|
||||||
|
name: data.name.trim(),
|
||||||
|
phone: data.phone.trim(),
|
||||||
|
};
|
||||||
|
|
||||||
|
const isEmptyFields = trimMaster.name === '' || trimMaster.phone === '';
|
||||||
|
|
||||||
|
if (isEmptyFields) {
|
||||||
|
showToast(t('toast.error.base'), 'error', t('toast.error.empty-fields'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
await addMaster(trimMaster);
|
||||||
|
};
|
||||||
|
|
||||||
|
const [addMaster, { error, isSuccess }] = useAddMasterMutation();
|
||||||
|
const showToast = useShowToast();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isSuccess) {
|
||||||
|
showToast(t('toast.create-master'), 'success');
|
||||||
|
reset();
|
||||||
|
onClose();
|
||||||
|
}
|
||||||
|
}, [isSuccess]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (error) {
|
||||||
|
showToast(
|
||||||
|
t('toast.error.create-master'),
|
||||||
|
'error',
|
||||||
|
t('toast.error.create-master-details'),
|
||||||
|
);
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
}, [error]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Drawer isOpen={isOpen} onClose={onClose} size='md'>
|
<Drawer isOpen={isOpen} onClose={onClose} size='md'>
|
||||||
<DrawerOverlay />
|
<DrawerOverlay />
|
||||||
<DrawerContent>
|
<DrawerContent>
|
||||||
<DrawerCloseButton />
|
<form onSubmit={handleSubmit(onSubmit)}>
|
||||||
<DrawerHeader>{t('title')}</DrawerHeader>
|
<DrawerCloseButton />
|
||||||
<DrawerBody>
|
<DrawerHeader>{t('title')}</DrawerHeader>
|
||||||
<FormControl mb='4'>
|
<DrawerBody>
|
||||||
<FormLabel>{t('inputName.label')}</FormLabel>
|
<FormControl mb='4' isInvalid={!!errors.name}>
|
||||||
<Input
|
<FormLabel>{t('inputName.label')}</FormLabel>
|
||||||
value={newMaster.name}
|
<Input
|
||||||
onChange={(e) =>
|
{...register('name', {
|
||||||
setNewMaster({ ...newMaster, name: e.target.value })
|
required: t('form.name.required'),
|
||||||
}
|
minLength: {
|
||||||
placeholder={t('inputName.placeholder')}
|
value: 2,
|
||||||
/>
|
message: t('form.name.minLength'),
|
||||||
</FormControl>
|
},
|
||||||
<FormControl>
|
})}
|
||||||
<FormLabel> {t('inputPhone.label')}</FormLabel>
|
placeholder={t('inputName.placeholder')}
|
||||||
<Input
|
/>
|
||||||
value={newMaster.phone}
|
<FormErrorMessage>
|
||||||
onChange={(e) =>
|
{errors.name && errors.name.message}
|
||||||
setNewMaster({ ...newMaster, phone: e.target.value })
|
</FormErrorMessage>
|
||||||
}
|
</FormControl>
|
||||||
placeholder={t('inputPhone.placeholder')}
|
<FormControl isInvalid={!!errors.phone}>
|
||||||
/>
|
<FormLabel>{t('inputPhone.label')}</FormLabel>
|
||||||
</FormControl>
|
<InputGroup>
|
||||||
</DrawerBody>
|
<InputLeftElement pointerEvents='none'>
|
||||||
<DrawerFooter>
|
<PhoneIcon color='gray.300' />
|
||||||
<Button colorScheme='teal' mr={3} onClick={handleSave}>
|
</InputLeftElement>
|
||||||
{t('button.save')}
|
<Input
|
||||||
</Button>
|
{...register('phone', {
|
||||||
<Button variant='ghost' onClick={onClose}>
|
required: t('form.phone.required'),
|
||||||
{t('button.cancel')}
|
pattern: {
|
||||||
</Button>
|
value: /^(\+7|8)\d{10}$/,
|
||||||
</DrawerFooter>
|
message: t('form.phone.pattern'),
|
||||||
|
},
|
||||||
|
setValueAs: (value) => value.replace(/[^\d+]/g, ''),
|
||||||
|
})}
|
||||||
|
placeholder={t('inputPhone.placeholder')}
|
||||||
|
/>
|
||||||
|
</InputGroup>
|
||||||
|
<FormErrorMessage>
|
||||||
|
{errors.phone && errors.phone.message}
|
||||||
|
</FormErrorMessage>
|
||||||
|
</FormControl>
|
||||||
|
</DrawerBody>
|
||||||
|
<DrawerFooter>
|
||||||
|
<Button colorScheme='teal' mr={3} type='submit'>
|
||||||
|
{t('button.save')}
|
||||||
|
</Button>
|
||||||
|
<Button variant='ghost' onClick={onClose}>
|
||||||
|
{t('button.cancel')}
|
||||||
|
</Button>
|
||||||
|
</DrawerFooter>
|
||||||
|
</form>
|
||||||
</DrawerContent>
|
</DrawerContent>
|
||||||
</Drawer>
|
</Drawer>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,40 +1,39 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { Badge, Link, Stack, Td, Tr } from '@chakra-ui/react';
|
import { Badge, Stack, Td, Tr, Text } from '@chakra-ui/react';
|
||||||
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
import MasterActionsMenu from '../MasterActionsMenu';
|
import MasterActionsMenu from '../MasterActionsMenu';
|
||||||
import { getTimeSlot } from '../../lib/date-helpers';
|
import { getTimeSlot } from '../../lib';
|
||||||
|
import EditableWrapper from '../Editable/Editable';
|
||||||
|
|
||||||
export interface Schedule {
|
const MasterItem = ({ name, phone, id, schedule }) => {
|
||||||
id: string;
|
const { t } = useTranslation('~', {
|
||||||
startWashTime: string;
|
keyPrefix: 'dry-wash.arm.master',
|
||||||
endWashTime: string;
|
});
|
||||||
}
|
|
||||||
|
|
||||||
export type MasterProps = {
|
|
||||||
id: string;
|
|
||||||
name: string;
|
|
||||||
schedule: Schedule[];
|
|
||||||
phone: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
const MasterItem = ({ name, schedule, phone }) => {
|
|
||||||
return (
|
return (
|
||||||
<Tr>
|
<Tr>
|
||||||
<Td>{name}</Td>
|
|
||||||
<Td>
|
<Td>
|
||||||
<Stack direction='row'>
|
<EditableWrapper id={id} fieldName={'name'} value={name} />
|
||||||
{schedule.map(({ startWashTime, endWashTime }, index) => (
|
|
||||||
<Badge colorScheme={'green'} key={index}>
|
|
||||||
{getTimeSlot(startWashTime, endWashTime)}
|
|
||||||
</Badge>
|
|
||||||
))}
|
|
||||||
</Stack>
|
|
||||||
</Td>
|
</Td>
|
||||||
<Td>
|
<Td>
|
||||||
<Link href='tel:'>{phone}</Link>
|
{schedule?.length > 0 ? (
|
||||||
|
<Stack direction='row'>
|
||||||
|
{schedule?.map(({ startWashTime, endWashTime }, index: number) => (
|
||||||
|
<Badge colorScheme={'green'} key={index}>
|
||||||
|
{getTimeSlot(startWashTime, endWashTime)}
|
||||||
|
</Badge>
|
||||||
|
))}
|
||||||
|
</Stack>
|
||||||
|
) : (
|
||||||
|
<Text color='gray.500'>{t('schedule.empty')}</Text>
|
||||||
|
)}
|
||||||
</Td>
|
</Td>
|
||||||
<Td>
|
<Td>
|
||||||
<MasterActionsMenu />
|
<EditableWrapper id={id} fieldName={'phone'} value={phone} />
|
||||||
|
</Td>
|
||||||
|
<Td>
|
||||||
|
<MasterActionsMenu id={id} />
|
||||||
</Td>
|
</Td>
|
||||||
</Tr>
|
</Tr>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import React, { useEffect, useState } from 'react';
|
import React, { useEffect } from 'react';
|
||||||
import {
|
import {
|
||||||
Box,
|
Box,
|
||||||
Heading,
|
Heading,
|
||||||
@@ -10,7 +10,6 @@ import {
|
|||||||
Button,
|
Button,
|
||||||
useDisclosure,
|
useDisclosure,
|
||||||
Flex,
|
Flex,
|
||||||
useToast,
|
|
||||||
Td,
|
Td,
|
||||||
Text,
|
Text,
|
||||||
Spinner,
|
Spinner,
|
||||||
@@ -19,8 +18,8 @@ import { useTranslation } from 'react-i18next';
|
|||||||
|
|
||||||
import MasterItem from '../MasterItem';
|
import MasterItem from '../MasterItem';
|
||||||
import MasterDrawer from '../MasterDrawer';
|
import MasterDrawer from '../MasterDrawer';
|
||||||
import { armService } from '../../api/arm';
|
import { useGetMastersQuery } from '../../__data__/service/api';
|
||||||
import { MasterProps } from '../MasterItem/MasterItem';
|
import useShowToast from '../../hooks/useShowToast';
|
||||||
|
|
||||||
const TABLE_HEADERS = [
|
const TABLE_HEADERS = [
|
||||||
'name' as const,
|
'name' as const,
|
||||||
@@ -31,40 +30,19 @@ const TABLE_HEADERS = [
|
|||||||
|
|
||||||
const Masters = () => {
|
const Masters = () => {
|
||||||
const { isOpen, onOpen, onClose } = useDisclosure();
|
const { isOpen, onOpen, onClose } = useDisclosure();
|
||||||
const toast = useToast();
|
const showToast = useShowToast();
|
||||||
|
|
||||||
const { t } = useTranslation('~', {
|
const { t } = useTranslation('~', {
|
||||||
keyPrefix: 'dry-wash.arm.master',
|
keyPrefix: 'dry-wash.arm.master',
|
||||||
});
|
});
|
||||||
|
|
||||||
const [masters, setMasters] = useState<MasterProps[]>([]);
|
const { data: masters, error, isLoading, isSuccess } = useGetMastersQuery();
|
||||||
const [loading, setLoading] = useState(false);
|
|
||||||
const [error, setError] = useState<string | null>(null);
|
|
||||||
|
|
||||||
const { fetchMasters } = armService();
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const loadMasters = async () => {
|
if (error) {
|
||||||
setLoading(true);
|
showToast(t('error.title'), 'error');
|
||||||
|
}
|
||||||
try {
|
}, [error]);
|
||||||
const data = await fetchMasters();
|
|
||||||
setMasters(data.body);
|
|
||||||
} catch (err) {
|
|
||||||
setError(err.message);
|
|
||||||
toast({
|
|
||||||
title: t('error.title'),
|
|
||||||
status: 'error',
|
|
||||||
duration: 5000,
|
|
||||||
isClosable: true,
|
|
||||||
position: 'bottom-right',
|
|
||||||
});
|
|
||||||
} finally {
|
|
||||||
setLoading(false);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
loadMasters();
|
|
||||||
}, [toast, t]);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box p='8'>
|
<Box p='8'>
|
||||||
@@ -83,22 +61,21 @@ const Masters = () => {
|
|||||||
</Tr>
|
</Tr>
|
||||||
</Thead>
|
</Thead>
|
||||||
<Tbody>
|
<Tbody>
|
||||||
{loading && (
|
{isLoading && (
|
||||||
<Tr>
|
<Tr>
|
||||||
<Td colSpan={TABLE_HEADERS.length} textAlign='center' py='8'>
|
<Td colSpan={TABLE_HEADERS.length} textAlign='center' py='8'>
|
||||||
<Spinner size='lg' />
|
<Spinner size='lg' />
|
||||||
</Td>
|
</Td>
|
||||||
</Tr>
|
</Tr>
|
||||||
)}
|
)}
|
||||||
{!loading && masters.length === 0 && !error && (
|
{isSuccess && masters.length === 0 && (
|
||||||
<Tr>
|
<Tr>
|
||||||
<Td colSpan={TABLE_HEADERS.length}>
|
<Td colSpan={TABLE_HEADERS.length}>
|
||||||
<Text>{t('table.empty')}</Text>
|
<Text>{t('table.empty')}</Text>
|
||||||
</Td>
|
</Td>
|
||||||
</Tr>
|
</Tr>
|
||||||
)}
|
)}
|
||||||
{!loading &&
|
{isSuccess &&
|
||||||
!error &&
|
|
||||||
masters.map((master, index) => (
|
masters.map((master, index) => (
|
||||||
<MasterItem key={index} {...master} />
|
<MasterItem key={index} {...master} />
|
||||||
))}
|
))}
|
||||||
|
|||||||
@@ -1,29 +1,18 @@
|
|||||||
import React, { useState } from 'react';
|
import React, { ChangeEvent, useState } from 'react';
|
||||||
import { Td, Tr, Link, Select } from '@chakra-ui/react';
|
import { Td, Tr, Link, Select } from '@chakra-ui/react';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
import dayjs from 'dayjs';
|
import dayjs from 'dayjs';
|
||||||
|
|
||||||
import { getTimeSlot } from '../../lib/date-helpers';
|
import { getTimeSlot } from '../../lib';
|
||||||
|
import { useUpdateOrdersMutation } from '../../__data__/service/api';
|
||||||
|
import { OrderArm, Status, statuses } from '../../models/api';
|
||||||
|
|
||||||
const statuses = [
|
const statusColors: Record<Status, string> = {
|
||||||
'pending' as const,
|
pending: 'yellow.100',
|
||||||
'progress' as const,
|
progress: 'blue.100',
|
||||||
'working' as const,
|
working: 'orange.100',
|
||||||
'canceled' as const,
|
canceled: 'red.100',
|
||||||
'complete' as const,
|
complete: 'green.100',
|
||||||
];
|
|
||||||
|
|
||||||
type GetArrItemType<ArrType> =
|
|
||||||
ArrType extends Array<infer ItemType> ? ItemType : never;
|
|
||||||
|
|
||||||
export type OrderProps = {
|
|
||||||
carNumber?: string;
|
|
||||||
startWashTime?: string;
|
|
||||||
endWashTime?: string;
|
|
||||||
orderDate?: string;
|
|
||||||
status?: GetArrItemType<typeof statuses>;
|
|
||||||
phone?: string;
|
|
||||||
location?: string;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const OrderItem = ({
|
const OrderItem = ({
|
||||||
@@ -34,23 +23,52 @@ const OrderItem = ({
|
|||||||
status,
|
status,
|
||||||
phone,
|
phone,
|
||||||
location,
|
location,
|
||||||
}: OrderProps) => {
|
master,
|
||||||
|
allMasters,
|
||||||
|
id,
|
||||||
|
}: OrderArm) => {
|
||||||
|
const [updateOrders] = useUpdateOrdersMutation();
|
||||||
const { t } = useTranslation('~', {
|
const { t } = useTranslation('~', {
|
||||||
keyPrefix: 'dry-wash.arm.order',
|
keyPrefix: 'dry-wash.arm.order',
|
||||||
});
|
});
|
||||||
|
|
||||||
const [statusSelect, setStatus] = useState(status);
|
const [statusSelect, setStatus] = useState(status);
|
||||||
|
const bgColor = statusColors[statusSelect];
|
||||||
|
const [masterSelect, setMaster] = useState(master?.name);
|
||||||
|
|
||||||
|
const handelChangeMasters = (e: ChangeEvent<HTMLSelectElement>) => {
|
||||||
|
const masterName = e.target.value;
|
||||||
|
const selectedMaster = allMasters.find(
|
||||||
|
(master) => master.name === masterName,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (selectedMaster) {
|
||||||
|
setMaster(masterName);
|
||||||
|
updateOrders({ id, master: selectedMaster.id });
|
||||||
|
} else {
|
||||||
|
console.error('Master not found');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handeChangeStatus = (e: ChangeEvent<HTMLSelectElement>) => {
|
||||||
|
const status = e.target.value as OrderArm['status'];
|
||||||
|
updateOrders({ id, status });
|
||||||
|
setStatus(status);
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Tr>
|
<Tr>
|
||||||
<Td>{carNumber}</Td>
|
<Td>{carNumber}</Td>
|
||||||
<Td>{getTimeSlot(startWashTime, endWashTime)}</Td>
|
<Td>
|
||||||
<Td>{dayjs(orderDate).format('DD.MM.YYYY')}</Td>
|
{dayjs(orderDate).format('DD.MM.YYYY')} <br />
|
||||||
|
{getTimeSlot(startWashTime, endWashTime)}
|
||||||
|
</Td>
|
||||||
<Td>
|
<Td>
|
||||||
<Select
|
<Select
|
||||||
value={statusSelect}
|
value={statusSelect}
|
||||||
onChange={(e) => setStatus(e.target.value as OrderProps['status'])}
|
onChange={handeChangeStatus}
|
||||||
placeholder={t(`status.placeholder`)}
|
placeholder={t(`status.placeholder`)}
|
||||||
|
bg={bgColor}
|
||||||
>
|
>
|
||||||
{statuses.map((status) => (
|
{statuses.map((status) => (
|
||||||
<option key={status} value={status}>
|
<option key={status} value={status}>
|
||||||
@@ -59,6 +77,19 @@ const OrderItem = ({
|
|||||||
))}
|
))}
|
||||||
</Select>
|
</Select>
|
||||||
</Td>
|
</Td>
|
||||||
|
<Td>
|
||||||
|
<Select
|
||||||
|
value={masterSelect}
|
||||||
|
onChange={handelChangeMasters}
|
||||||
|
placeholder={t(`master.placeholder`)}
|
||||||
|
>
|
||||||
|
{allMasters.map((item) => (
|
||||||
|
<option key={item.id} value={item.name}>
|
||||||
|
{item.name}
|
||||||
|
</option>
|
||||||
|
))}
|
||||||
|
</Select>
|
||||||
|
</Td>
|
||||||
<Td>
|
<Td>
|
||||||
<Link href='tel:'>{phone}</Link>
|
<Link href='tel:'>{phone}</Link>
|
||||||
</Td>
|
</Td>
|
||||||
|
|||||||
@@ -10,21 +10,24 @@ import {
|
|||||||
Spinner,
|
Spinner,
|
||||||
Text,
|
Text,
|
||||||
Td,
|
Td,
|
||||||
useToast,
|
|
||||||
} from '@chakra-ui/react';
|
} from '@chakra-ui/react';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
import dayjs from 'dayjs';
|
import dayjs from 'dayjs';
|
||||||
|
|
||||||
import OrderItem from '../OrderItem';
|
import OrderItem from '../OrderItem';
|
||||||
import { OrderProps } from '../OrderItem/OrderItem';
|
|
||||||
import { armService } from '../../api/arm';
|
|
||||||
import DateNavigator from '../DateNavigator';
|
import DateNavigator from '../DateNavigator';
|
||||||
|
import {
|
||||||
|
useGetMastersQuery,
|
||||||
|
useGetOrdersQuery,
|
||||||
|
} from '../../__data__/service/api';
|
||||||
|
import useShowToast from '../../hooks/useShowToast';
|
||||||
|
import { OrderArm } from '../../models/api';
|
||||||
|
|
||||||
const TABLE_HEADERS = [
|
const TABLE_HEADERS = [
|
||||||
'carNumber' as const,
|
'carNumber' as const,
|
||||||
'washingTime' as const,
|
|
||||||
'orderDate' as const,
|
'orderDate' as const,
|
||||||
'status' as const,
|
'status' as const,
|
||||||
|
'masters' as const,
|
||||||
'telephone' as const,
|
'telephone' as const,
|
||||||
'location' as const,
|
'location' as const,
|
||||||
];
|
];
|
||||||
@@ -33,46 +36,40 @@ const Orders = () => {
|
|||||||
const { t } = useTranslation('~', {
|
const { t } = useTranslation('~', {
|
||||||
keyPrefix: 'dry-wash.arm.order',
|
keyPrefix: 'dry-wash.arm.order',
|
||||||
});
|
});
|
||||||
|
const showToast = useShowToast();
|
||||||
|
|
||||||
const { fetchOrders } = armService();
|
|
||||||
|
|
||||||
const toast = useToast();
|
|
||||||
|
|
||||||
const [orders, setOrders] = useState<OrderProps[]>([]);
|
|
||||||
const [loading, setLoading] = useState(false);
|
|
||||||
const [error, setError] = useState<string | null>(null);
|
|
||||||
const [currentDate, setCurrentDate] = useState(new Date());
|
const [currentDate, setCurrentDate] = useState(new Date());
|
||||||
|
const {
|
||||||
|
data: orders,
|
||||||
|
isLoading: isOrdersLoading,
|
||||||
|
isSuccess: isOrdersSuccess,
|
||||||
|
isError: isOrdersError,
|
||||||
|
error: ordersError,
|
||||||
|
} = useGetOrdersQuery({ date: currentDate });
|
||||||
|
|
||||||
|
const {
|
||||||
|
data: masters,
|
||||||
|
isLoading: isMastersLoading,
|
||||||
|
isSuccess: isMastersSuccess,
|
||||||
|
isError: isMastersError,
|
||||||
|
error: mastersError,
|
||||||
|
} = useGetMastersQuery();
|
||||||
|
|
||||||
|
const isLoading = isOrdersLoading || isMastersLoading;
|
||||||
|
const isSuccess = isOrdersSuccess && isMastersSuccess;
|
||||||
|
const isError = isOrdersError || isMastersError;
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const loadOrders = async () => {
|
if (isError) {
|
||||||
setLoading(true);
|
showToast(t('error.title'), 'error');
|
||||||
|
}
|
||||||
try {
|
}, [isError, ordersError, mastersError, t]);
|
||||||
const data = await fetchOrders({ date: currentDate });
|
|
||||||
setOrders(data.body);
|
|
||||||
} catch (err) {
|
|
||||||
setError(err.message);
|
|
||||||
toast({
|
|
||||||
title: t('error.title'),
|
|
||||||
status: 'error',
|
|
||||||
duration: 5000,
|
|
||||||
isClosable: true,
|
|
||||||
position: 'bottom-right',
|
|
||||||
});
|
|
||||||
} finally {
|
|
||||||
setLoading(false);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
loadOrders();
|
|
||||||
}, [toast, t, currentDate]);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box p='8'>
|
<Box p='8'>
|
||||||
<Heading size='lg' mb='5'>
|
<Heading size='lg' mb='5'>
|
||||||
{t('title')}
|
{t('title')}
|
||||||
</Heading>
|
</Heading>
|
||||||
|
|
||||||
<DateNavigator
|
<DateNavigator
|
||||||
currentDate={currentDate}
|
currentDate={currentDate}
|
||||||
onPreviousDate={() =>
|
onPreviousDate={() =>
|
||||||
@@ -94,27 +91,27 @@ const Orders = () => {
|
|||||||
</Tr>
|
</Tr>
|
||||||
</Thead>
|
</Thead>
|
||||||
<Tbody>
|
<Tbody>
|
||||||
{loading && (
|
{isLoading && (
|
||||||
<Tr>
|
<Tr>
|
||||||
<Td colSpan={TABLE_HEADERS.length} textAlign='center' py='8'>
|
<Td colSpan={TABLE_HEADERS.length} textAlign='center' py='8'>
|
||||||
<Spinner size='lg' />
|
<Spinner size='lg' />
|
||||||
</Td>
|
</Td>
|
||||||
</Tr>
|
</Tr>
|
||||||
)}
|
)}
|
||||||
{!loading && orders.length === 0 && !error && (
|
{isSuccess && orders.length === 0 && (
|
||||||
<Tr>
|
<Tr>
|
||||||
<Td colSpan={TABLE_HEADERS.length}>
|
<Td colSpan={TABLE_HEADERS.length}>
|
||||||
<Text>{t('table.empty')}</Text>
|
<Text>{t('table.empty')}</Text>
|
||||||
</Td>
|
</Td>
|
||||||
</Tr>
|
</Tr>
|
||||||
)}
|
)}
|
||||||
{!loading &&
|
{isSuccess &&
|
||||||
!error &&
|
|
||||||
orders.map((order, index) => (
|
orders.map((order, index) => (
|
||||||
<OrderItem
|
<OrderItem
|
||||||
|
allMasters={masters}
|
||||||
key={index}
|
key={index}
|
||||||
{...order}
|
{...order}
|
||||||
status={order.status as OrderProps['status']}
|
status={order.status as OrderArm['status']}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</Tbody>
|
</Tbody>
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ export const PageSpinner: FC = () => {
|
|||||||
return (
|
return (
|
||||||
<Flex w='full' h='100vh' justifyContent='center' alignItems='center'>
|
<Flex w='full' h='100vh' justifyContent='center' alignItems='center'>
|
||||||
<Spinner
|
<Spinner
|
||||||
|
data-testid='spinner'
|
||||||
thickness='5px'
|
thickness='5px'
|
||||||
speed='0.65s'
|
speed='0.65s'
|
||||||
emptyColor='gray.200'
|
emptyColor='gray.200'
|
||||||
|
|||||||
@@ -47,6 +47,7 @@ const Sidebar = () => {
|
|||||||
w='100%'
|
w='100%'
|
||||||
colorScheme={isActive(URLs.armMaster.url) ? 'green' : 'blue'}
|
colorScheme={isActive(URLs.armMaster.url) ? 'green' : 'blue'}
|
||||||
variant={isActive(URLs.armMaster.url) ? 'solid' : 'ghost'}
|
variant={isActive(URLs.armMaster.url) ? 'solid' : 'ghost'}
|
||||||
|
data-testid='master-button'
|
||||||
>
|
>
|
||||||
{t('master')}
|
{t('master')}
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@@ -9,12 +9,12 @@ import { BenefitsSectionProps } from './types';
|
|||||||
import { iconsMap } from './helper';
|
import { iconsMap } from './helper';
|
||||||
|
|
||||||
export const BenefitsSection: FC<BenefitsSectionProps> = ({
|
export const BenefitsSection: FC<BenefitsSectionProps> = ({
|
||||||
data: { heading, description, list } = {},
|
data: { heading, description, list } = {}, ...props
|
||||||
}) => {
|
}) => {
|
||||||
const { t } = useTranslation('~', { keyPrefix: 'dry-wash.landing' });
|
const { t } = useTranslation('~', { keyPrefix: 'dry-wash.landing' });
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<PageSection>
|
<PageSection {...props}>
|
||||||
<VStack w='full' spacing={2}>
|
<VStack w='full' spacing={2}>
|
||||||
<Heading as='h2'>{t(heading)}</Heading>
|
<Heading as='h2'>{t(heading)}</Heading>
|
||||||
<Text>{t(description)}</Text>
|
<Text>{t(description)}</Text>
|
||||||
|
|||||||
@@ -5,7 +5,9 @@ import { Text } from '@chakra-ui/react';
|
|||||||
const currentYear = new Date().getFullYear();
|
const currentYear = new Date().getFullYear();
|
||||||
|
|
||||||
export const Copyright: FC = () => {
|
export const Copyright: FC = () => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation('~', {
|
||||||
|
keyPrefix: 'dry-wash.landing.footer'
|
||||||
|
});
|
||||||
|
|
||||||
return <Text color='whiteAlpha.500'>{t('dry-wash.landing.footer.copyright', { currentYear })}</Text>;
|
return <Text color='whiteAlpha.500'>{t('copyright', { currentYear })}</Text>;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import { SiteLogo, PageSection } from '../';
|
|||||||
|
|
||||||
import { Copyright } from './Copyright';
|
import { Copyright } from './Copyright';
|
||||||
|
|
||||||
export const Footer: FC = () => {
|
export const Footer: FC = (props) => {
|
||||||
const { t } = useTranslation('~', {
|
const { t } = useTranslation('~', {
|
||||||
keyPrefix: 'dry-wash.landing.footer.links',
|
keyPrefix: 'dry-wash.landing.footer.links',
|
||||||
});
|
});
|
||||||
@@ -15,11 +15,17 @@ export const Footer: FC = () => {
|
|||||||
const listData = [
|
const listData = [
|
||||||
{ to: '#', label: t('privacy-policy') },
|
{ to: '#', label: t('privacy-policy') },
|
||||||
{ to: '#', label: t('service-terms') },
|
{ to: '#', label: t('service-terms') },
|
||||||
{ to: '#', label: t('faq') },
|
{ to: '#', label: t('faq') },
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<PageSection as='footer' py={5} bg='gray.700' color='white'>
|
<PageSection
|
||||||
|
as='footer'
|
||||||
|
py={5}
|
||||||
|
bg='gray.700'
|
||||||
|
color='white'
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
<SiteLogo />
|
<SiteLogo />
|
||||||
<Copyright />
|
<Copyright />
|
||||||
<List spacing={2}>
|
<List spacing={2}>
|
||||||
|
|||||||
@@ -10,11 +10,18 @@ import { HeroSectionProps } from './types';
|
|||||||
export const HeroSection: FC<HeroSectionProps> = ({
|
export const HeroSection: FC<HeroSectionProps> = ({
|
||||||
data: { headline, description, video } = {},
|
data: { headline, description, video } = {},
|
||||||
flexShrink,
|
flexShrink,
|
||||||
|
...props
|
||||||
}) => {
|
}) => {
|
||||||
const { t } = useTranslation('~', { keyPrefix: 'dry-wash.landing' });
|
const { t } = useTranslation('~', { keyPrefix: 'dry-wash.landing' });
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box flexShrink={flexShrink} as='header' pos='relative' zIndex={0}>
|
<Box
|
||||||
|
flexShrink={flexShrink}
|
||||||
|
as='header'
|
||||||
|
pos='relative'
|
||||||
|
zIndex={0}
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
<Box
|
<Box
|
||||||
as='video'
|
as='video'
|
||||||
src={`${__webpack_public_path__}/remote-assets/${video}`}
|
src={`${__webpack_public_path__}/remote-assets/${video}`}
|
||||||
|
|||||||
@@ -5,9 +5,9 @@ import { Image } from '@chakra-ui/react';
|
|||||||
import { LogoSvg } from '../../../assets/icons';
|
import { LogoSvg } from '../../../assets/icons';
|
||||||
|
|
||||||
export const SiteLogo: FC = () => {
|
export const SiteLogo: FC = () => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation('~', { keyPrefix: 'dry-wash.landing' });
|
||||||
|
|
||||||
return <Image src={LogoSvg} alt={t('~:dry-wash.landing.site-logo')} w={40} />;
|
return <Image src={LogoSvg} alt={t('site-logo')} w={40} />;
|
||||||
};
|
};
|
||||||
|
|
||||||
// todo: replace Image by SVG React component
|
// todo: replace Image by SVG React component
|
||||||
|
|||||||
@@ -9,11 +9,12 @@ import { SocialProofSectionProps } from './types';
|
|||||||
|
|
||||||
export const SocialProofSection: FC<SocialProofSectionProps> = ({
|
export const SocialProofSection: FC<SocialProofSectionProps> = ({
|
||||||
data: { heading } = {},
|
data: { heading } = {},
|
||||||
|
...props
|
||||||
}) => {
|
}) => {
|
||||||
const { t } = useTranslation('~', { keyPrefix: 'dry-wash.landing' });
|
const { t } = useTranslation('~', { keyPrefix: 'dry-wash.landing' });
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<PageSection>
|
<PageSection {...props}>
|
||||||
<Heading as='h2'>{t(heading)}</Heading>
|
<Heading as='h2'>{t(heading)}</Heading>
|
||||||
<ReviewsSlider />
|
<ReviewsSlider />
|
||||||
<HStack w='full' justify='flex-end'>
|
<HStack w='full' justify='flex-end'>
|
||||||
|
|||||||
@@ -1,23 +1,82 @@
|
|||||||
import React, { forwardRef } from 'react';
|
import React, { forwardRef } from 'react';
|
||||||
import { Select, SelectProps } from '@chakra-ui/react';
|
import {
|
||||||
|
Input,
|
||||||
|
Box,
|
||||||
|
Popover,
|
||||||
|
PopoverAnchor,
|
||||||
|
PopoverContent,
|
||||||
|
PopoverBody,
|
||||||
|
useRadioGroup,
|
||||||
|
Grid,
|
||||||
|
GridItem,
|
||||||
|
UseRadioGroupProps,
|
||||||
|
useDisclosure,
|
||||||
|
} from '@chakra-ui/react';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
import { carBodySelectOptions } from './helper';
|
import { carBodySelectOptions, getInputValue } from './helper';
|
||||||
|
import { CarBodyOption } from './option';
|
||||||
|
import { CarBodySelectProps } from './types';
|
||||||
|
|
||||||
export const CarBodySelect = forwardRef<HTMLSelectElement, SelectProps>(
|
export const CarBodySelect = forwardRef<HTMLInputElement, CarBodySelectProps>(
|
||||||
function CarBodySelect(props, ref) {
|
function CarBodySelect(props, ref) {
|
||||||
|
const handleOptionClick: UseRadioGroupProps['onChange'] = (value) => {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||||
|
// @ts-ignore
|
||||||
|
props.onChange(value);
|
||||||
|
};
|
||||||
|
|
||||||
|
const { value, getRadioProps, getRootProps } = useRadioGroup({
|
||||||
|
defaultValue: props.value,
|
||||||
|
value: props.value,
|
||||||
|
onChange: handleOptionClick,
|
||||||
|
});
|
||||||
|
|
||||||
|
const { isOpen, onOpen, onClose } = useDisclosure();
|
||||||
|
|
||||||
const { t } = useTranslation('~', {
|
const { t } = useTranslation('~', {
|
||||||
keyPrefix: 'dry-wash.order-create.car-body-select',
|
keyPrefix: 'dry-wash.order-create.car-body-select',
|
||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Select ref={ref} placeholder={t('placeholder')} {...props}>
|
<Box width='100%'>
|
||||||
{carBodySelectOptions.map(({ value, labelTKey }, i) => (
|
<Popover
|
||||||
<option key={i} value={value}>
|
isOpen={isOpen}
|
||||||
{t(`options.${labelTKey}`)}
|
autoFocus={false}
|
||||||
</option>
|
placement='bottom-start'
|
||||||
))}
|
matchWidth
|
||||||
</Select>
|
>
|
||||||
|
<PopoverAnchor>
|
||||||
|
<Input
|
||||||
|
{...props}
|
||||||
|
ref={ref}
|
||||||
|
value={getInputValue(Number(value), t) ?? props.value}
|
||||||
|
readOnly
|
||||||
|
onClick={onOpen}
|
||||||
|
onBlur={onClose}
|
||||||
|
placeholder={t('placeholder')}
|
||||||
|
/>
|
||||||
|
</PopoverAnchor>
|
||||||
|
<PopoverContent width='100%' maxWidth='100%'>
|
||||||
|
<PopoverBody border='1px' borderColor='gray.300' p={0}>
|
||||||
|
<Grid
|
||||||
|
templateColumns='repeat(auto-fit, minmax(150px, 1fr))'
|
||||||
|
{...getRootProps()}
|
||||||
|
>
|
||||||
|
{carBodySelectOptions.map(({ value, img, labelTKey }) => (
|
||||||
|
<GridItem key={value}>
|
||||||
|
<CarBodyOption
|
||||||
|
image={img}
|
||||||
|
label={t(`options.${labelTKey}`)}
|
||||||
|
{...getRadioProps({ value: String(value) })}
|
||||||
|
/>
|
||||||
|
</GridItem>
|
||||||
|
))}
|
||||||
|
</Grid>
|
||||||
|
</PopoverBody>
|
||||||
|
</PopoverContent>
|
||||||
|
</Popover>
|
||||||
|
</Box>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,3 +1,19 @@
|
|||||||
|
import { TFunction } from "i18next";
|
||||||
|
import { InputProps } from "@chakra-ui/react";
|
||||||
|
|
||||||
|
import {
|
||||||
|
CoupeImg,
|
||||||
|
CrossoverImg,
|
||||||
|
HatchbackImg,
|
||||||
|
LiftbackImg,
|
||||||
|
MinivanImg,
|
||||||
|
PickupImg,
|
||||||
|
SedanImg,
|
||||||
|
SportsCarImg,
|
||||||
|
StationWagonImg,
|
||||||
|
SuvImg,
|
||||||
|
OtherImg
|
||||||
|
} from "../../../../assets/images";
|
||||||
import { Car } from "../../../../models/landing";
|
import { Car } from "../../../../models/landing";
|
||||||
|
|
||||||
import { CarBodySelectOption } from "./types";
|
import { CarBodySelectOption } from "./types";
|
||||||
@@ -5,46 +21,67 @@ import { CarBodySelectOption } from "./types";
|
|||||||
export const carBodySelectOptions: CarBodySelectOption[] = [
|
export const carBodySelectOptions: CarBodySelectOption[] = [
|
||||||
{
|
{
|
||||||
value: Car.BodyStyle.SEDAN,
|
value: Car.BodyStyle.SEDAN,
|
||||||
labelTKey: 'sedan'
|
labelTKey: 'sedan',
|
||||||
|
img: SedanImg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: Car.BodyStyle.HATCHBACK,
|
value: Car.BodyStyle.HATCHBACK,
|
||||||
labelTKey: 'hatchback'
|
labelTKey: 'hatchback',
|
||||||
|
img: HatchbackImg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: Car.BodyStyle.CROSSOVER,
|
value: Car.BodyStyle.CROSSOVER,
|
||||||
labelTKey: 'crossover'
|
labelTKey: 'crossover',
|
||||||
|
img: CrossoverImg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: Car.BodyStyle.SUV,
|
value: Car.BodyStyle.SUV,
|
||||||
labelTKey: 'suv'
|
labelTKey: 'suv',
|
||||||
|
img: SuvImg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: Car.BodyStyle.STATION_WAGON,
|
value: Car.BodyStyle.STATION_WAGON,
|
||||||
labelTKey: 'station-wagon'
|
labelTKey: 'station-wagon',
|
||||||
|
img: StationWagonImg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: Car.BodyStyle.COUPE,
|
value: Car.BodyStyle.COUPE,
|
||||||
labelTKey: 'coupe'
|
labelTKey: 'coupe',
|
||||||
|
img: CoupeImg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: Car.BodyStyle.MINIVAN,
|
value: Car.BodyStyle.MINIVAN,
|
||||||
labelTKey: 'minivan'
|
labelTKey: 'minivan',
|
||||||
|
img: MinivanImg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: Car.BodyStyle.PICKUP,
|
value: Car.BodyStyle.PICKUP,
|
||||||
labelTKey: 'pickup'
|
labelTKey: 'pickup',
|
||||||
|
img: PickupImg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: Car.BodyStyle.LIFTBACK,
|
value: Car.BodyStyle.LIFTBACK,
|
||||||
labelTKey: 'liftback'
|
labelTKey: 'liftback',
|
||||||
|
img: LiftbackImg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: Car.BodyStyle.SPORTS_CAR,
|
value: Car.BodyStyle.SPORTS_CAR,
|
||||||
labelTKey: 'sports-car'
|
labelTKey: 'sports-car',
|
||||||
|
img: SportsCarImg
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: Car.BodyStyle.OTHER,
|
value: Car.BodyStyle.OTHER,
|
||||||
labelTKey: 'other'
|
labelTKey: 'other',
|
||||||
|
img: OtherImg
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
export const getInputValue = (value: Car.BodyStyle, t: TFunction<"~", "dry-wash.order-create.car-body-select">): InputProps['value'] => {
|
||||||
|
const { labelTKey } = carBodySelectOptions.find((option) => value === option.value) ?? {};
|
||||||
|
|
||||||
|
if (labelTKey) {
|
||||||
|
return t(`options.${labelTKey}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
};
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import {
|
||||||
|
ImageProps,
|
||||||
|
StackProps,
|
||||||
|
Image,
|
||||||
|
useRadio,
|
||||||
|
chakra,
|
||||||
|
Box,
|
||||||
|
UseRadioProps,
|
||||||
|
Flex,
|
||||||
|
} from '@chakra-ui/react';
|
||||||
|
|
||||||
|
import { getPropsByState } from './helper';
|
||||||
|
|
||||||
|
type CarBodyOptionProps = {
|
||||||
|
image: ImageProps['src'];
|
||||||
|
label: StackProps['children'];
|
||||||
|
} & UseRadioProps;
|
||||||
|
|
||||||
|
export const CarBodyOption = ({
|
||||||
|
image,
|
||||||
|
label,
|
||||||
|
...radioProps
|
||||||
|
}: CarBodyOptionProps) => {
|
||||||
|
const { state, getInputProps, getRadioProps, htmlProps, getLabelProps } =
|
||||||
|
useRadio(radioProps);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<chakra.label {...htmlProps} cursor='pointer'>
|
||||||
|
<input {...getInputProps({})} hidden />
|
||||||
|
<Box {...getRadioProps()} p={2} {...getPropsByState(state)}>
|
||||||
|
<Flex direction='column' alignItems='center' {...getLabelProps()}>
|
||||||
|
<Image src={image} rounded={4} />
|
||||||
|
{label}
|
||||||
|
</Flex>
|
||||||
|
</Box>
|
||||||
|
</chakra.label>
|
||||||
|
);
|
||||||
|
};
|
||||||
19
src/components/order-form/form/car-body/option/helper.ts
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
import {
|
||||||
|
BoxProps,
|
||||||
|
} from '@chakra-ui/react';
|
||||||
|
import { RadioState } from '@chakra-ui/react/dist/types/radio/use-radio';
|
||||||
|
|
||||||
|
export const getPropsByState = ({ isChecked }: RadioState): BoxProps => {
|
||||||
|
if (isChecked) {
|
||||||
|
return {
|
||||||
|
bgColor: 'primary.200',
|
||||||
|
_hover: { bgColor: 'primary.100' },
|
||||||
|
_active: { bgColor: 'primary.300' },
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
_hover: { bgColor: 'primary.50' },
|
||||||
|
_active: { bgColor: 'primary.100' },
|
||||||
|
};
|
||||||
|
};
|
||||||
1
src/components/order-form/form/car-body/option/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export { CarBodyOption } from './car-body-option';
|
||||||
@@ -1,3 +1,5 @@
|
|||||||
|
import { InputProps } from "@chakra-ui/react";
|
||||||
|
|
||||||
import { Car } from "../../../../models/landing";
|
import { Car } from "../../../../models/landing";
|
||||||
|
|
||||||
export type CarBodySelectOption = {
|
export type CarBodySelectOption = {
|
||||||
@@ -14,4 +16,9 @@ export type CarBodySelectOption = {
|
|||||||
'liftback' |
|
'liftback' |
|
||||||
'sports-car' |
|
'sports-car' |
|
||||||
'other';
|
'other';
|
||||||
|
img?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type CarBodySelectProps = {
|
||||||
|
value?: string;
|
||||||
|
} & Pick<InputProps, 'onChange'>;
|
||||||
@@ -15,7 +15,7 @@ export const CarNumberInput = forwardRef<HTMLInputElement, InputProps>(
|
|||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
onChange?.(formattedValue);
|
onChange?.(formattedValue);
|
||||||
}}
|
}}
|
||||||
maxLength={8}
|
maxLength={12}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -3,11 +3,11 @@ const VALID_LETTER = 'а|в|е|к|м|н|о|р|с|т|у|х';
|
|||||||
const invalidCharsRe = new RegExp(`[^(${VALID_LETTER})0-9]`, 'gi');
|
const invalidCharsRe = new RegExp(`[^(${VALID_LETTER})0-9]`, 'gi');
|
||||||
const cleanValue = (value: string) => value.replace(invalidCharsRe, '');
|
const cleanValue = (value: string) => value.replace(invalidCharsRe, '');
|
||||||
|
|
||||||
const validCarNumberInputRe = new RegExp(`^([${VALID_LETTER}]{1}|$)((?:[0-9]|$)(?:[0-9]|$)(?:[0-9]|$))([${VALID_LETTER}]{1,2}|$)$`, 'gi');
|
const validCarNumberInputRe = new RegExp(`^([${VALID_LETTER}]{1}|$)((?:[0-9]|$)(?:[0-9]|$)(?:[0-9]|$))([${VALID_LETTER}]{1,2}|$)((?:[0-9]|$)(?:[0-9]|$)(?:[0-9]|$))$`, 'gi');
|
||||||
const isValidInput = (cleanedValue: string) => validCarNumberInputRe.test(cleanedValue);
|
const isValidInput = (cleanedValue: string) => validCarNumberInputRe.test(cleanedValue);
|
||||||
|
|
||||||
const formatAsCarNumber = (cleanedValue: string) => {
|
const formatAsCarNumber = (cleanedValue: string) => {
|
||||||
return cleanedValue.replace(validCarNumberInputRe, (_, p1, p2, p3) => [p1, p2, p3].join(' ')).toUpperCase();
|
return cleanedValue.replace(validCarNumberInputRe, (_, p1, p2, p3, p4) => [p1, p2, p3, p4].join(' ')).toUpperCase();
|
||||||
};
|
};
|
||||||
const getWithoutLastChar = (value: string) => value.substring(0, value.length - 1);
|
const getWithoutLastChar = (value: string) => value.substring(0, value.length - 1);
|
||||||
|
|
||||||
@@ -25,7 +25,7 @@ export const handleInputChange = (value: string | undefined | null) => {
|
|||||||
return getWithoutLastChar(value).trim();
|
return getWithoutLastChar(value).trim();
|
||||||
};
|
};
|
||||||
|
|
||||||
const validCarNumberRe = new RegExp(`^[${VALID_LETTER}][0-9]{3}[${VALID_LETTER}]{2}$`, 'i');
|
const validCarNumberRe = new RegExp(`^[${VALID_LETTER}][0-9]{3}[${VALID_LETTER}]{2}[0-9]{2,3}$`, 'i');
|
||||||
|
|
||||||
export const isValidCarNumber = (value: string) => {
|
export const isValidCarNumber = (value: string) => {
|
||||||
const cleanedValue = cleanValue(value);
|
const cleanedValue = cleanValue(value);
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { InputProps, SelectProps } from "@chakra-ui/react";
|
|
||||||
|
|
||||||
import { Order } from "../../../models/landing";
|
|
||||||
|
|
||||||
import { FormFieldProps } from "./field";
|
import { FormFieldProps } from "./field";
|
||||||
import { OrderFormValues } from "./types";
|
import { OrderFormValues } from "./types";
|
||||||
@@ -12,6 +9,7 @@ export const defaultValues: Partial<OrderFormValues> = {
|
|||||||
phone: '',
|
phone: '',
|
||||||
carNumber: '',
|
carNumber: '',
|
||||||
carColor: '',
|
carColor: '',
|
||||||
|
carBody: '',
|
||||||
availableDatetimeBegin: '',
|
availableDatetimeBegin: '',
|
||||||
availableDatetimeEnd: '',
|
availableDatetimeEnd: '',
|
||||||
};
|
};
|
||||||
@@ -29,39 +27,4 @@ export const useGetValidationRules = () => {
|
|||||||
validate: (value: string) => isValidCarNumber(value) || t('car-number-field.invalid')
|
validate: (value: string) => isValidCarNumber(value) || t('car-number-field.invalid')
|
||||||
},
|
},
|
||||||
} satisfies Record<string, FormFieldProps['rules']>;
|
} satisfies Record<string, FormFieldProps['rules']>;
|
||||||
};
|
|
||||||
|
|
||||||
const removeAllSpaces = (str: string) => str.replace(/\s+/g, '');
|
|
||||||
|
|
||||||
const getValidCarBodyStyle = (fieldValue: string) => {
|
|
||||||
const carBodyAsNumber = Number(fieldValue);
|
|
||||||
return Number.isNaN(carBodyAsNumber) ? undefined : carBodyAsNumber;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const formatFormValues = ({ phone, carNumber, carBody, carColor, carLocation, availableDatetimeBegin, availableDatetimeEnd }: OrderFormValues): Order.Create => {
|
|
||||||
return {
|
|
||||||
customer: {
|
|
||||||
phone
|
|
||||||
},
|
|
||||||
car: {
|
|
||||||
number: removeAllSpaces(carNumber),
|
|
||||||
body: getValidCarBodyStyle(carBody),
|
|
||||||
color: carColor
|
|
||||||
},
|
|
||||||
washing: {
|
|
||||||
location: carLocation,
|
|
||||||
begin: availableDatetimeBegin,
|
|
||||||
end: availableDatetimeEnd,
|
|
||||||
}
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
export const onSubmit = (values: OrderFormValues) => {
|
|
||||||
return new Promise((resolve) => {
|
|
||||||
console.log(formatFormValues(values));
|
|
||||||
resolve(formatFormValues(values));
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
export const inputCommonStyles: Partial<InputProps & SelectProps> = {
|
|
||||||
};
|
};
|
||||||
@@ -1 +1,2 @@
|
|||||||
|
export type { OrderFormValues, OrderFormProps } from './types';
|
||||||
export { OrderForm } from './order-form';
|
export { OrderForm } from './order-form';
|
||||||
15
src/components/order-form/form/location/helper.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
import { Location, StringCoordinates, StringLocation } from "./types";
|
||||||
|
|
||||||
|
export const splitLocation = (stringifiedLocation: StringLocation) => {
|
||||||
|
return stringifiedLocation.replace(' ', '~').split('~');
|
||||||
|
};
|
||||||
|
|
||||||
|
export const stringifyLocation = (location: Location): StringLocation => {
|
||||||
|
const { coordinates, address } = location;
|
||||||
|
const [latitude, longitude] = coordinates;
|
||||||
|
const coordinatesString = `${latitude},${longitude}` satisfies StringCoordinates;
|
||||||
|
return `${coordinatesString} ${address}`;
|
||||||
|
};
|
||||||
|
|
||||||
|
const locationRe = new RegExp(/^[-0-9]+.[0-9]+,[-0-9]+.[0-9]+ .*/);
|
||||||
|
export const isValidLocation = (value: string): value is StringLocation => locationRe.test(value);
|
||||||
4
src/components/order-form/form/location/index.ts
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
export type { StringLocation } from './types';
|
||||||
|
export * from './location-input';
|
||||||
|
export * from './map';
|
||||||
|
export * from './ymaps';
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
import { YMapsApi } from "@pbe/react-yandex-maps/typings/util/typing";
|
||||||
|
|
||||||
|
import { Address, Location, StringLocation } from "../types";
|
||||||
|
import { splitLocation, stringifyLocation } from "../helper";
|
||||||
|
|
||||||
|
export const formatLocation = (location: Location | undefined): StringLocation | '' => {
|
||||||
|
if (!location) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
return stringifyLocation(location);
|
||||||
|
};
|
||||||
|
|
||||||
|
const coordinatesRe = new RegExp(/^[-0-9]+.[0-9]+,[-0-9]+.[0-9]+/);
|
||||||
|
export const extractAddress = (value: string) => value.replace(coordinatesRe, '').trim();
|
||||||
|
|
||||||
|
export const getLocationByAddress = async (ymaps: YMapsApi, address: Address): Promise<Location> => {
|
||||||
|
try {
|
||||||
|
const result = await ymaps.geocode(address);
|
||||||
|
const firstGeoObject = result.geoObjects.get(
|
||||||
|
0,
|
||||||
|
) as unknown as ymaps.IGeoObject<ymaps.IBasePointGeometry>;
|
||||||
|
const [latitude, longitude] = firstGeoObject.geometry.getCoordinates();
|
||||||
|
return { coordinates: [latitude, longitude], address };
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const isRealLocation = async (ymaps: YMapsApi, stringifiedLocation: StringLocation) => {
|
||||||
|
const [coordinates, address] = splitLocation(stringifiedLocation);
|
||||||
|
try {
|
||||||
|
const result = await ymaps.geocode(coordinates);
|
||||||
|
const firstGeoObject = result.geoObjects.get(0) as ymaps.GeocodeResult;
|
||||||
|
const addressByCoordinates = firstGeoObject.getAddressLine();
|
||||||
|
|
||||||
|
return address === addressByCoordinates;
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export { LocationInput } from './location-input';
|
||||||
@@ -0,0 +1,152 @@
|
|||||||
|
import React, { forwardRef, memo, useEffect, useState } from 'react';
|
||||||
|
import {
|
||||||
|
Input,
|
||||||
|
Box,
|
||||||
|
InputProps,
|
||||||
|
PopoverAnchor,
|
||||||
|
Popover,
|
||||||
|
PopoverContent,
|
||||||
|
PopoverBody,
|
||||||
|
List,
|
||||||
|
ListItem,
|
||||||
|
} from '@chakra-ui/react';
|
||||||
|
import { withYMaps } from '@pbe/react-yandex-maps';
|
||||||
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
|
import { Suggestion } from '../types';
|
||||||
|
import { isValidLocation } from '../helper';
|
||||||
|
|
||||||
|
import {
|
||||||
|
formatLocation,
|
||||||
|
getLocationByAddress,
|
||||||
|
isRealLocation,
|
||||||
|
extractAddress,
|
||||||
|
} from './helper';
|
||||||
|
import { LocationInputProps } from './types';
|
||||||
|
|
||||||
|
export const LocationInput = memo(
|
||||||
|
withYMaps(
|
||||||
|
forwardRef<HTMLInputElement, LocationInputProps>(function LocationInput(
|
||||||
|
{ ymaps, value, onChange, ...props },
|
||||||
|
ref,
|
||||||
|
) {
|
||||||
|
const [inputValue, setInputValue] = useState<string>('');
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
setInputValue(value);
|
||||||
|
}, [value]);
|
||||||
|
|
||||||
|
const [suggestions, setSuggestions] = useState<Suggestion[]>([]);
|
||||||
|
const [isSuggestionsPanelOpen, setIsSuggestionsPanelOpen] =
|
||||||
|
useState<boolean>(false);
|
||||||
|
|
||||||
|
const onInputChange: InputProps['onChange'] = async (e) => {
|
||||||
|
const newInputValue = e.target.value;
|
||||||
|
|
||||||
|
if (
|
||||||
|
isValidLocation(newInputValue) &&
|
||||||
|
(await isRealLocation(ymaps, newInputValue))
|
||||||
|
) {
|
||||||
|
onChange(newInputValue);
|
||||||
|
} else {
|
||||||
|
setInputValue(newInputValue);
|
||||||
|
|
||||||
|
if (newInputValue.trim().length > 3) {
|
||||||
|
try {
|
||||||
|
const address = extractAddress(newInputValue);
|
||||||
|
const results = await ymaps.suggest(address);
|
||||||
|
setSuggestions(results);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
setSuggestions([]);
|
||||||
|
}
|
||||||
|
|
||||||
|
setIsSuggestionsPanelOpen(suggestions.length > 1);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const onFocus: InputProps['onFocus'] = () => {
|
||||||
|
setIsSuggestionsPanelOpen(suggestions.length > 1);
|
||||||
|
};
|
||||||
|
|
||||||
|
const onBlur: InputProps['onBlur'] = async (e) => {
|
||||||
|
const inputValue = e.target.value;
|
||||||
|
if (
|
||||||
|
isValidLocation(inputValue) &&
|
||||||
|
(await isRealLocation(ymaps, inputValue))
|
||||||
|
) {
|
||||||
|
onChange(inputValue);
|
||||||
|
} else {
|
||||||
|
setInputValue(value);
|
||||||
|
}
|
||||||
|
setIsSuggestionsPanelOpen(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSuggestionClick = async ({ value: address }: Suggestion) => {
|
||||||
|
try {
|
||||||
|
const location = await getLocationByAddress(ymaps, address);
|
||||||
|
const newValue = formatLocation(location);
|
||||||
|
setInputValue(newValue);
|
||||||
|
onChange(newValue);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const { t } = useTranslation('~', {
|
||||||
|
keyPrefix: 'dry-wash.order-create.form.washing-location-field',
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Box width='100%'>
|
||||||
|
<Popover
|
||||||
|
isOpen={isSuggestionsPanelOpen}
|
||||||
|
autoFocus={false}
|
||||||
|
placement='bottom-start'
|
||||||
|
>
|
||||||
|
<PopoverAnchor>
|
||||||
|
<Input
|
||||||
|
{...props}
|
||||||
|
ref={ref}
|
||||||
|
onBlur={onBlur}
|
||||||
|
value={inputValue ?? value}
|
||||||
|
onChange={onInputChange}
|
||||||
|
onFocus={onFocus}
|
||||||
|
placeholder={t('placeholder')}
|
||||||
|
/>
|
||||||
|
</PopoverAnchor>
|
||||||
|
<PopoverContent width='100%' maxWidth='100%'>
|
||||||
|
<PopoverBody border='1px' borderColor='gray.300' p={0}>
|
||||||
|
<List>
|
||||||
|
{suggestions.map((suggestion, index) => (
|
||||||
|
<ListItem
|
||||||
|
key={index}
|
||||||
|
p={2}
|
||||||
|
cursor='pointer'
|
||||||
|
_hover={{
|
||||||
|
bgColor: 'primary.50',
|
||||||
|
}}
|
||||||
|
_active={{
|
||||||
|
bgColor: 'primary.100',
|
||||||
|
}}
|
||||||
|
onClick={() => handleSuggestionClick(suggestion)}
|
||||||
|
>
|
||||||
|
{suggestion.displayName}
|
||||||
|
</ListItem>
|
||||||
|
))}
|
||||||
|
</List>
|
||||||
|
</PopoverBody>
|
||||||
|
</PopoverContent>
|
||||||
|
</Popover>
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
true,
|
||||||
|
['suggest', 'geocode'],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
// todo: i18n
|
||||||
|
// todo: replace console.error with toast
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
import { YMapsApi } from "@pbe/react-yandex-maps/typings/util/typing";
|
||||||
|
import { InputProps } from "@chakra-ui/react";
|
||||||
|
|
||||||
|
export type LocationInputProps = InputProps & {
|
||||||
|
ymaps?: YMapsApi;
|
||||||
|
value?: string;
|
||||||
|
onChange?: (value: string) => void;
|
||||||
|
};
|
||||||
10
src/components/order-form/form/location/map/helper.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
import { splitLocation } from "../helper";
|
||||||
|
import { Coordinate, Location, StringLocation } from "../types";
|
||||||
|
|
||||||
|
export const KAZAN_CITY_CENTER: Coordinate[] = [55.797557, 49.107295];
|
||||||
|
|
||||||
|
export const parseLocation = (stringifiedLocation: StringLocation): Location => {
|
||||||
|
const [coordinatesStr, address] = splitLocation(stringifiedLocation);
|
||||||
|
const [latitude, longitude] = coordinatesStr.split(',').map(Number);
|
||||||
|
return { coordinates: [latitude, longitude], address };
|
||||||
|
};
|
||||||
1
src/components/order-form/form/location/map/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export { MapComponent } from './map';
|
||||||
70
src/components/order-form/form/location/map/map.tsx
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
import React, { FC, memo, useEffect, useState } from 'react';
|
||||||
|
import {
|
||||||
|
Map,
|
||||||
|
Placemark,
|
||||||
|
GeolocationControl,
|
||||||
|
ZoomControl,
|
||||||
|
withYMaps,
|
||||||
|
} from '@pbe/react-yandex-maps';
|
||||||
|
import { YMapsApi } from '@pbe/react-yandex-maps/typings/util/typing';
|
||||||
|
|
||||||
|
import { Coordinate, StringLocation } from '../types';
|
||||||
|
import { isValidLocation, stringifyLocation } from '../helper';
|
||||||
|
|
||||||
|
import { KAZAN_CITY_CENTER, parseLocation } from './helper';
|
||||||
|
|
||||||
|
export const MapComponent: FC<{
|
||||||
|
ymaps?: YMapsApi;
|
||||||
|
selectedLocation: StringLocation | null;
|
||||||
|
onMapClick: (props: StringLocation) => void;
|
||||||
|
}> = memo(
|
||||||
|
withYMaps(
|
||||||
|
({ ymaps, selectedLocation, onMapClick }) => {
|
||||||
|
const [mapCenter, setMapCenter] =
|
||||||
|
useState<Coordinate[]>(KAZAN_CITY_CENTER);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isValidLocation(selectedLocation)) {
|
||||||
|
const location = parseLocation(selectedLocation);
|
||||||
|
const { coordinates } = location;
|
||||||
|
setMapCenter(coordinates);
|
||||||
|
}
|
||||||
|
}, [selectedLocation]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Map
|
||||||
|
state={{
|
||||||
|
center: mapCenter,
|
||||||
|
zoom:
|
||||||
|
isValidLocation(selectedLocation) &&
|
||||||
|
parseLocation(selectedLocation)?.coordinates
|
||||||
|
? 17
|
||||||
|
: 10,
|
||||||
|
}}
|
||||||
|
width='100%'
|
||||||
|
onClick={async (e: ymaps.MapEvent) => {
|
||||||
|
try {
|
||||||
|
const coordinates = e.get('coords');
|
||||||
|
const address = await ymaps.geocode(coordinates).then((res) => {
|
||||||
|
const firstGeoObject = res.geoObjects.get(
|
||||||
|
0,
|
||||||
|
) as ymaps.GeocodeResult;
|
||||||
|
return firstGeoObject.getAddressLine();
|
||||||
|
});
|
||||||
|
onMapClick(stringifyLocation({ coordinates, address }));
|
||||||
|
setMapCenter(coordinates);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<GeolocationControl options={{ float: 'left' }} />
|
||||||
|
<ZoomControl />
|
||||||
|
{selectedLocation && <Placemark geometry={mapCenter} />}
|
||||||
|
</Map>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
true,
|
||||||
|
['geocode'],
|
||||||
|
),
|
||||||
|
);
|
||||||
17
src/components/order-form/form/location/types.ts
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
export type Address = string;
|
||||||
|
|
||||||
|
export type Suggestion = {
|
||||||
|
value: Address;
|
||||||
|
displayName: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type Coordinate = number;
|
||||||
|
|
||||||
|
export type Location = {
|
||||||
|
address: Address;
|
||||||
|
coordinates: [Coordinate, Coordinate];
|
||||||
|
};
|
||||||
|
|
||||||
|
export type StringCoordinates = `${Coordinate},${Coordinate}`;
|
||||||
|
|
||||||
|
export type StringLocation = `${StringCoordinates} ${Address}`;
|
||||||
1
src/components/order-form/form/location/ymaps/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export { YMapsProvider } from './ymaps-provider';
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
import { YMaps } from '@pbe/react-yandex-maps';
|
||||||
|
import React, { PropsWithChildren } from 'react';
|
||||||
|
|
||||||
|
export const YMapsProvider = ({ children }: PropsWithChildren) => {
|
||||||
|
return (
|
||||||
|
<YMaps
|
||||||
|
query={{
|
||||||
|
lang: 'ru_RU',
|
||||||
|
apikey: '19cbc387-db9a-4807-a620-5205215db40f',
|
||||||
|
suggest_apikey: '3576e65e-5e75-4ea2-b21c-7f9db112682e',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</YMaps>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -1,31 +1,31 @@
|
|||||||
import React, { FC } from 'react';
|
import React from 'react';
|
||||||
import { useForm } from 'react-hook-form';
|
import { useForm } from 'react-hook-form';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
import {
|
import { Box, Flex, FormControl, FormLabel, VStack } from '@chakra-ui/react';
|
||||||
Box,
|
|
||||||
Flex,
|
|
||||||
FormControl,
|
|
||||||
FormLabel,
|
|
||||||
Input,
|
|
||||||
VStack,
|
|
||||||
} from '@chakra-ui/react';
|
|
||||||
|
|
||||||
import { CarBodySelect } from './car-body';
|
import { CarBodySelect } from './car-body';
|
||||||
import { CarColorInput } from './car-color';
|
import { CarColorInput } from './car-color';
|
||||||
import { CarNumberInput } from './car-number';
|
import { CarNumberInput } from './car-number';
|
||||||
import { FormInputField, FormControllerField } from './field';
|
import { FormInputField, FormControllerField } from './field';
|
||||||
import { OrderFormValues } from './types';
|
import { OrderFormProps, OrderFormValues } from './types';
|
||||||
import { PhoneInput } from './phone';
|
import { PhoneInput } from './phone';
|
||||||
import { SubmitButton } from './submit';
|
import { SubmitButton } from './submit';
|
||||||
import { defaultValues, onSubmit, useGetValidationRules } from './helper';
|
import { defaultValues, useGetValidationRules } from './helper';
|
||||||
import { DateTimeInput } from './date-time';
|
import { DateTimeInput } from './date-time';
|
||||||
|
import {
|
||||||
|
LocationInput,
|
||||||
|
MapComponent,
|
||||||
|
StringLocation,
|
||||||
|
YMapsProvider,
|
||||||
|
} from './location';
|
||||||
|
|
||||||
export const OrderForm: FC = () => {
|
export const OrderForm = ({ onSubmit, loading, ...props }: OrderFormProps) => {
|
||||||
const {
|
const {
|
||||||
handleSubmit,
|
handleSubmit,
|
||||||
control,
|
control,
|
||||||
formState: { errors, isSubmitting },
|
formState: { errors, isSubmitting },
|
||||||
watch,
|
watch,
|
||||||
|
setValue,
|
||||||
} = useForm<OrderFormValues>({ defaultValues, shouldFocusError: true });
|
} = useForm<OrderFormValues>({ defaultValues, shouldFocusError: true });
|
||||||
|
|
||||||
const { t } = useTranslation('~', {
|
const { t } = useTranslation('~', {
|
||||||
@@ -34,13 +34,14 @@ export const OrderForm: FC = () => {
|
|||||||
|
|
||||||
const RULES = useGetValidationRules();
|
const RULES = useGetValidationRules();
|
||||||
|
|
||||||
const [availableDatetimeBegin, availableDatetimeEnd] = watch([
|
const [availableDatetimeBegin, availableDatetimeEnd, carLocation] = watch([
|
||||||
'availableDatetimeBegin',
|
'availableDatetimeBegin',
|
||||||
'availableDatetimeEnd',
|
'availableDatetimeEnd',
|
||||||
|
'carLocation',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box p={4} marginInline='auto'>
|
<Box p={4} marginInline='auto' {...props}>
|
||||||
<VStack
|
<VStack
|
||||||
as='form'
|
as='form'
|
||||||
noValidate
|
noValidate
|
||||||
@@ -81,15 +82,6 @@ export const OrderForm: FC = () => {
|
|||||||
errors={errors}
|
errors={errors}
|
||||||
Input={CarBodySelect}
|
Input={CarBodySelect}
|
||||||
/>
|
/>
|
||||||
<FormInputField
|
|
||||||
control={control}
|
|
||||||
name='carLocation'
|
|
||||||
label={t('washing-location-field.label')}
|
|
||||||
isRequired
|
|
||||||
errors={errors}
|
|
||||||
Input={Input}
|
|
||||||
help={t('washing-location-field.help')}
|
|
||||||
/>
|
|
||||||
<FormControl isRequired>
|
<FormControl isRequired>
|
||||||
<FormLabel>{t('washing-datetime-field.label')}</FormLabel>
|
<FormLabel>{t('washing-datetime-field.label')}</FormLabel>
|
||||||
<Flex flexWrap='wrap' gap={4}>
|
<Flex flexWrap='wrap' gap={4}>
|
||||||
@@ -119,12 +111,28 @@ export const OrderForm: FC = () => {
|
|||||||
</Box>
|
</Box>
|
||||||
</Flex>
|
</Flex>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<SubmitButton isLoading={isSubmitting} mt={4} />
|
<YMapsProvider>
|
||||||
|
<FormInputField
|
||||||
|
control={control}
|
||||||
|
name='carLocation'
|
||||||
|
label={t('washing-location-field.label')}
|
||||||
|
help={t('washing-location-field.help')}
|
||||||
|
isRequired
|
||||||
|
errors={errors}
|
||||||
|
Input={LocationInput}
|
||||||
|
/>
|
||||||
|
<MapComponent
|
||||||
|
selectedLocation={carLocation as StringLocation}
|
||||||
|
onMapClick={(location) => {
|
||||||
|
setValue('carLocation', location);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</YMapsProvider>
|
||||||
|
<SubmitButton isLoading={isSubmitting || loading} mt={4} />
|
||||||
</VStack>
|
</VStack>
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
// todo: remove layout shift, when a validation message is displayed
|
// todo: remove layout shift, when a validation message is displayed
|
||||||
// todo: select location using an interactive map
|
// todo: fix time range available values
|
||||||
// todo: fix time range available values
|
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
import { SubmitHandler } from "react-hook-form";
|
||||||
|
|
||||||
export type OrderFormValues = {
|
export type OrderFormValues = {
|
||||||
phone: string;
|
phone: string;
|
||||||
carNumber: string;
|
carNumber: string;
|
||||||
@@ -6,4 +8,9 @@ export type OrderFormValues = {
|
|||||||
carLocation: string;
|
carLocation: string;
|
||||||
availableDatetimeBegin: string;
|
availableDatetimeBegin: string;
|
||||||
availableDatetimeEnd: string;
|
availableDatetimeEnd: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type OrderFormProps = {
|
||||||
|
onSubmit: SubmitHandler<OrderFormValues>;
|
||||||
|
loading: boolean;
|
||||||
};
|
};
|
||||||
102
src/components/order-view/car-img/car-img-form.tsx
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
import React, { FC, memo, useRef } from 'react';
|
||||||
|
import { Controller, useForm } from 'react-hook-form';
|
||||||
|
import {
|
||||||
|
Button,
|
||||||
|
FormControl,
|
||||||
|
FormErrorMessage,
|
||||||
|
FormHelperText,
|
||||||
|
FormLabel,
|
||||||
|
HStack,
|
||||||
|
Input,
|
||||||
|
} from '@chakra-ui/react';
|
||||||
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
|
import { landingApi } from '../../../__data__/service/landing.api';
|
||||||
|
import { UploadCarImage } from '../../../models/api';
|
||||||
|
|
||||||
|
import { useHandleUploadCarImageResponse } from './helper';
|
||||||
|
|
||||||
|
type FormValues = {
|
||||||
|
carImg: File & {
|
||||||
|
fileName: string;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
type CarImageFormProps = {
|
||||||
|
orderId: UploadCarImage.Params['orderId'];
|
||||||
|
};
|
||||||
|
|
||||||
|
export const CarImageForm: FC<CarImageFormProps> = memo(function CarImageForm({
|
||||||
|
orderId,
|
||||||
|
}) {
|
||||||
|
const {
|
||||||
|
handleSubmit,
|
||||||
|
control,
|
||||||
|
formState: { errors, isSubmitting },
|
||||||
|
} = useForm<FormValues>({ shouldFocusError: true });
|
||||||
|
|
||||||
|
const [uploadCarImage, uploadCarImageMutation] =
|
||||||
|
landingApi.useUploadCarImageMutation();
|
||||||
|
useHandleUploadCarImageResponse(uploadCarImageMutation);
|
||||||
|
|
||||||
|
const onSubmit = (formData: FormValues) => {
|
||||||
|
const body = new FormData();
|
||||||
|
body.append('file', formData.carImg);
|
||||||
|
uploadCarImage({ orderId, body });
|
||||||
|
};
|
||||||
|
|
||||||
|
const fileInputRef = useRef(null);
|
||||||
|
|
||||||
|
const { t } = useTranslation('~', {
|
||||||
|
keyPrefix: 'dry-wash.order-view.upload-car-image',
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<form>
|
||||||
|
<FormControl>
|
||||||
|
<FormLabel htmlFor='carImg'>{t('field.label')}</FormLabel>
|
||||||
|
<Controller
|
||||||
|
control={control}
|
||||||
|
name='carImg'
|
||||||
|
render={({ field: { value, onChange, ...field } }) => {
|
||||||
|
return (
|
||||||
|
<HStack gap={0}>
|
||||||
|
<Input
|
||||||
|
{...field}
|
||||||
|
ref={fileInputRef}
|
||||||
|
accept='.jpg,.png'
|
||||||
|
value={value?.fileName}
|
||||||
|
onChange={(event) => {
|
||||||
|
onChange(event.target.files[0]);
|
||||||
|
handleSubmit(onSubmit)();
|
||||||
|
}}
|
||||||
|
type='file'
|
||||||
|
hidden
|
||||||
|
/>
|
||||||
|
<Input
|
||||||
|
placeholder={t('file-input.placeholder')}
|
||||||
|
value={value?.name || ''}
|
||||||
|
readOnly
|
||||||
|
borderRightRadius={0}
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
onClick={() => {
|
||||||
|
fileInputRef.current.click();
|
||||||
|
}}
|
||||||
|
isLoading={isSubmitting || uploadCarImageMutation.isLoading}
|
||||||
|
colorScheme='primary'
|
||||||
|
paddingInline={8}
|
||||||
|
borderLeftRadius={0}
|
||||||
|
>
|
||||||
|
{t('file-input.button')}
|
||||||
|
</Button>
|
||||||
|
</HStack>
|
||||||
|
);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<FormErrorMessage>{errors.carImg?.message}</FormErrorMessage>
|
||||||
|
<FormHelperText>{t('field.help')}</FormHelperText>
|
||||||
|
</FormControl>
|
||||||
|
</form>
|
||||||
|
);
|
||||||
|
});
|
||||||
35
src/components/order-view/car-img/helper.ts
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
import { useEffect } from "react";
|
||||||
|
import { useToast } from "@chakra-ui/react";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
|
import { isErrorMessage } from "../../../models/api";
|
||||||
|
|
||||||
|
export const useHandleUploadCarImageResponse = (query: {
|
||||||
|
isSuccess: boolean;
|
||||||
|
isError: boolean;
|
||||||
|
error?: unknown;
|
||||||
|
}) => {
|
||||||
|
const toast = useToast();
|
||||||
|
const { t } = useTranslation('~', {
|
||||||
|
keyPrefix: 'dry-wash.order-create.upload-car-image-query',
|
||||||
|
});
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (query.isError) {
|
||||||
|
toast({
|
||||||
|
status: 'error',
|
||||||
|
title: t('error.title'),
|
||||||
|
description: isErrorMessage(query.error) ? query.error : undefined,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, [query.isError]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (query.isSuccess) {
|
||||||
|
toast({
|
||||||
|
status: 'success',
|
||||||
|
title: t('success.title'),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, [query.isSuccess]);
|
||||||
|
};
|
||||||
1
src/components/order-view/car-img/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export { CarImageForm } from './car-img-form';
|
||||||
1
src/components/order-view/details/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export { OrderDetails } from './order-details';
|
||||||
114
src/components/order-view/details/order-details.tsx
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
import React, { FC } from 'react';
|
||||||
|
import {
|
||||||
|
Alert,
|
||||||
|
AlertIcon,
|
||||||
|
Heading,
|
||||||
|
HStack,
|
||||||
|
UnorderedList,
|
||||||
|
ListItem,
|
||||||
|
Text,
|
||||||
|
} from '@chakra-ui/react';
|
||||||
|
import { useTranslation } from 'react-i18next';
|
||||||
|
import dayjs from 'dayjs';
|
||||||
|
import localizedFormat from "dayjs/plugin/localizedFormat";
|
||||||
|
dayjs.extend(localizedFormat);
|
||||||
|
|
||||||
|
import { Order } from '../../../models/landing';
|
||||||
|
import { formatDatetime } from '../../../lib';
|
||||||
|
import { carBodySelectOptions } from '../../order-form/form/car-body/helper';
|
||||||
|
|
||||||
|
import { OrderStatus } from './status';
|
||||||
|
|
||||||
|
type OrderDetailsProps = Pick<
|
||||||
|
Order.View,
|
||||||
|
| 'orderNumber'
|
||||||
|
| 'status'
|
||||||
|
| 'phone'
|
||||||
|
| 'carNumber'
|
||||||
|
| 'carBody'
|
||||||
|
| 'carColor'
|
||||||
|
| 'location'
|
||||||
|
| 'startWashTime'
|
||||||
|
| 'endWashTime'
|
||||||
|
| 'created'
|
||||||
|
>;
|
||||||
|
|
||||||
|
export const OrderDetails: FC<OrderDetailsProps> = ({
|
||||||
|
orderNumber,
|
||||||
|
status,
|
||||||
|
phone,
|
||||||
|
carNumber,
|
||||||
|
carBody,
|
||||||
|
carColor,
|
||||||
|
location,
|
||||||
|
startWashTime,
|
||||||
|
endWashTime,
|
||||||
|
created
|
||||||
|
}) => {
|
||||||
|
const { t } = useTranslation('~', {
|
||||||
|
keyPrefix: 'dry-wash.order-view.details',
|
||||||
|
});
|
||||||
|
const { t: tCarBody } = useTranslation('~', {
|
||||||
|
keyPrefix: 'dry-wash.order-create.car-body-select.options',
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<HStack
|
||||||
|
width='full'
|
||||||
|
flexWrap='wrap'
|
||||||
|
justifyContent='space-between'
|
||||||
|
gap={2}
|
||||||
|
>
|
||||||
|
<Heading as='h2' size='lg'>
|
||||||
|
{t('title', { number: orderNumber })} ({dayjs(created).format('LLLL')})
|
||||||
|
</Heading>
|
||||||
|
<OrderStatus value={status} />
|
||||||
|
</HStack>
|
||||||
|
<UnorderedList styleType='none'>
|
||||||
|
{[
|
||||||
|
{
|
||||||
|
label: t('owner'),
|
||||||
|
value: phone,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('car'),
|
||||||
|
value: [
|
||||||
|
carNumber,
|
||||||
|
tCarBody(
|
||||||
|
`${carBodySelectOptions.find(({ value }) => value === carBody)?.labelTKey}`,
|
||||||
|
),
|
||||||
|
carColor,
|
||||||
|
]
|
||||||
|
.filter((v) => v)
|
||||||
|
.join(', '),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('location'),
|
||||||
|
value: location,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('datetime-range'),
|
||||||
|
value: [
|
||||||
|
formatDatetime(startWashTime),
|
||||||
|
formatDatetime(endWashTime),
|
||||||
|
].join(' - '),
|
||||||
|
},
|
||||||
|
].map(({ label, value }, i) => (
|
||||||
|
<ListItem key={i}>
|
||||||
|
{label}:{' '}
|
||||||
|
<Text as='span' color='primary.500' fontWeight='bold'>
|
||||||
|
{value}
|
||||||
|
</Text>
|
||||||
|
</ListItem>
|
||||||
|
))}
|
||||||
|
</UnorderedList>
|
||||||
|
<Alert status='info' alignItems='flex-start'>
|
||||||
|
<AlertIcon />
|
||||||
|
{t('alert')}
|
||||||
|
</Alert>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
// todo: add i18n for date & time
|
||||||
1
src/components/order-view/details/status/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export { OrderStatus } from './order-status';
|
||||||
49
src/components/order-view/details/status/order-status.tsx
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
import { Tag, TagProps } from '@chakra-ui/react';
|
||||||
|
import React, { FC } from 'react';
|
||||||
|
import { useTranslation } from 'react-i18next';
|
||||||
|
import { TFunction } from 'i18next';
|
||||||
|
|
||||||
|
import { Order } from '../../../../models/landing';
|
||||||
|
|
||||||
|
const getPropsByStatus = (
|
||||||
|
status: Order.Status,
|
||||||
|
t: TFunction<'~', 'dry-wash.arm.order.status'>,
|
||||||
|
): TagProps => {
|
||||||
|
switch (status) {
|
||||||
|
case 'canceled':
|
||||||
|
return {
|
||||||
|
colorScheme: 'red',
|
||||||
|
children: t('canceled'),
|
||||||
|
};
|
||||||
|
case 'pending':
|
||||||
|
return {
|
||||||
|
colorScheme: 'yellow',
|
||||||
|
children: t('pending'),
|
||||||
|
};
|
||||||
|
case 'progress':
|
||||||
|
return {
|
||||||
|
colorScheme: 'orange',
|
||||||
|
children: t('progress'),
|
||||||
|
};
|
||||||
|
case 'working':
|
||||||
|
return {
|
||||||
|
colorScheme: 'orange',
|
||||||
|
children: t('working'),
|
||||||
|
};
|
||||||
|
case 'complete':
|
||||||
|
return {
|
||||||
|
colorScheme: 'green',
|
||||||
|
children: t('complete'),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const OrderStatus: FC<{ value: Order.Status }> = ({ value }) => {
|
||||||
|
const { t } = useTranslation('~', {
|
||||||
|
keyPrefix: 'dry-wash.arm.order.status',
|
||||||
|
});
|
||||||
|
|
||||||
|
const props = getPropsByStatus(value, t);
|
||||||
|
|
||||||
|
return <Tag variant='solid' {...props} />;
|
||||||
|
};
|
||||||
1
src/components/order-view/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export * from './details';
|
||||||
@@ -1,14 +1,31 @@
|
|||||||
import React, { FC, PropsWithChildren } from 'react';
|
import React, { ComponentType, FC, PropsWithChildren } from 'react';
|
||||||
import { ChakraProvider } from '@chakra-ui/react';
|
import { ChakraProvider } from '@chakra-ui/react';
|
||||||
|
|
||||||
import { default as landingTheme } from './theme-config';
|
import { default as landingTheme } from './theme-config';
|
||||||
import Fonts from './Fonts';
|
import Fonts from './Fonts';
|
||||||
|
import { toastOptions } from './toast-options';
|
||||||
|
|
||||||
export const LandingThemeProvider: FC<PropsWithChildren> = ({ children }) => {
|
export const LandingThemeProvider: FC<PropsWithChildren> = ({ children }) => {
|
||||||
return (
|
return (
|
||||||
<ChakraProvider theme={landingTheme}>
|
<ChakraProvider theme={landingTheme} toastOptions={toastOptions}>
|
||||||
<Fonts />
|
<Fonts />
|
||||||
{children}
|
{children}
|
||||||
</ChakraProvider>
|
</ChakraProvider>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export function withLandingThemeProvider<T extends JSX.IntrinsicAttributes>(WrappedComponent: ComponentType<T>) {
|
||||||
|
const displayName = WrappedComponent.displayName || WrappedComponent.name || 'Component';
|
||||||
|
|
||||||
|
const ComponentWithLandingThemeProvider = (props: T) => {
|
||||||
|
return (
|
||||||
|
<LandingThemeProvider>
|
||||||
|
<WrappedComponent {...props} />
|
||||||
|
</LandingThemeProvider>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
ComponentWithLandingThemeProvider.displayName = `withLandingThemeProvider(${displayName})`;
|
||||||
|
|
||||||
|
return ComponentWithLandingThemeProvider;
|
||||||
|
}
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
export { LandingThemeProvider } from './LandingThemeProvider';
|
export { LandingThemeProvider, withLandingThemeProvider } from './LandingThemeProvider';
|
||||||
8
src/containers/LandingThemeProvider/toast-options.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
import { ToastProviderProps } from "@chakra-ui/react";
|
||||||
|
|
||||||
|
export const toastOptions: ToastProviderProps = {
|
||||||
|
defaultOptions: {
|
||||||
|
position: 'top-right',
|
||||||
|
isClosable: true,
|
||||||
|
}
|
||||||
|
};
|
||||||
28
src/hooks/useShowToast.ts
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
import { useToast } from '@chakra-ui/react';
|
||||||
|
import { useCallback } from 'react';
|
||||||
|
|
||||||
|
const useShowToast = () => {
|
||||||
|
const toast = useToast();
|
||||||
|
|
||||||
|
const showToast = useCallback(
|
||||||
|
(
|
||||||
|
title: string,
|
||||||
|
status: 'info' | 'warning' | 'success' | 'error',
|
||||||
|
description?: string,
|
||||||
|
) => {
|
||||||
|
toast({
|
||||||
|
title,
|
||||||
|
description,
|
||||||
|
status,
|
||||||
|
duration: 5000,
|
||||||
|
isClosable: true,
|
||||||
|
position: 'top-right',
|
||||||
|
});
|
||||||
|
},
|
||||||
|
[toast],
|
||||||
|
);
|
||||||
|
|
||||||
|
return showToast;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default useShowToast;
|
||||||