Compare commits
36 Commits
dev
...
migration/
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
42bb161002 | ||
|
|
dafd67a8c0 | ||
|
|
52872617f3 | ||
|
|
6017e0e8f8 | ||
|
|
8e6ca39d65 | ||
|
|
a286813d4d | ||
|
|
5a78a0f909 | ||
|
|
df708e40ae | ||
|
|
7b96fc7b8b | ||
|
|
57058b473a | ||
|
|
ac8860a023 | ||
|
|
9d53867178 | ||
|
|
e5b0d7a746 | ||
|
|
614511ab18 | ||
|
|
ff684257a4 | ||
|
|
3006e6d585 | ||
|
|
20211630e5 | ||
|
|
4215310adf | ||
|
|
aabc61842a | ||
|
|
28b7690505 | ||
|
|
717bb0daf8 | ||
|
|
1aa4ae7752 | ||
|
|
627b97413f | ||
|
|
4b893f2be7 | ||
|
|
d7d973d347 | ||
|
|
f77e8768d3 | ||
|
|
891bb889d1 | ||
|
|
09832eec23 | ||
|
|
72b5af9b41 | ||
|
|
19a0ff0f68 | ||
|
|
7a9d8f5b94 | ||
|
|
dcfa596a74 | ||
|
|
5c72c272b8 | ||
|
|
2d658208f6 | ||
|
|
aaf6146886 | ||
|
|
5a5dd39996 |
3
.dockerignore
Normal file
3
.dockerignore
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.git
|
||||||
|
README.md
|
||||||
|
node_modules
|
||||||
12
.env
Normal file
12
.env
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
####### COMMON #######
|
||||||
|
USE_DEV_COLORS=
|
||||||
|
BASE_PATH=
|
||||||
|
|
||||||
|
####### URLS ########
|
||||||
|
URL_GET_USER_DIRECT=
|
||||||
|
URL_CRM_GRAPHQL_DIRECT=
|
||||||
|
URL_CRM_CREATEKP_DIRECT=
|
||||||
|
URL_CRM_DOWNLOADKP_BASE=
|
||||||
|
URL_CORE_FINGAP_DIRECT=
|
||||||
|
URL_CORE_CALCULATE_DIRECT=
|
||||||
|
URL_1C_TRANSTAX_DIRECT=
|
||||||
@ -8,5 +8,6 @@ coverage
|
|||||||
.eslintrc.js
|
.eslintrc.js
|
||||||
**/*.config.js
|
**/*.config.js
|
||||||
**/scripts
|
**/scripts
|
||||||
|
packages/eslint-config-custom/*
|
||||||
**/package.json
|
**/package.json
|
||||||
turbo.json
|
turbo.json
|
||||||
@ -1,8 +1,10 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
root: true,
|
root: true,
|
||||||
|
// This tells ESLint to load the config from the package `eslint-config-custom`
|
||||||
|
extends: ['custom', 'custom/rules'],
|
||||||
settings: {
|
settings: {
|
||||||
next: {
|
next: {
|
||||||
rootDir: ['apps/*/'],
|
rootDir: ['packages/web/'],
|
||||||
},
|
},
|
||||||
react: {
|
react: {
|
||||||
version: 'detect',
|
version: 'detect',
|
||||||
|
|||||||
2
.gitignore
vendored
2
.gitignore
vendored
@ -68,5 +68,3 @@ yarn-error.log*
|
|||||||
.turbo
|
.turbo
|
||||||
|
|
||||||
# End of https://www.toptal.com/developers/gitignore/api/turbo
|
# End of https://www.toptal.com/developers/gitignore/api/turbo
|
||||||
|
|
||||||
.pnpm
|
|
||||||
6
.vscode/settings.json
vendored
6
.vscode/settings.json
vendored
@ -13,9 +13,9 @@
|
|||||||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||||
"editor.formatOnSave": true,
|
"editor.formatOnSave": true,
|
||||||
"editor.codeActionsOnSave": {
|
"editor.codeActionsOnSave": {
|
||||||
"source.fixAll": "explicit",
|
"source.fixAll": true,
|
||||||
"source.fixAll.eslint": "explicit",
|
"source.fixAll.eslint": true,
|
||||||
"source.removeUnusedImports": "explicit"
|
"source.removeUnusedImports": true
|
||||||
},
|
},
|
||||||
"workbench.editor.labelFormat": "short",
|
"workbench.editor.labelFormat": "short",
|
||||||
"eslint.workingDirectories": [{ "directory": "apps/web", "changeProcessCWD": true }],
|
"eslint.workingDirectories": [{ "directory": "apps/web", "changeProcessCWD": true }],
|
||||||
|
|||||||
104
README.md
104
README.md
@ -1,28 +1,59 @@
|
|||||||
# Turborepo starter
|
# Turborepo Docker starter
|
||||||
|
|
||||||
This is an official starter Turborepo.
|
This is an official Docker starter Turborepo.
|
||||||
|
|
||||||
|
## What's inside?
|
||||||
|
|
||||||
|
This turborepo uses [Yarn](https://classic.yarnpkg.com/lang/en/) as a package manager. It includes the following packages/apps:
|
||||||
|
|
||||||
|
### Apps and Packages
|
||||||
|
|
||||||
|
- `web`: a [Next.js](https://nextjs.org/) app
|
||||||
|
- `api`: an [Express](https://expressjs.com/) server
|
||||||
|
- `ui`: ui: a React component library
|
||||||
|
- `eslint-config-custom`: `eslint` configurations for client side applications (includes `eslint-config-next` and `eslint-config-prettier`)
|
||||||
|
- `eslint-config-custom-server`: `eslint` configurations for server side applications (includes `eslint-config-next` and `eslint-config-prettier`)
|
||||||
|
- `scripts`: Jest configurations
|
||||||
|
- `logger`: Isomorphic logger (a small wrapper around console.log)
|
||||||
|
- `tsconfig`: tsconfig.json;s used throughout the monorepo
|
||||||
|
|
||||||
|
Each package/app is 100% [TypeScript](https://www.typescriptlang.org/).
|
||||||
|
|
||||||
## Using this example
|
## Using this example
|
||||||
|
|
||||||
Run the following command:
|
Run the following command:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
npx create-turbo@latest
|
npx degit vercel/turbo/examples/with-docker with-docker
|
||||||
|
cd with-docker
|
||||||
|
yarn install
|
||||||
|
git init . && git add . && git commit -m "Init"
|
||||||
```
|
```
|
||||||
|
|
||||||
## What's inside?
|
### Docker
|
||||||
|
|
||||||
This Turborepo includes the following packages/apps:
|
This repo is configured to be built with Docker, and Docker compose. To build all apps in this repo:
|
||||||
|
|
||||||
### Apps and Packages
|
```
|
||||||
|
# Create a network, which allows containers to communicate
|
||||||
|
# with each other, by using their container name as a hostname
|
||||||
|
docker network create app_network
|
||||||
|
|
||||||
- `docs`: a [Next.js](https://nextjs.org/) app
|
# Build prod using new BuildKit engine
|
||||||
- `web`: another [Next.js](https://nextjs.org/) app
|
COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose -f docker-compose.yml build --parallel
|
||||||
- `@repo/ui`: a stub React component library shared by both `web` and `docs` applications
|
|
||||||
- `@repo/eslint-config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`)
|
|
||||||
- `@repo/tsconfig`: `tsconfig.json`s used throughout the monorepo
|
|
||||||
|
|
||||||
Each package/app is 100% [TypeScript](https://www.typescriptlang.org/).
|
# Start prod in detached mode
|
||||||
|
docker-compose -f docker-compose.yml up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
Open http://localhost:3000.
|
||||||
|
|
||||||
|
To shutdown all running containers:
|
||||||
|
|
||||||
|
```
|
||||||
|
# Stop all running containers
|
||||||
|
docker kill $(docker ps -q) && docker rm $(docker ps -a -q)
|
||||||
|
```
|
||||||
|
|
||||||
### Utilities
|
### Utilities
|
||||||
|
|
||||||
@ -30,52 +61,5 @@ This Turborepo has some additional tools already setup for you:
|
|||||||
|
|
||||||
- [TypeScript](https://www.typescriptlang.org/) for static type checking
|
- [TypeScript](https://www.typescriptlang.org/) for static type checking
|
||||||
- [ESLint](https://eslint.org/) for code linting
|
- [ESLint](https://eslint.org/) for code linting
|
||||||
|
- [Jest](https://jestjs.io) test runner for all things JavaScript
|
||||||
- [Prettier](https://prettier.io) for code formatting
|
- [Prettier](https://prettier.io) for code formatting
|
||||||
|
|
||||||
### Build
|
|
||||||
|
|
||||||
To build all apps and packages, run the following command:
|
|
||||||
|
|
||||||
```
|
|
||||||
cd my-turborepo
|
|
||||||
pnpm build
|
|
||||||
```
|
|
||||||
|
|
||||||
### Develop
|
|
||||||
|
|
||||||
To develop all apps and packages, run the following command:
|
|
||||||
|
|
||||||
```
|
|
||||||
cd my-turborepo
|
|
||||||
pnpm dev
|
|
||||||
```
|
|
||||||
|
|
||||||
### Remote Caching
|
|
||||||
|
|
||||||
Turborepo can use a technique known as [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching) to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.
|
|
||||||
|
|
||||||
By default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands:
|
|
||||||
|
|
||||||
```
|
|
||||||
cd my-turborepo
|
|
||||||
npx turbo login
|
|
||||||
```
|
|
||||||
|
|
||||||
This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview).
|
|
||||||
|
|
||||||
Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your Turborepo:
|
|
||||||
|
|
||||||
```
|
|
||||||
npx turbo link
|
|
||||||
```
|
|
||||||
|
|
||||||
## Useful Links
|
|
||||||
|
|
||||||
Learn more about the power of Turborepo:
|
|
||||||
|
|
||||||
- [Tasks](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks)
|
|
||||||
- [Caching](https://turbo.build/repo/docs/core-concepts/caching)
|
|
||||||
- [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching)
|
|
||||||
- [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering)
|
|
||||||
- [Configuration Options](https://turbo.build/repo/docs/reference/configuration)
|
|
||||||
- [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference)
|
|
||||||
|
|||||||
@ -1,7 +0,0 @@
|
|||||||
.git
|
|
||||||
Dockerfile
|
|
||||||
.dockerignore
|
|
||||||
node_modules
|
|
||||||
*.log
|
|
||||||
dist
|
|
||||||
README.md
|
|
||||||
@ -1,13 +0,0 @@
|
|||||||
const { createConfig } = require('@vchikalkin/eslint-config-awesome');
|
|
||||||
|
|
||||||
module.exports = createConfig('typescript', {
|
|
||||||
parserOptions: {
|
|
||||||
project: './tsconfig.json',
|
|
||||||
tsconfigRootDir: __dirname,
|
|
||||||
},
|
|
||||||
ignorePatterns: ['*.config.js', '.eslintrc.js'],
|
|
||||||
rules: {
|
|
||||||
'import/no-duplicates': 'off',
|
|
||||||
'import/consistent-type-specifier-style': 'off',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
56
apps/api/.gitignore
vendored
56
apps/api/.gitignore
vendored
@ -1,56 +0,0 @@
|
|||||||
# compiled output
|
|
||||||
/dist
|
|
||||||
/node_modules
|
|
||||||
/build
|
|
||||||
|
|
||||||
# Logs
|
|
||||||
logs
|
|
||||||
*.log
|
|
||||||
npm-debug.log*
|
|
||||||
pnpm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
lerna-debug.log*
|
|
||||||
|
|
||||||
# OS
|
|
||||||
.DS_Store
|
|
||||||
|
|
||||||
# Tests
|
|
||||||
/coverage
|
|
||||||
/.nyc_output
|
|
||||||
|
|
||||||
# IDEs and editors
|
|
||||||
/.idea
|
|
||||||
.project
|
|
||||||
.classpath
|
|
||||||
.c9/
|
|
||||||
*.launch
|
|
||||||
.settings/
|
|
||||||
*.sublime-workspace
|
|
||||||
|
|
||||||
# IDE - VSCode
|
|
||||||
.vscode/*
|
|
||||||
!.vscode/settings.json
|
|
||||||
!.vscode/tasks.json
|
|
||||||
!.vscode/launch.json
|
|
||||||
!.vscode/extensions.json
|
|
||||||
|
|
||||||
# dotenv environment variable files
|
|
||||||
.env
|
|
||||||
.env.development.local
|
|
||||||
.env.test.local
|
|
||||||
.env.production.local
|
|
||||||
.env.local
|
|
||||||
|
|
||||||
# temp directory
|
|
||||||
.temp
|
|
||||||
.tmp
|
|
||||||
|
|
||||||
# Runtime data
|
|
||||||
pids
|
|
||||||
*.pid
|
|
||||||
*.seed
|
|
||||||
*.pid.lock
|
|
||||||
|
|
||||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
|
||||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
||||||
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"singleQuote": true,
|
|
||||||
"trailingComma": "all"
|
|
||||||
}
|
|
||||||
@ -1,45 +0,0 @@
|
|||||||
# This Dockerfile is copy-pasted into our main docs at /docs/handbook/deploying-with-docker.
|
|
||||||
# Make sure you update both files!
|
|
||||||
|
|
||||||
FROM node:alpine AS builder
|
|
||||||
RUN corepack enable && corepack prepare pnpm@8.9.0 --activate
|
|
||||||
ENV PNPM_HOME=/usr/local/bin
|
|
||||||
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
|
|
||||||
RUN apk add --no-cache libc6-compat
|
|
||||||
RUN apk update
|
|
||||||
# Set working directory
|
|
||||||
WORKDIR /app
|
|
||||||
RUN pnpm add -g turbo@1.12.4 dotenv-cli
|
|
||||||
COPY . .
|
|
||||||
RUN turbo prune --scope=api --docker
|
|
||||||
|
|
||||||
# Add lockfile and package.json's of isolated subworkspace
|
|
||||||
FROM node:alpine AS installer
|
|
||||||
RUN corepack enable && corepack prepare pnpm@latest --activate
|
|
||||||
ENV PNPM_HOME=/usr/local/bin
|
|
||||||
RUN apk add --no-cache libc6-compat
|
|
||||||
RUN apk update
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
# First install dependencies (as they change less often)
|
|
||||||
COPY .gitignore .gitignore
|
|
||||||
COPY --from=builder /app/out/json/ .
|
|
||||||
COPY --from=builder /app/out/pnpm-lock.yaml ./pnpm-lock.yaml
|
|
||||||
COPY --from=builder /app/out/pnpm-workspace.yaml ./pnpm-workspace.yaml
|
|
||||||
RUN pnpm install
|
|
||||||
|
|
||||||
# Build the project and its dependencies
|
|
||||||
COPY --from=builder /app/out/full/ .
|
|
||||||
COPY turbo.json turbo.json
|
|
||||||
RUN pnpm dotenv -e .env turbo run build --filter=api...
|
|
||||||
|
|
||||||
FROM node:alpine AS runner
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
# Don't run production as root
|
|
||||||
RUN addgroup --system --gid 1001 nestjs
|
|
||||||
RUN adduser --system --uid 1001 nestjs
|
|
||||||
USER nestjs
|
|
||||||
COPY --from=installer /app .
|
|
||||||
|
|
||||||
CMD node apps/api/dist/main.js
|
|
||||||
@ -1,73 +0,0 @@
|
|||||||
<p align="center">
|
|
||||||
<a href="http://nestjs.com/" target="blank"><img src="https://nestjs.com/img/logo-small.svg" width="200" alt="Nest Logo" /></a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
[circleci-image]: https://img.shields.io/circleci/build/github/nestjs/nest/master?token=abc123def456
|
|
||||||
[circleci-url]: https://circleci.com/gh/nestjs/nest
|
|
||||||
|
|
||||||
<p align="center">A progressive <a href="http://nodejs.org" target="_blank">Node.js</a> framework for building efficient and scalable server-side applications.</p>
|
|
||||||
<p align="center">
|
|
||||||
<a href="https://www.npmjs.com/~nestjscore" target="_blank"><img src="https://img.shields.io/npm/v/@nestjs/core.svg" alt="NPM Version" /></a>
|
|
||||||
<a href="https://www.npmjs.com/~nestjscore" target="_blank"><img src="https://img.shields.io/npm/l/@nestjs/core.svg" alt="Package License" /></a>
|
|
||||||
<a href="https://www.npmjs.com/~nestjscore" target="_blank"><img src="https://img.shields.io/npm/dm/@nestjs/common.svg" alt="NPM Downloads" /></a>
|
|
||||||
<a href="https://circleci.com/gh/nestjs/nest" target="_blank"><img src="https://img.shields.io/circleci/build/github/nestjs/nest/master" alt="CircleCI" /></a>
|
|
||||||
<a href="https://coveralls.io/github/nestjs/nest?branch=master" target="_blank"><img src="https://coveralls.io/repos/github/nestjs/nest/badge.svg?branch=master#9" alt="Coverage" /></a>
|
|
||||||
<a href="https://discord.gg/G7Qnnhy" target="_blank"><img src="https://img.shields.io/badge/discord-online-brightgreen.svg" alt="Discord"/></a>
|
|
||||||
<a href="https://opencollective.com/nest#backer" target="_blank"><img src="https://opencollective.com/nest/backers/badge.svg" alt="Backers on Open Collective" /></a>
|
|
||||||
<a href="https://opencollective.com/nest#sponsor" target="_blank"><img src="https://opencollective.com/nest/sponsors/badge.svg" alt="Sponsors on Open Collective" /></a>
|
|
||||||
<a href="https://paypal.me/kamilmysliwiec" target="_blank"><img src="https://img.shields.io/badge/Donate-PayPal-ff3f59.svg"/></a>
|
|
||||||
<a href="https://opencollective.com/nest#sponsor" target="_blank"><img src="https://img.shields.io/badge/Support%20us-Open%20Collective-41B883.svg" alt="Support us"></a>
|
|
||||||
<a href="https://twitter.com/nestframework" target="_blank"><img src="https://img.shields.io/twitter/follow/nestframework.svg?style=social&label=Follow"></a>
|
|
||||||
</p>
|
|
||||||
<!--[](https://opencollective.com/nest#backer)
|
|
||||||
[](https://opencollective.com/nest#sponsor)-->
|
|
||||||
|
|
||||||
## Description
|
|
||||||
|
|
||||||
[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.
|
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
```bash
|
|
||||||
$ pnpm install
|
|
||||||
```
|
|
||||||
|
|
||||||
## Running the app
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# development
|
|
||||||
$ pnpm run start
|
|
||||||
|
|
||||||
# watch mode
|
|
||||||
$ pnpm run start:dev
|
|
||||||
|
|
||||||
# production mode
|
|
||||||
$ pnpm run start:prod
|
|
||||||
```
|
|
||||||
|
|
||||||
## Test
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# unit tests
|
|
||||||
$ pnpm run test
|
|
||||||
|
|
||||||
# e2e tests
|
|
||||||
$ pnpm run test:e2e
|
|
||||||
|
|
||||||
# test coverage
|
|
||||||
$ pnpm run test:cov
|
|
||||||
```
|
|
||||||
|
|
||||||
## Support
|
|
||||||
|
|
||||||
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please [read more here](https://docs.nestjs.com/support).
|
|
||||||
|
|
||||||
## Stay in touch
|
|
||||||
|
|
||||||
- Author - [Kamil Myśliwiec](https://kamilmysliwiec.com)
|
|
||||||
- Website - [https://nestjs.com](https://nestjs.com/)
|
|
||||||
- Twitter - [@nestframework](https://twitter.com/nestframework)
|
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
Nest is [MIT licensed](LICENSE).
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://json.schemastore.org/nest-cli",
|
|
||||||
"collection": "@nestjs/schematics",
|
|
||||||
"sourceRoot": "src",
|
|
||||||
"compilerOptions": {
|
|
||||||
"deleteOutDir": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,74 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "api",
|
|
||||||
"version": "0.0.1",
|
|
||||||
"description": "",
|
|
||||||
"author": "",
|
|
||||||
"private": true,
|
|
||||||
"license": "UNLICENSED",
|
|
||||||
"scripts": {
|
|
||||||
"build": "nest build",
|
|
||||||
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
||||||
"start": "nest start",
|
|
||||||
"dev": "nest start --watch",
|
|
||||||
"start:debug": "nest start --debug --watch",
|
|
||||||
"start:prod": "node dist/main",
|
|
||||||
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
||||||
"test": "jest",
|
|
||||||
"test:watch": "jest --watch",
|
|
||||||
"test:cov": "jest --coverage",
|
|
||||||
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
|
||||||
"test:e2e": "jest --config ./test/jest-e2e.json"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@nestjs/cache-manager": "^2.2.1",
|
|
||||||
"@nestjs/common": "^10.0.0",
|
|
||||||
"@nestjs/config": "^3.2.0",
|
|
||||||
"@nestjs/core": "^10.0.0",
|
|
||||||
"@nestjs/platform-express": "^10.0.0",
|
|
||||||
"@nestjs/platform-fastify": "^10.3.3",
|
|
||||||
"cache-manager": "^5.4.0",
|
|
||||||
"cache-manager-ioredis": "^2.1.0",
|
|
||||||
"ioredis": "^5.3.2",
|
|
||||||
"reflect-metadata": "^0.2.0",
|
|
||||||
"rxjs": "^7.8.1",
|
|
||||||
"zod": "^3.22.4"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@nestjs/cli": "^10.0.0",
|
|
||||||
"@nestjs/schematics": "^10.0.0",
|
|
||||||
"@nestjs/testing": "^10.0.0",
|
|
||||||
"@types/jest": "^29.5.2",
|
|
||||||
"@types/node": "^20.3.1",
|
|
||||||
"@types/supertest": "^6.0.0",
|
|
||||||
"@vchikalkin/eslint-config-awesome": "^1.1.6",
|
|
||||||
"eslint": "^8.52.0",
|
|
||||||
"fastify": "^4.26.1",
|
|
||||||
"jest": "^29.5.0",
|
|
||||||
"prettier": "^3.0.0",
|
|
||||||
"shared": "workspace:*",
|
|
||||||
"source-map-support": "^0.5.21",
|
|
||||||
"supertest": "^6.3.3",
|
|
||||||
"ts-jest": "29.1.1",
|
|
||||||
"ts-loader": "^9.4.3",
|
|
||||||
"ts-node": "^10.9.1",
|
|
||||||
"tsconfig-paths": "^4.2.0",
|
|
||||||
"typescript": "^5.3.3"
|
|
||||||
},
|
|
||||||
"jest": {
|
|
||||||
"moduleFileExtensions": [
|
|
||||||
"js",
|
|
||||||
"json",
|
|
||||||
"ts"
|
|
||||||
],
|
|
||||||
"rootDir": "src",
|
|
||||||
"testRegex": ".*\\.spec\\.ts$",
|
|
||||||
"transform": {
|
|
||||||
"^.+\\.(t|j)s$": "ts-jest"
|
|
||||||
},
|
|
||||||
"collectCoverageFrom": [
|
|
||||||
"**/*.(t|j)s"
|
|
||||||
],
|
|
||||||
"coverageDirectory": "../coverage",
|
|
||||||
"testEnvironment": "node"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,16 +0,0 @@
|
|||||||
import { ProxyModule } from './proxy/proxy.module';
|
|
||||||
import { Global, Module } from '@nestjs/common';
|
|
||||||
import { ConfigModule } from '@nestjs/config';
|
|
||||||
|
|
||||||
@Global()
|
|
||||||
@Module({
|
|
||||||
imports: [
|
|
||||||
ConfigModule.forRoot({
|
|
||||||
isGlobal: true,
|
|
||||||
}),
|
|
||||||
ProxyModule,
|
|
||||||
],
|
|
||||||
providers: [],
|
|
||||||
})
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-extraneous-class
|
|
||||||
export class AppModule {}
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
import { seconds } from 'src/utils/time';
|
|
||||||
|
|
||||||
export const DEFAULT_CACHE_TTL = seconds().fromMinutes(15);
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
import envSchema from './schema/env';
|
|
||||||
|
|
||||||
export const env = envSchema.parse(process.env);
|
|
||||||
@ -1,21 +0,0 @@
|
|||||||
import { DEFAULT_CACHE_TTL } from '../constants';
|
|
||||||
import { z } from 'zod';
|
|
||||||
|
|
||||||
const envSchema = z.object({
|
|
||||||
CACHE_TTL: z
|
|
||||||
.string()
|
|
||||||
.transform((val) => Number.parseInt(val, 10))
|
|
||||||
.default(DEFAULT_CACHE_TTL.toString()),
|
|
||||||
PORT: z
|
|
||||||
.string()
|
|
||||||
.transform((val) => Number.parseInt(val, 10))
|
|
||||||
.default('3001'),
|
|
||||||
REDIS_HOST: z.string(),
|
|
||||||
REDIS_PORT: z
|
|
||||||
.string()
|
|
||||||
.transform((val) => Number.parseInt(val, 10))
|
|
||||||
.default('6379'),
|
|
||||||
URL_CRM_GRAPHQL_DIRECT: z.string(),
|
|
||||||
});
|
|
||||||
|
|
||||||
export default envSchema;
|
|
||||||
@ -1,15 +0,0 @@
|
|||||||
import { AppModule } from './app.module';
|
|
||||||
import { env } from './config/env';
|
|
||||||
import { NestFactory } from '@nestjs/core';
|
|
||||||
import type { NestFastifyApplication } from '@nestjs/platform-fastify';
|
|
||||||
import { FastifyAdapter } from '@nestjs/platform-fastify';
|
|
||||||
|
|
||||||
async function bootstrap() {
|
|
||||||
const app = await NestFactory.create<NestFastifyApplication>(
|
|
||||||
AppModule,
|
|
||||||
new FastifyAdapter(),
|
|
||||||
);
|
|
||||||
|
|
||||||
await app.listen(env.PORT, '0.0.0.0');
|
|
||||||
}
|
|
||||||
bootstrap();
|
|
||||||
@ -1,64 +0,0 @@
|
|||||||
import { seconds } from 'src/utils/time';
|
|
||||||
|
|
||||||
export const queryTTL: Record<string, number | false> = {
|
|
||||||
GetAddProductType: seconds().fromHours(12),
|
|
||||||
GetAddproductTypes: seconds().fromHours(12),
|
|
||||||
GetAgent: seconds().fromHours(12),
|
|
||||||
GetBrand: seconds().fromHours(3),
|
|
||||||
GetBrands: seconds().fromHours(3),
|
|
||||||
GetCoefficients: seconds().fromHours(12),
|
|
||||||
GetConfiguration: seconds().fromHours(3),
|
|
||||||
GetConfigurations: seconds().fromMinutes(15),
|
|
||||||
GetCurrencyChanges: seconds().fromHours(1),
|
|
||||||
GetDealer: seconds().fromHours(1),
|
|
||||||
GetDealerPerson: seconds().fromHours(1),
|
|
||||||
GetDealerPersons: seconds().fromHours(1),
|
|
||||||
GetDealers: seconds().fromMinutes(15),
|
|
||||||
GetEltInsuranceRules: seconds().fromHours(12),
|
|
||||||
GetFuelCards: seconds().fromHours(12),
|
|
||||||
GetGPSBrands: seconds().fromHours(24),
|
|
||||||
GetGPSModels: seconds().fromHours(24),
|
|
||||||
GetImportProgram: seconds().fromHours(12),
|
|
||||||
GetInsNSIBTypes: seconds().fromHours(12),
|
|
||||||
GetInsuranceCompanies: seconds().fromHours(12),
|
|
||||||
GetInsuranceCompany: seconds().fromHours(12),
|
|
||||||
GetLead: false,
|
|
||||||
GetLeadUrl: seconds().fromHours(12),
|
|
||||||
GetLeads: false,
|
|
||||||
GetLeaseObjectType: seconds().fromHours(24),
|
|
||||||
GetLeaseObjectTypes: seconds().fromHours(24),
|
|
||||||
GetLeasingWithoutKaskoTypes: seconds().fromHours(12),
|
|
||||||
GetModel: seconds().fromHours(3),
|
|
||||||
GetModels: seconds().fromMinutes(15),
|
|
||||||
GetOpportunities: false,
|
|
||||||
GetOpportunity: false,
|
|
||||||
GetOpportunityUrl: seconds().fromHours(12),
|
|
||||||
GetOsagoAddproductTypes: seconds().fromHours(12),
|
|
||||||
GetProduct: seconds().fromHours(12),
|
|
||||||
GetProducts: seconds().fromHours(12),
|
|
||||||
GetQuote: false,
|
|
||||||
GetQuoteData: false,
|
|
||||||
GetQuoteUrl: seconds().fromHours(12),
|
|
||||||
GetQuotes: false,
|
|
||||||
GetRate: seconds().fromHours(12),
|
|
||||||
GetRates: seconds().fromHours(12),
|
|
||||||
GetRegion: seconds().fromHours(24),
|
|
||||||
GetRegions: seconds().fromHours(24),
|
|
||||||
GetRegistrationTypes: seconds().fromHours(12),
|
|
||||||
GetRewardCondition: seconds().fromHours(1),
|
|
||||||
GetRewardConditions: seconds().fromHours(1),
|
|
||||||
GetRoles: seconds().fromHours(12),
|
|
||||||
GetSotCoefficientType: seconds().fromHours(12),
|
|
||||||
GetSubsidies: seconds().fromHours(12),
|
|
||||||
GetSubsidy: seconds().fromHours(12),
|
|
||||||
GetSystemUser: seconds().fromHours(12),
|
|
||||||
GetTarif: seconds().fromHours(12),
|
|
||||||
GetTarifs: seconds().fromHours(12),
|
|
||||||
GetTechnicalCards: seconds().fromHours(12),
|
|
||||||
GetTelematicTypes: seconds().fromHours(12),
|
|
||||||
GetTown: seconds().fromHours(24),
|
|
||||||
GetTowns: seconds().fromHours(24),
|
|
||||||
GetTrackerTypes: seconds().fromHours(12),
|
|
||||||
GetTransactionCurrencies: seconds().fromHours(12),
|
|
||||||
GetTransactionCurrency: seconds().fromHours(12),
|
|
||||||
};
|
|
||||||
@ -1,127 +0,0 @@
|
|||||||
import { queryTTL } from './lib/config';
|
|
||||||
import type { GQLRequest, GQLResponse } from './types';
|
|
||||||
import { CACHE_MANAGER } from '@nestjs/cache-manager';
|
|
||||||
import {
|
|
||||||
All,
|
|
||||||
Controller,
|
|
||||||
Delete,
|
|
||||||
Get,
|
|
||||||
HttpException,
|
|
||||||
HttpStatus,
|
|
||||||
Inject,
|
|
||||||
Query,
|
|
||||||
Req,
|
|
||||||
Res,
|
|
||||||
} from '@nestjs/common';
|
|
||||||
import type { Cache } from 'cache-manager';
|
|
||||||
import { FastifyReply, FastifyRequest } from 'fastify';
|
|
||||||
import type { QueryItem } from 'shared/types/cache';
|
|
||||||
import { env } from 'src/config/env';
|
|
||||||
|
|
||||||
type RedisStore = Omit<Cache, 'set'> & {
|
|
||||||
set: (key: string, value: unknown, { ttl }: { ttl: number }) => Promise<void>;
|
|
||||||
};
|
|
||||||
|
|
||||||
@Controller('proxy')
|
|
||||||
export class ProxyController {
|
|
||||||
constructor(
|
|
||||||
@Inject(CACHE_MANAGER) private readonly cacheManager: RedisStore,
|
|
||||||
) {}
|
|
||||||
|
|
||||||
@All('/graphql')
|
|
||||||
public async graphql(@Req() req: FastifyRequest, @Res() reply: FastifyReply) {
|
|
||||||
const { operationName, query, variables } = req.body as GQLRequest;
|
|
||||||
|
|
||||||
const key = `${operationName} ${JSON.stringify(variables)}`;
|
|
||||||
const cached = await this.cacheManager.get(key);
|
|
||||||
|
|
||||||
if (cached) return reply.send(cached);
|
|
||||||
|
|
||||||
const response = await fetch(env.URL_CRM_GRAPHQL_DIRECT, {
|
|
||||||
body: JSON.stringify({ operationName, query, variables }),
|
|
||||||
headers: {
|
|
||||||
Authorization: req.headers.authorization,
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
Cookie: req.headers.cookie,
|
|
||||||
},
|
|
||||||
method: req.method,
|
|
||||||
});
|
|
||||||
|
|
||||||
const data = (await response.json()) as GQLResponse;
|
|
||||||
|
|
||||||
if (!response.ok || data?.error || data?.errors?.length)
|
|
||||||
throw new HttpException(
|
|
||||||
response.statusText,
|
|
||||||
response.status || HttpStatus.INTERNAL_SERVER_ERROR,
|
|
||||||
);
|
|
||||||
|
|
||||||
const ttl = queryTTL[operationName];
|
|
||||||
if (data && ttl !== false)
|
|
||||||
await this.cacheManager.set(key, data, { ttl: ttl || env.CACHE_TTL });
|
|
||||||
|
|
||||||
return reply.send(data);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Get('/get-queries')
|
|
||||||
public async getQueriesList(@Res() reply: FastifyReply) {
|
|
||||||
const res = await this.getAllQueries();
|
|
||||||
|
|
||||||
return reply.send(res);
|
|
||||||
}
|
|
||||||
|
|
||||||
private async getAllQueries() {
|
|
||||||
const list = await this.cacheManager.store.keys('*');
|
|
||||||
|
|
||||||
return (Object.keys(queryTTL) as Array<keyof typeof queryTTL>).reduce(
|
|
||||||
(acc, queryName) => {
|
|
||||||
const queries = list.filter((x) => x.split(' ').at(0) === queryName);
|
|
||||||
if (queries.length) {
|
|
||||||
const ttl = queryTTL[queryName];
|
|
||||||
acc[queryName] = { queries, ttl };
|
|
||||||
}
|
|
||||||
|
|
||||||
return acc;
|
|
||||||
},
|
|
||||||
{} as Record<string, QueryItem>,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Delete('/delete-query')
|
|
||||||
public async deleteQuery(
|
|
||||||
@Query('queryKey') queryKey: string,
|
|
||||||
@Res() reply: FastifyReply,
|
|
||||||
) {
|
|
||||||
try {
|
|
||||||
await this.cacheManager.del(queryKey);
|
|
||||||
|
|
||||||
return reply.send('ok');
|
|
||||||
} catch (error) {
|
|
||||||
throw new HttpException(error, HttpStatus.INTERNAL_SERVER_ERROR);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Delete('/reset')
|
|
||||||
public async reset(@Res() reply: FastifyReply) {
|
|
||||||
try {
|
|
||||||
await this.cacheManager.reset();
|
|
||||||
|
|
||||||
return reply.send('ok');
|
|
||||||
} catch (error) {
|
|
||||||
throw new HttpException(error, HttpStatus.INTERNAL_SERVER_ERROR);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Get('/get-query')
|
|
||||||
public async getQueryValue(
|
|
||||||
@Query('queryKey') queryKey: string,
|
|
||||||
@Res() reply: FastifyReply,
|
|
||||||
) {
|
|
||||||
try {
|
|
||||||
const value = await this.cacheManager.get(queryKey);
|
|
||||||
|
|
||||||
return reply.send(value);
|
|
||||||
} catch (error) {
|
|
||||||
throw new HttpException(error, HttpStatus.INTERNAL_SERVER_ERROR);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,20 +0,0 @@
|
|||||||
import { ProxyController } from './proxy.controller';
|
|
||||||
import { CacheModule } from '@nestjs/cache-manager';
|
|
||||||
import { Module } from '@nestjs/common';
|
|
||||||
import * as redisStore from 'cache-manager-ioredis';
|
|
||||||
import type { RedisOptions } from 'ioredis';
|
|
||||||
import { env } from 'src/config/env';
|
|
||||||
|
|
||||||
@Module({
|
|
||||||
controllers: [ProxyController],
|
|
||||||
imports: [
|
|
||||||
CacheModule.register<RedisOptions>({
|
|
||||||
host: env.REDIS_HOST,
|
|
||||||
port: env.REDIS_PORT,
|
|
||||||
store: redisStore,
|
|
||||||
ttl: env.CACHE_TTL,
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
})
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-extraneous-class
|
|
||||||
export class ProxyModule {}
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
export type GQLRequest = {
|
|
||||||
operationName: string;
|
|
||||||
query: string;
|
|
||||||
variables: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type GQLResponse = {
|
|
||||||
data: unknown;
|
|
||||||
error?: unknown;
|
|
||||||
errors?: unknown[];
|
|
||||||
};
|
|
||||||
@ -1,13 +0,0 @@
|
|||||||
export function seconds() {
|
|
||||||
return {
|
|
||||||
fromDays(days: number) {
|
|
||||||
return days * 24 * 60 * 60;
|
|
||||||
},
|
|
||||||
fromHours(hours: number) {
|
|
||||||
return hours * 60 * 60;
|
|
||||||
},
|
|
||||||
fromMinutes(minutes: number) {
|
|
||||||
return minutes * 60;
|
|
||||||
},
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "./tsconfig.json",
|
|
||||||
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
|
|
||||||
}
|
|
||||||
@ -1,22 +0,0 @@
|
|||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"module": "commonjs",
|
|
||||||
"declaration": true,
|
|
||||||
"removeComments": true,
|
|
||||||
"emitDecoratorMetadata": true,
|
|
||||||
"experimentalDecorators": true,
|
|
||||||
"allowSyntheticDefaultImports": true,
|
|
||||||
"target": "ES2021",
|
|
||||||
"sourceMap": true,
|
|
||||||
"outDir": "./dist",
|
|
||||||
"baseUrl": "./",
|
|
||||||
"incremental": true,
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"strictNullChecks": false,
|
|
||||||
"noImplicitAny": false,
|
|
||||||
"strictBindCallApply": false,
|
|
||||||
"forceConsistentCasingInFileNames": false,
|
|
||||||
"noFallthroughCasesInSwitch": false
|
|
||||||
},
|
|
||||||
"exclude": ["node_modules"]
|
|
||||||
}
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
.git
|
|
||||||
Dockerfile
|
|
||||||
.dockerignore
|
|
||||||
node_modules
|
|
||||||
*.log
|
|
||||||
dist
|
|
||||||
.next
|
|
||||||
README.md
|
|
||||||
@ -1,14 +1,8 @@
|
|||||||
const { createConfig } = require('@vchikalkin/eslint-config-awesome');
|
module.exports = {
|
||||||
|
root: true,
|
||||||
module.exports = createConfig('next-typescript', {
|
extends: ['custom', 'custom/rules'],
|
||||||
parserOptions: {
|
parserOptions: {
|
||||||
project: './tsconfig.json',
|
project: './tsconfig.json',
|
||||||
tsconfigRootDir: __dirname,
|
tsconfigRootDir: __dirname,
|
||||||
},
|
},
|
||||||
rules: {
|
};
|
||||||
'import/no-duplicates': 'off',
|
|
||||||
'react/forbid-component-props': 'off',
|
|
||||||
'import/consistent-type-specifier-style': 'off',
|
|
||||||
},
|
|
||||||
ignorePatterns: ['*.config.js', '.eslintrc.js'],
|
|
||||||
});
|
|
||||||
|
|||||||
4
apps/web/.gitignore
vendored
4
apps/web/.gitignore
vendored
@ -1,4 +0,0 @@
|
|||||||
|
|
||||||
# Sentry Config File
|
|
||||||
.sentryclirc
|
|
||||||
/styles/antd.min.css
|
|
||||||
@ -1,6 +1,6 @@
|
|||||||
overwrite: true
|
overwrite: true
|
||||||
schema: './graphql/crm.schema.graphql'
|
schema: './graphql/crm.schema.graphql'
|
||||||
documents: [./**/!(*.schema).graphql]
|
documents: '**/*.{graphql,js,ts,jsx,tsx}'
|
||||||
generates:
|
generates:
|
||||||
./graphql/crm.types.ts:
|
./graphql/crm.types.ts:
|
||||||
plugins:
|
plugins:
|
||||||
@ -16,7 +16,7 @@ generates:
|
|||||||
object: true
|
object: true
|
||||||
defaultValue: true
|
defaultValue: true
|
||||||
scalars:
|
scalars:
|
||||||
UUID: string
|
Uuid: string
|
||||||
Decimal: number
|
Decimal: number
|
||||||
DateTime: string
|
DateTime: string
|
||||||
# exclude: './graphql/crm.schema.graphql'
|
# exclude: './graphql/crm.schema.graphql'
|
||||||
|
|||||||
@ -1,19 +0,0 @@
|
|||||||
import elementsToValues from '@/Components/Calculation/config/map/values';
|
|
||||||
|
|
||||||
export const ERR_ELT_KASKO = 'ERR_ELT_KASKO';
|
|
||||||
export const ERR_ELT_OSAGO = 'ERR_ELT_OSAGO';
|
|
||||||
export const ERR_FINGAP_TABLE = 'ERR_FINGAP_TABLE';
|
|
||||||
export const ERR_INSURANCE_TABLE = 'ERR_INSURANCE_TABLE';
|
|
||||||
export const ERR_PAYMENTS_TABLE = 'ERR_PAYMENTS_TABLE';
|
|
||||||
|
|
||||||
export const ERROR_TABLE_KEYS = [
|
|
||||||
ERR_ELT_KASKO,
|
|
||||||
ERR_ELT_OSAGO,
|
|
||||||
ERR_FINGAP_TABLE,
|
|
||||||
ERR_INSURANCE_TABLE,
|
|
||||||
ERR_PAYMENTS_TABLE,
|
|
||||||
];
|
|
||||||
|
|
||||||
export const ERROR_ELEMENTS_KEYS = Object.keys(elementsToValues);
|
|
||||||
|
|
||||||
export const ERROR_KEYS = [...ERROR_ELEMENTS_KEYS, ...ERROR_TABLE_KEYS];
|
|
||||||
@ -1,77 +0,0 @@
|
|||||||
import * as cacheApi from '@/api/cache/query';
|
|
||||||
import { min } from '@/styles/mq';
|
|
||||||
import { useQuery } from '@tanstack/react-query';
|
|
||||||
import { memo, useState } from 'react';
|
|
||||||
import styled from 'styled-components';
|
|
||||||
import { Button, Collapse } from 'ui/elements';
|
|
||||||
import { Flex } from 'ui/grid';
|
|
||||||
|
|
||||||
type QueryProps = {
|
|
||||||
readonly onDeleteQuery: () => Promise<void>;
|
|
||||||
readonly queryKey: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
const StyledPre = styled.pre`
|
|
||||||
max-height: 300px;
|
|
||||||
overflow-y: auto;
|
|
||||||
|
|
||||||
${min('desktop')} {
|
|
||||||
max-height: 800px;
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
export const Query = memo(({ onDeleteQuery, queryKey }: QueryProps) => {
|
|
||||||
const { data, refetch } = useQuery({
|
|
||||||
enabled: false,
|
|
||||||
queryFn: ({ signal }) => signal && cacheApi.getQueryValue(queryKey, { signal }),
|
|
||||||
queryKey: ['admin', 'cache', 'query', queryKey],
|
|
||||||
refetchOnWindowFocus: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const [activeKey, setActiveKey] = useState<string | undefined>(undefined);
|
|
||||||
const [deletePending, setDeletePending] = useState(false);
|
|
||||||
|
|
||||||
const content = (
|
|
||||||
<>
|
|
||||||
<StyledPre>{JSON.stringify(data, null, 2)}</StyledPre>
|
|
||||||
<Flex justifyContent="flex-end">
|
|
||||||
<Button
|
|
||||||
type="primary"
|
|
||||||
danger
|
|
||||||
disabled={deletePending}
|
|
||||||
onClick={() => {
|
|
||||||
setDeletePending(true);
|
|
||||||
onDeleteQuery().finally(() => {
|
|
||||||
setDeletePending(false);
|
|
||||||
});
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Удалить
|
|
||||||
</Button>
|
|
||||||
</Flex>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Collapse
|
|
||||||
bordered={false}
|
|
||||||
activeKey={activeKey}
|
|
||||||
items={[
|
|
||||||
{
|
|
||||||
children: data ? content : 'Загрузка...',
|
|
||||||
key: queryKey,
|
|
||||||
label: queryKey,
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
onChange={() => {
|
|
||||||
if (activeKey) {
|
|
||||||
setActiveKey(undefined);
|
|
||||||
} else {
|
|
||||||
setActiveKey(queryKey);
|
|
||||||
|
|
||||||
refetch();
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
@ -1,22 +0,0 @@
|
|||||||
import { Query } from './Query';
|
|
||||||
import * as cacheApi from '@/api/cache/query';
|
|
||||||
import { useState } from 'react';
|
|
||||||
import type { QueryItem } from 'shared/types/cache';
|
|
||||||
|
|
||||||
type QueryListProps = QueryItem;
|
|
||||||
|
|
||||||
export const QueryList = ({ queries }: QueryListProps) => {
|
|
||||||
const [deletedQueries, setDeletedQueries] = useState<QueryItem['queries']>([]);
|
|
||||||
|
|
||||||
function handleDeleteQuery(queryKey: string) {
|
|
||||||
return cacheApi
|
|
||||||
.deleteQuery(queryKey)
|
|
||||||
.then(() => setDeletedQueries([...deletedQueries, queryKey]));
|
|
||||||
}
|
|
||||||
|
|
||||||
const activeQueries = queries.filter((queryKey) => !deletedQueries.includes(queryKey));
|
|
||||||
|
|
||||||
return activeQueries.map((queryKey) => (
|
|
||||||
<Query key={queryKey} queryKey={queryKey} onDeleteQuery={() => handleDeleteQuery(queryKey)} />
|
|
||||||
));
|
|
||||||
};
|
|
||||||
@ -1,24 +0,0 @@
|
|||||||
import { useState } from 'react';
|
|
||||||
import { Button } from 'ui/elements';
|
|
||||||
import { ReloadOutlined } from 'ui/elements/icons';
|
|
||||||
|
|
||||||
export function ReloadButton({ onClick }: { readonly onClick: () => Promise<unknown> }) {
|
|
||||||
const [pending, setPending] = useState(false);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Button
|
|
||||||
loading={pending}
|
|
||||||
onClick={() => {
|
|
||||||
setPending(true);
|
|
||||||
onClick().finally(() => {
|
|
||||||
setTimeout(() => {
|
|
||||||
setPending(false);
|
|
||||||
}, 1000);
|
|
||||||
});
|
|
||||||
}}
|
|
||||||
icon={<ReloadOutlined rev="" />}
|
|
||||||
>
|
|
||||||
Обновить
|
|
||||||
</Button>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -1,70 +0,0 @@
|
|||||||
import Background from '../../Layout/Background';
|
|
||||||
import { useFilteredQueries } from './lib/hooks';
|
|
||||||
import { QueryList } from './QueryList';
|
|
||||||
import { reset } from '@/api/cache/query';
|
|
||||||
import { min } from '@/styles/mq';
|
|
||||||
import styled from 'styled-components';
|
|
||||||
import { Button, Collapse, Divider, Input } from 'ui/elements';
|
|
||||||
|
|
||||||
const Wrapper = styled(Background)`
|
|
||||||
padding: 4px 6px;
|
|
||||||
width: 100vw;
|
|
||||||
|
|
||||||
${min('tablet')} {
|
|
||||||
min-height: 790px;
|
|
||||||
}
|
|
||||||
|
|
||||||
${min('laptop')} {
|
|
||||||
padding: 4px 18px 10px;
|
|
||||||
width: 1280px;
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
const Flex = styled.div`
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 10px;
|
|
||||||
`;
|
|
||||||
|
|
||||||
const ButtonWrapper = styled.div`
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
`;
|
|
||||||
|
|
||||||
export function Cache() {
|
|
||||||
const { filteredQueries, refetch, setFilterString } = useFilteredQueries();
|
|
||||||
|
|
||||||
function handleDeleteQuery() {
|
|
||||||
return reset().then(() => refetch());
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!filteredQueries) {
|
|
||||||
return <div>Загрузка...</div>;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Wrapper>
|
|
||||||
<Divider>Управление кэшем</Divider>
|
|
||||||
<Flex>
|
|
||||||
<Input
|
|
||||||
placeholder="Поиск по запросу"
|
|
||||||
allowClear
|
|
||||||
onChange={(e) => setFilterString(e.target.value)}
|
|
||||||
/>
|
|
||||||
<Collapse
|
|
||||||
accordion
|
|
||||||
items={Object.keys(filteredQueries).map((queryGroupName) => ({
|
|
||||||
children: <QueryList {...filteredQueries[queryGroupName]} />,
|
|
||||||
key: queryGroupName,
|
|
||||||
label: queryGroupName,
|
|
||||||
}))}
|
|
||||||
/>
|
|
||||||
<ButtonWrapper>
|
|
||||||
<Button type="primary" danger disabled={false} onClick={() => handleDeleteQuery()}>
|
|
||||||
Очистить кэш
|
|
||||||
</Button>
|
|
||||||
</ButtonWrapper>
|
|
||||||
</Flex>
|
|
||||||
</Wrapper>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -1,30 +0,0 @@
|
|||||||
import { filterQueries } from './utils';
|
|
||||||
import * as cacheApi from '@/api/cache/query';
|
|
||||||
import type { ResponseQueries } from '@/api/cache/types';
|
|
||||||
import { useQuery } from '@tanstack/react-query';
|
|
||||||
import { useEffect, useState } from 'react';
|
|
||||||
import { useDebounce } from 'use-debounce';
|
|
||||||
|
|
||||||
export function useFilteredQueries() {
|
|
||||||
const { data: queries, refetch } = useQuery({
|
|
||||||
enabled: false,
|
|
||||||
queryFn: ({ signal }) => signal && cacheApi.getQueries({ signal }),
|
|
||||||
queryKey: ['admin', 'cache', 'queries'],
|
|
||||||
refetchOnWindowFocus: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const [filteredQueries, setFilteredQueries] = useState<ResponseQueries | undefined>(queries);
|
|
||||||
const [filterString, setFilterString] = useState('');
|
|
||||||
const [debouncedFilterString] = useDebounce(filterString, 350);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (!debouncedFilterString) {
|
|
||||||
setFilteredQueries(queries);
|
|
||||||
}
|
|
||||||
if (queries && debouncedFilterString) {
|
|
||||||
setFilteredQueries(filterQueries(queries, debouncedFilterString));
|
|
||||||
}
|
|
||||||
}, [debouncedFilterString, queries]);
|
|
||||||
|
|
||||||
return { filteredQueries, queries, refetch, setFilterString };
|
|
||||||
}
|
|
||||||
@ -1,23 +0,0 @@
|
|||||||
import type { ResponseQueries } from '@/api/cache/types';
|
|
||||||
|
|
||||||
export function filterQueries(queriesObj: ResponseQueries, searchStr: string): ResponseQueries {
|
|
||||||
const filteredObj: ResponseQueries = {};
|
|
||||||
|
|
||||||
for (const key in queriesObj) {
|
|
||||||
if (key.includes(searchStr)) {
|
|
||||||
filteredObj[key] = queriesObj[key];
|
|
||||||
} else {
|
|
||||||
const queries: string[] = [];
|
|
||||||
queriesObj[key].queries.forEach((queryKey) => {
|
|
||||||
if (queryKey.toLowerCase().includes(searchStr.toLowerCase())) {
|
|
||||||
queries.push(queryKey);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (queries.length) {
|
|
||||||
filteredObj[key] = { ...queriesObj[key], queries };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return filteredObj;
|
|
||||||
}
|
|
||||||
@ -1,17 +0,0 @@
|
|||||||
import { min } from '@/styles/mq';
|
|
||||||
import type { PropsWithChildren } from 'react';
|
|
||||||
import styled from 'styled-components';
|
|
||||||
|
|
||||||
const Flex = styled.div`
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
|
|
||||||
${min('laptop')} {
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
export function Layout({ children }: PropsWithChildren) {
|
|
||||||
return <Flex>{children}</Flex>;
|
|
||||||
}
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
export * from './Cache';
|
|
||||||
export * from './Layout';
|
|
||||||
@ -7,7 +7,7 @@ export const rows: FormTabRows = [
|
|||||||
{
|
{
|
||||||
title: 'Регистрация',
|
title: 'Регистрация',
|
||||||
},
|
},
|
||||||
[['radioObjectRegistration', 'radioTypePTS'], { gridTemplateColumns: ['1fr', '1fr 1fr'] }],
|
[['radioObjectRegistration', 'radioTypePTS'], { gridTemplateColumns: ['1fr 1fr'] }],
|
||||||
[['selectRegionRegistration', 'selectTownRegistration', 'selectObjectRegionRegistration']],
|
[['selectRegionRegistration', 'selectTownRegistration', 'selectObjectRegionRegistration']],
|
||||||
[['selectObjectCategoryTax', 'selectObjectTypeTax', 'tbxVehicleTaxInYear']],
|
[['selectObjectCategoryTax', 'selectObjectTypeTax', 'tbxVehicleTaxInYear']],
|
||||||
[['tbxLeaseObjectYear', 'tbxLeaseObjectMotorPower', 'tbxVehicleTaxInLeasingPeriod']],
|
[['tbxLeaseObjectYear', 'tbxLeaseObjectMotorPower', 'tbxVehicleTaxInLeasingPeriod']],
|
||||||
@ -26,6 +26,6 @@ export const rows: FormTabRows = [
|
|||||||
{
|
{
|
||||||
title: 'Доп. продукты',
|
title: 'Доп. продукты',
|
||||||
},
|
},
|
||||||
[['selectTechnicalCard', 'selectInsNSIB'], { gridTemplateColumns: ['1fr', '1fr 2fr'] }],
|
[['selectTechnicalCard', 'selectInsNSIB'], { gridTemplateColumns: '1fr 2fr' }],
|
||||||
[['selectRequirementTelematic', 'selectTracker', 'selectTelematic']],
|
[['selectRequirementTelematic', 'selectTracker', 'selectTelematic']],
|
||||||
];
|
];
|
||||||
|
|||||||
@ -4,14 +4,9 @@ export const id = 'create-kp';
|
|||||||
export const title = 'Создание КП';
|
export const title = 'Создание КП';
|
||||||
|
|
||||||
export const rows: FormTabRows = [
|
export const rows: FormTabRows = [
|
||||||
[
|
[['cbxPriceWithDiscount', 'cbxFullPriceWithDiscount', 'cbxCostIncrease']],
|
||||||
['cbxPriceWithDiscount', 'cbxFullPriceWithDiscount'],
|
[['cbxInsurance', 'cbxRegistrationQuote', 'cbxTechnicalCardQuote']],
|
||||||
{ gridTemplateColumns: ['1fr', '1fr 1fr'] },
|
[['cbxNSIB', 'cbxQuoteRedemptionGraph', 'cbxShowFinGAP']],
|
||||||
],
|
[['tbxQuoteName', 'radioQuoteContactGender'], { gridTemplateColumns: '1fr 1fr' }],
|
||||||
[['cbxQuotePriceWithFullVAT', 'cbxCostIncrease'], { gridTemplateColumns: ['1fr', '1fr 1fr'] }],
|
[['btnCreateKP', 'linkDownloadKp'], { gridTemplateColumns: '1fr 1fr' }],
|
||||||
[['cbxInsurance', 'cbxRegistrationQuote'], { gridTemplateColumns: ['1fr', '1fr 1fr'] }],
|
|
||||||
[['cbxTechnicalCardQuote', 'cbxNSIB'], { gridTemplateColumns: ['1fr', '1fr 1fr'] }],
|
|
||||||
[['cbxQuoteRedemptionGraph', 'cbxShowFinGAP'], { gridTemplateColumns: ['1fr', '1fr 1fr'] }],
|
|
||||||
[['cbxQuoteShowAcceptLimit'], { gridTemplateColumns: ['1fr', '1fr 1fr'] }],
|
|
||||||
[['tbxQuoteName', 'radioQuoteContactGender'], { gridTemplateColumns: ['1fr', '2fr 1fr'] }],
|
|
||||||
];
|
];
|
||||||
|
|||||||
@ -1,60 +0,0 @@
|
|||||||
import type { columns } from '../lib/config';
|
|
||||||
import type { Row, StoreSelector } from '../types';
|
|
||||||
import { message } from '@/Components/Common/Notification';
|
|
||||||
import { useStore } from '@/stores/hooks';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import { Table } from 'ui/elements';
|
|
||||||
|
|
||||||
export const PolicyTable = observer(
|
|
||||||
({
|
|
||||||
onSelectRow,
|
|
||||||
storeSelector,
|
|
||||||
...props
|
|
||||||
}: {
|
|
||||||
columns: typeof columns;
|
|
||||||
onSelectRow: (row: Row) => void;
|
|
||||||
storeSelector: StoreSelector;
|
|
||||||
}) => {
|
|
||||||
const { $process, $tables } = useStore();
|
|
||||||
const { getRows, getSelectedRow, setSelectedKey } = storeSelector($tables.elt);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Table
|
|
||||||
size="small"
|
|
||||||
pagination={false}
|
|
||||||
dataSource={getRows}
|
|
||||||
scroll={{
|
|
||||||
x: true,
|
|
||||||
}}
|
|
||||||
rowSelection={{
|
|
||||||
getCheckboxProps: (record) => ({
|
|
||||||
disabled:
|
|
||||||
!record.sum || record.status !== null || getRows.some((x) => x.status === 'fetching'),
|
|
||||||
}),
|
|
||||||
hideSelectAll: true,
|
|
||||||
onSelect: (record) => {
|
|
||||||
if (record.sum > 0) {
|
|
||||||
$process.add('ELT');
|
|
||||||
setSelectedKey(record.key);
|
|
||||||
onSelectRow(record);
|
|
||||||
message.success({
|
|
||||||
content: 'Выбранный расчет ЭЛТ применен',
|
|
||||||
duration: 1,
|
|
||||||
key: record.key,
|
|
||||||
onClick: () => message.destroy(record.key),
|
|
||||||
});
|
|
||||||
$process.delete('ELT');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
selectedRowKeys: getSelectedRow ? [getSelectedRow.key] : [],
|
|
||||||
type: 'radio',
|
|
||||||
}}
|
|
||||||
expandable={{
|
|
||||||
expandedRowRender: (record) => record.message,
|
|
||||||
rowExpandable: (record) => Boolean(record.message),
|
|
||||||
}}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
@ -1,32 +0,0 @@
|
|||||||
import type { StoreSelector } from '../types';
|
|
||||||
import { useStore } from '@/stores/hooks';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import { Button } from 'ui/elements';
|
|
||||||
import { ReloadOutlined } from 'ui/elements/icons';
|
|
||||||
import { Flex } from 'ui/grid';
|
|
||||||
|
|
||||||
export const ReloadButton = observer(
|
|
||||||
({ storeSelector, onClick }: { onClick: () => void; storeSelector: StoreSelector }) => {
|
|
||||||
const { $tables, $process } = useStore();
|
|
||||||
const { validation, getRows: rows } = storeSelector($tables.elt);
|
|
||||||
|
|
||||||
const hasErrors = validation.hasErrors;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Flex justifyContent="center">
|
|
||||||
<Button
|
|
||||||
onClick={onClick}
|
|
||||||
disabled={
|
|
||||||
hasErrors ||
|
|
||||||
$process.has('LoadKP') ||
|
|
||||||
$process.has('Calculate') ||
|
|
||||||
$process.has('CreateKP')
|
|
||||||
}
|
|
||||||
loading={rows.some((x) => x.status === 'fetching')}
|
|
||||||
shape="circle"
|
|
||||||
icon={<ReloadOutlined rev="" />}
|
|
||||||
/>
|
|
||||||
</Flex>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
@ -1,23 +0,0 @@
|
|||||||
import type { StoreSelector } from '../types';
|
|
||||||
import { useStore } from '@/stores/hooks';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import { Alert } from 'ui/elements';
|
|
||||||
|
|
||||||
export const Validation = observer(({ storeSelector }: { storeSelector: StoreSelector }) => {
|
|
||||||
const { $tables, $process } = useStore();
|
|
||||||
const { validation } = storeSelector($tables.elt);
|
|
||||||
|
|
||||||
const errors = validation.getErrors();
|
|
||||||
|
|
||||||
if (errors?.length) {
|
|
||||||
return (
|
|
||||||
<Alert
|
|
||||||
type={$process.has('Unlimited') ? 'warning' : 'error'}
|
|
||||||
banner
|
|
||||||
message={errors[0].message}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
});
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
export * from './PolicyTable';
|
|
||||||
export * from './ReloadButton';
|
|
||||||
export * from './Validation';
|
|
||||||
@ -1,75 +0,0 @@
|
|||||||
/* eslint-disable sonarjs/cognitive-complexity */
|
|
||||||
import { PolicyTable, ReloadButton, Validation } from './Components';
|
|
||||||
import { columns } from './lib/config';
|
|
||||||
import { resetRow } from './lib/tools';
|
|
||||||
import type { Row, StoreSelector } from './types';
|
|
||||||
import { useStore } from '@/stores/hooks';
|
|
||||||
import { trpcClient } from '@/trpc/client';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import { Flex } from 'ui/grid';
|
|
||||||
|
|
||||||
const storeSelector: StoreSelector = ({ kasko }) => kasko;
|
|
||||||
|
|
||||||
export const Kasko = observer(() => {
|
|
||||||
const store = useStore();
|
|
||||||
const { $calculation, $tables } = store;
|
|
||||||
|
|
||||||
const calculateKasko = trpcClient.eltKasko.useMutation({
|
|
||||||
onError() {
|
|
||||||
$tables.elt.kasko.setRows(
|
|
||||||
$tables.elt.kasko.getRows.map((row) => ({ ...row, status: 'error' }))
|
|
||||||
);
|
|
||||||
},
|
|
||||||
onMutate: () => {
|
|
||||||
const rows = $tables.elt.kasko.getRows;
|
|
||||||
$tables.elt.kasko.setRows(rows.map((row) => ({ ...resetRow(row), status: 'fetching' })));
|
|
||||||
},
|
|
||||||
onSuccess: ({ rows }) => {
|
|
||||||
$tables.elt.kasko.setRows(rows);
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
function handleOnClick() {
|
|
||||||
calculateKasko.mutate({
|
|
||||||
calculation: {
|
|
||||||
values: store.$calculation.$values.getValues(),
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleOnSelectRow(row: Row) {
|
|
||||||
$tables.insurance.row('kasko').column('insuranceCompany').setValue(row.key);
|
|
||||||
$tables.insurance.row('kasko').column('insCost').setValue(row.sum);
|
|
||||||
$calculation.element('tbxInsFranchise').setValue(row.totalFranchise);
|
|
||||||
}
|
|
||||||
|
|
||||||
type Column = (typeof columns)[number];
|
|
||||||
const kaskoColumns = columns.map((column: Column) => {
|
|
||||||
if (column.key === 'name') {
|
|
||||||
return {
|
|
||||||
...column,
|
|
||||||
title: 'Страховая компания КАСКО',
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (column.key === 'status') {
|
|
||||||
return {
|
|
||||||
...column,
|
|
||||||
title: <ReloadButton storeSelector={storeSelector} onClick={() => handleOnClick()} />,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return column;
|
|
||||||
});
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Flex flexDirection="column">
|
|
||||||
<Validation storeSelector={storeSelector} />
|
|
||||||
<PolicyTable
|
|
||||||
storeSelector={storeSelector}
|
|
||||||
columns={kaskoColumns}
|
|
||||||
onSelectRow={(row) => handleOnSelectRow(row)}
|
|
||||||
/>
|
|
||||||
</Flex>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
@ -1,80 +0,0 @@
|
|||||||
/* eslint-disable no-negated-condition */
|
|
||||||
/* eslint-disable sonarjs/cognitive-complexity */
|
|
||||||
import { PolicyTable, ReloadButton, Validation } from './Components';
|
|
||||||
import { columns } from './lib/config';
|
|
||||||
import { resetRow } from './lib/tools';
|
|
||||||
import type { Row, StoreSelector } from './types';
|
|
||||||
import { useStore } from '@/stores/hooks';
|
|
||||||
import { trpcClient } from '@/trpc/client';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import { Flex } from 'ui/grid';
|
|
||||||
|
|
||||||
const storeSelector: StoreSelector = ({ osago }) => osago;
|
|
||||||
|
|
||||||
export const Osago = observer(() => {
|
|
||||||
const store = useStore();
|
|
||||||
const { $tables } = store;
|
|
||||||
|
|
||||||
const calculateOsago = trpcClient.eltOsago.useMutation({
|
|
||||||
onError() {
|
|
||||||
$tables.elt.osago.setRows(
|
|
||||||
$tables.elt.osago.getRows.map((row) => ({ ...row, status: 'error' }))
|
|
||||||
);
|
|
||||||
},
|
|
||||||
onMutate: () => {
|
|
||||||
const rows = $tables.elt.osago.getRows;
|
|
||||||
$tables.elt.osago.setRows(rows.map((row) => ({ ...resetRow(row), status: 'fetching' })));
|
|
||||||
},
|
|
||||||
onSuccess: ({ rows }) => {
|
|
||||||
$tables.elt.osago.setRows(rows);
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
async function handleOnClick() {
|
|
||||||
calculateOsago.mutate({
|
|
||||||
calculation: {
|
|
||||||
values: store.$calculation.$values.getValues(),
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleOnSelectRow(row: Row) {
|
|
||||||
$tables.insurance.row('osago').column('insuranceCompany').setValue(row.key);
|
|
||||||
$tables.insurance.row('osago').column('insCost').setValue(row.sum);
|
|
||||||
}
|
|
||||||
|
|
||||||
type Column = (typeof columns)[number];
|
|
||||||
const osagoColumns = columns.map((column: Column) => {
|
|
||||||
if (column.key === 'name') {
|
|
||||||
return {
|
|
||||||
...column,
|
|
||||||
title: 'Страховая компания ОСАГО',
|
|
||||||
};
|
|
||||||
}
|
|
||||||
if (column.key === 'status') {
|
|
||||||
return {
|
|
||||||
...column,
|
|
||||||
title: <ReloadButton storeSelector={storeSelector} onClick={() => handleOnClick()} />,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
if (column.key === 'totalFranchise') {
|
|
||||||
return {
|
|
||||||
...column,
|
|
||||||
render: () => 'Не требуется',
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return column;
|
|
||||||
});
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Flex flexDirection="column">
|
|
||||||
<Validation storeSelector={storeSelector} />
|
|
||||||
<PolicyTable
|
|
||||||
storeSelector={storeSelector}
|
|
||||||
columns={osagoColumns}
|
|
||||||
onSelectRow={(row) => handleOnSelectRow(row)}
|
|
||||||
/>
|
|
||||||
</Flex>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
@ -1,20 +0,0 @@
|
|||||||
import { Kasko } from './Kasko';
|
|
||||||
import { Osago } from './Osago';
|
|
||||||
|
|
||||||
const id = 'elt';
|
|
||||||
const title = 'ЭЛТ';
|
|
||||||
|
|
||||||
function ELT() {
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<Osago />
|
|
||||||
<Kasko />
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default {
|
|
||||||
Component: ELT,
|
|
||||||
id,
|
|
||||||
title,
|
|
||||||
};
|
|
||||||
@ -1,56 +0,0 @@
|
|||||||
import type { Row } from '../types';
|
|
||||||
import type { ColumnsType } from 'antd/lib/table';
|
|
||||||
import { CloseOutlined, LoadingOutlined } from 'ui/elements/icons';
|
|
||||||
import { Flex } from 'ui/grid';
|
|
||||||
|
|
||||||
const formatter = Intl.NumberFormat('ru', {
|
|
||||||
currency: 'RUB',
|
|
||||||
style: 'currency',
|
|
||||||
}).format;
|
|
||||||
|
|
||||||
export const columns: ColumnsType<Row> = [
|
|
||||||
{
|
|
||||||
dataIndex: 'name',
|
|
||||||
key: 'name',
|
|
||||||
title: 'Страховая компания',
|
|
||||||
width: '50%',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataIndex: 'sum',
|
|
||||||
key: 'sum',
|
|
||||||
render: formatter,
|
|
||||||
sortDirections: ['descend', 'ascend'],
|
|
||||||
sorter: (a, b) => a.sum - b.sum,
|
|
||||||
title: 'Сумма',
|
|
||||||
width: '20%',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataIndex: 'totalFranchise',
|
|
||||||
key: 'totalFranchise',
|
|
||||||
render: formatter,
|
|
||||||
title: 'Франшиза',
|
|
||||||
width: '20%',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dataIndex: 'status',
|
|
||||||
key: 'status',
|
|
||||||
render: (_, record) => {
|
|
||||||
if (record.status === 'fetching')
|
|
||||||
return (
|
|
||||||
<Flex justifyContent="center">
|
|
||||||
<LoadingOutlined spin rev="" />
|
|
||||||
</Flex>
|
|
||||||
);
|
|
||||||
if (record.status === 'error')
|
|
||||||
return (
|
|
||||||
<Flex justifyContent="center">
|
|
||||||
<CloseOutlined rev="" />
|
|
||||||
</Flex>
|
|
||||||
);
|
|
||||||
|
|
||||||
return false;
|
|
||||||
},
|
|
||||||
title: undefined,
|
|
||||||
width: '5%',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
@ -1,12 +0,0 @@
|
|||||||
import type { Row } from '@/Components/Calculation/Form/ELT/types';
|
|
||||||
import { defaultRow } from '@/stores/tables/elt/default-values';
|
|
||||||
|
|
||||||
export function resetRow(row: Row): Row {
|
|
||||||
return {
|
|
||||||
...defaultRow,
|
|
||||||
id: row.id,
|
|
||||||
key: row.key,
|
|
||||||
metodCalc: row.metodCalc,
|
|
||||||
name: row.name,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
import type { RowSchema } from '@/config/schema/elt';
|
|
||||||
import type ELTStore from '@/stores/tables/elt';
|
|
||||||
import type PolicyStore from '@/stores/tables/elt/policy';
|
|
||||||
import type { z } from 'zod';
|
|
||||||
|
|
||||||
export type Row = z.infer<typeof RowSchema>;
|
|
||||||
export type StoreSelector = (eltStore: ELTStore) => PolicyStore;
|
|
||||||
@ -29,20 +29,17 @@ const Validation = observer(() => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const FinGAP = observer(() => {
|
const FinGAP = observer(() => {
|
||||||
const { $tables, $process } = useStore();
|
const { $tables } = useStore();
|
||||||
const { fingap } = $tables;
|
const { fingap } = $tables;
|
||||||
|
|
||||||
const dataSource = toJS(fingap.risks);
|
const dataSource = toJS(fingap.risks);
|
||||||
const selectedRowKeys = [...toJS(fingap.selectedKeys)];
|
const selectedRowKeys = [...toJS(fingap.selectedKeys)];
|
||||||
|
|
||||||
const disabled = $process.has('LoadKP') || $process.has('Calculate') || $process.has('CreateKP');
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Table
|
<Table
|
||||||
columns={columns}
|
columns={columns}
|
||||||
dataSource={dataSource}
|
dataSource={dataSource}
|
||||||
rowSelection={{
|
rowSelection={{
|
||||||
getCheckboxProps: () => ({ disabled }),
|
|
||||||
onChange: (_, selectedRows) => {
|
onChange: (_, selectedRows) => {
|
||||||
const selectedKeys = selectedRows.reduce((acc, row) => {
|
const selectedKeys = selectedRows.reduce((acc, row) => {
|
||||||
acc.push(row.key);
|
acc.push(row.key);
|
||||||
|
|||||||
@ -13,17 +13,10 @@ export function buildOptionComponent<T>(
|
|||||||
const [value, setValue] = useInsuranceValue(key, valueName);
|
const [value, setValue] = useInsuranceValue(key, valueName);
|
||||||
const { getOptions, getStatus } = useRow(key);
|
const { getOptions, getStatus } = useRow(key);
|
||||||
const options = getOptions(valueName);
|
const options = getOptions(valueName);
|
||||||
const status = getStatus(valueName);
|
const statuses = getStatus(valueName);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Component
|
<Component options={options} setValue={setValue} status={statuses} value={value} {...props} />
|
||||||
options={options}
|
|
||||||
onChange={setValue}
|
|
||||||
disabled={status === 'Disabled'}
|
|
||||||
loading={status === 'Loading'}
|
|
||||||
value={value}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -36,10 +29,8 @@ export function buildValueComponent<T>(
|
|||||||
return observer((props: T) => {
|
return observer((props: T) => {
|
||||||
const [value, setValue] = useInsuranceValue(key, valueName);
|
const [value, setValue] = useInsuranceValue(key, valueName);
|
||||||
const { getStatus } = useRow(key);
|
const { getStatus } = useRow(key);
|
||||||
const status = getStatus(valueName);
|
const statuses = getStatus(valueName);
|
||||||
|
|
||||||
return (
|
return <Component setValue={setValue} status={statuses} value={value} {...props} />;
|
||||||
<Component onChange={setValue} disabled={status === 'Disabled'} value={value} {...props} />
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,60 +1,27 @@
|
|||||||
/* eslint-disable react/forbid-component-props */
|
|
||||||
/* eslint-disable canonical/sort-keys */
|
/* eslint-disable canonical/sort-keys */
|
||||||
import { buildOptionComponent, buildValueComponent } from './builders';
|
import { buildOptionComponent, buildValueComponent } from './builders';
|
||||||
import type * as Insurance from './types';
|
import type * as Insurance from './types';
|
||||||
import { MAX_INSURANCE } from '@/constants/values';
|
import { MAX_INSURANCE } from '@/constants/values';
|
||||||
import { useStore } from '@/stores/hooks';
|
|
||||||
import type { ColumnsType } from 'antd/lib/table';
|
import type { ColumnsType } from 'antd/lib/table';
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import { parser } from 'tools/number';
|
import { parser } from 'tools/number';
|
||||||
import { InputNumber, Select } from 'ui/elements';
|
import { InputNumber, Select } from 'ui/elements';
|
||||||
import { CheckOutlined } from 'ui/elements/icons';
|
|
||||||
import { createFormatter } from 'ui/elements/InputNumber';
|
import { createFormatter } from 'ui/elements/InputNumber';
|
||||||
|
|
||||||
export const columns: ColumnsType<Insurance.RowValues> = [
|
export const columns: ColumnsType<Insurance.RowValues> = [
|
||||||
{
|
|
||||||
key: 'elt',
|
|
||||||
dataIndex: 'elt',
|
|
||||||
render: (_, record) => {
|
|
||||||
const Check = observer(() => {
|
|
||||||
const { $tables } = useStore();
|
|
||||||
if (
|
|
||||||
(record.key === 'osago' && $tables.elt.osago.getSelectedRow?.key) ||
|
|
||||||
(record.key === 'kasko' && $tables.elt.kasko.getSelectedRow?.key)
|
|
||||||
) {
|
|
||||||
return <CheckOutlined rev="" />;
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
});
|
|
||||||
|
|
||||||
return <Check />;
|
|
||||||
},
|
|
||||||
title: 'ЭЛТ',
|
|
||||||
width: '1%',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
key: 'policyType',
|
key: 'policyType',
|
||||||
dataIndex: 'policyType',
|
dataIndex: 'policyType',
|
||||||
title: 'Тип полиса',
|
title: 'Тип полиса',
|
||||||
width: '11%',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: 'insuranceCompany',
|
key: 'insuranceCompany',
|
||||||
dataIndex: 'insuranceCompany',
|
dataIndex: 'insuranceCompany',
|
||||||
title: 'Страховая компания',
|
title: 'Страховая компания',
|
||||||
|
width: 300,
|
||||||
render: (_, record) => {
|
render: (_, record) => {
|
||||||
const Component = buildOptionComponent(record.key, Select, 'insuranceCompany');
|
const Component = buildOptionComponent(record.key, Select, 'insuranceCompany');
|
||||||
|
|
||||||
return (
|
return <Component optionFilterProp="label" showSearch />;
|
||||||
<Component
|
|
||||||
optionFilterProp="label"
|
|
||||||
showSearch
|
|
||||||
style={{
|
|
||||||
width: '100%',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -64,21 +31,13 @@ export const columns: ColumnsType<Insurance.RowValues> = [
|
|||||||
render: (_, record) => {
|
render: (_, record) => {
|
||||||
const Component = buildOptionComponent(record.key, Select, 'insured');
|
const Component = buildOptionComponent(record.key, Select, 'insured');
|
||||||
|
|
||||||
return (
|
return <Component />;
|
||||||
<Component
|
|
||||||
style={{
|
|
||||||
width: '100%',
|
|
||||||
maxWidth: '100px',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
width: '100px',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: 'insCost',
|
key: 'insCost',
|
||||||
dataIndex: 'insCost',
|
dataIndex: 'insCost',
|
||||||
title: 'Сумма за 1-й период',
|
title: 'Стоимость за 1-й период',
|
||||||
render: (_, record) => {
|
render: (_, record) => {
|
||||||
const Component = buildValueComponent(record.key, InputNumber, 'insCost');
|
const Component = buildValueComponent(record.key, InputNumber, 'insCost');
|
||||||
|
|
||||||
@ -91,13 +50,9 @@ export const columns: ColumnsType<Insurance.RowValues> = [
|
|||||||
parser={parser}
|
parser={parser}
|
||||||
precision={2}
|
precision={2}
|
||||||
step={1000}
|
step={1000}
|
||||||
style={{
|
|
||||||
width: '150px',
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
width: '150px',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: 'insTerm',
|
key: 'insTerm',
|
||||||
@ -106,15 +61,7 @@ export const columns: ColumnsType<Insurance.RowValues> = [
|
|||||||
render: (_, record) => {
|
render: (_, record) => {
|
||||||
const Component = buildOptionComponent(record.key, Select, 'insTerm');
|
const Component = buildOptionComponent(record.key, Select, 'insTerm');
|
||||||
|
|
||||||
return (
|
return <Component />;
|
||||||
<Component
|
|
||||||
style={{
|
|
||||||
width: '150px',
|
|
||||||
maxWidth: '150px',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
width: '150px',
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
import type { KeysSchema, RowSchema } from '@/config/schema/insurance';
|
import type { KeysSchema, RowSchema } from '@/config/schema/insurance';
|
||||||
import type { Status } from '@/stores/calculation/statuses/types';
|
import type { BaseOption, Status } from 'ui/elements/types';
|
||||||
import type { BaseOption } from 'ui/elements/types';
|
|
||||||
import type { z } from 'zod';
|
import type { z } from 'zod';
|
||||||
|
|
||||||
export type Keys = z.infer<typeof KeysSchema>;
|
export type Keys = z.infer<typeof KeysSchema>;
|
||||||
|
|||||||
@ -1,14 +1,13 @@
|
|||||||
import type { FormTabRows } from '../../lib/render-rows';
|
import type { FormTabRows } from '../../lib/render-rows';
|
||||||
import { transformRowsForMobile } from '../lib/utils';
|
|
||||||
|
|
||||||
export const id = 'insurance';
|
export const id = 'insurance';
|
||||||
export const title = 'Страхование';
|
export const title = 'Страхование';
|
||||||
|
|
||||||
export const rows: FormTabRows = [
|
export const rows: FormTabRows = [
|
||||||
[['tbxLeaseObjectYear', 'selectLeaseObjectUseFor', 'selectLegalClientRegion']],
|
[['tbxLeaseObjectYear', 'selectLeaseObjectUseFor', 'selectLegalClientRegion']],
|
||||||
[['tbxMileage', 'tbxInsFranchise', 'selectLegalClientTown']],
|
[['selectEngineType', 'tbxInsFranchise', 'selectLegalClientTown']],
|
||||||
[['selectGPSBrand', 'cbxWithTrailer', 'selectInsNSIB']],
|
[['selectLeaseObjectCategory', 'tbxMileage']],
|
||||||
[['selectGPSModel', 'cbxInsDecentral', 'selectLeasingWithoutKasko']],
|
[['tbxLeaseObjectMotorPower', 'cbxWithTrailer', 'selectGPSBrand']],
|
||||||
|
[['tbxEngineVolume', 'cbxInsDecentral', 'selectGPSModel']],
|
||||||
|
[['selectLeasingWithoutKasko', 'selectInsNSIB']],
|
||||||
];
|
];
|
||||||
|
|
||||||
export const mobileRows = transformRowsForMobile(rows);
|
|
||||||
|
|||||||
@ -1,15 +1,15 @@
|
|||||||
import renderFormRows from '../../lib/render-rows';
|
import renderFormRows from '../../lib/render-rows';
|
||||||
import { id, mobileRows, rows, title } from './config';
|
import { id, rows, title } from './config';
|
||||||
import FinGAPTable from './FinGAPTable';
|
import FinGAPTable from './FinGAPTable';
|
||||||
import InsuranceTable from './InsuranceTable';
|
import InsuranceTable from './InsuranceTable';
|
||||||
import { Media } from '@/styles/media';
|
|
||||||
import { Flex } from 'ui/grid';
|
import { Flex } from 'ui/grid';
|
||||||
|
|
||||||
function Insurance() {
|
function Insurance() {
|
||||||
|
const renderedRows = renderFormRows(rows);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Flex flexDirection="column">
|
<Flex flexDirection="column">
|
||||||
<Media lessThan="laptop">{renderFormRows(mobileRows)}</Media>
|
{renderedRows}
|
||||||
<Media greaterThanOrEqual="laptop">{renderFormRows(rows)}</Media>
|
|
||||||
<InsuranceTable />
|
<InsuranceTable />
|
||||||
<FinGAPTable />
|
<FinGAPTable />
|
||||||
</Flex>
|
</Flex>
|
||||||
|
|||||||
@ -7,9 +7,9 @@ export const rows: FormTabRows = [
|
|||||||
[['selectProduct'], { gridTemplateColumns: '1fr' }],
|
[['selectProduct'], { gridTemplateColumns: '1fr' }],
|
||||||
[['tbxLeaseObjectPrice', 'tbxVATInLeaseObjectPrice', 'tbxLeaseObjectPriceWthtVAT']],
|
[['tbxLeaseObjectPrice', 'tbxVATInLeaseObjectPrice', 'tbxLeaseObjectPriceWthtVAT']],
|
||||||
[['selectSupplierCurrency', 'tbxSupplierDiscountRub', 'tbxSupplierDiscountPerc']],
|
[['selectSupplierCurrency', 'tbxSupplierDiscountRub', 'tbxSupplierDiscountPerc']],
|
||||||
[['tbxFirstPaymentPerc', 'tbxFirstPaymentRub']],
|
[['tbxFirstPaymentPerc', 'tbxFirstPaymentRub', 'cbxSupplierFinancing']],
|
||||||
[['tbxLeasingPeriod', 'tbxSaleBonus']],
|
[['tbxLeasingPeriod', 'tbxSaleBonus']],
|
||||||
[['selectSubsidy', 'tbxSubsidySum'], { gridTemplateColumns: ['1fr', '2fr 1fr'] }],
|
[['selectSubsidy', 'tbxSubsidySum'], { gridTemplateColumns: '2fr 1fr' }],
|
||||||
[['selectImportProgram', 'tbxImportProgramSum', 'tbxAddEquipmentPrice']],
|
[['selectImportProgram', 'tbxImportProgramSum', 'tbxAddEquipmentPrice']],
|
||||||
[['radioLastPaymentRule'], { gridTemplateColumns: '1fr' }],
|
[['radioLastPaymentRule'], { gridTemplateColumns: '1fr' }],
|
||||||
[['tbxLastPaymentPerc', 'tbxLastPaymentRub']],
|
[['tbxLastPaymentPerc', 'tbxLastPaymentRub']],
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
import type { FormTabRows } from '../../lib/render-rows';
|
import type { FormTabRows } from '../../lib/render-rows';
|
||||||
import { transformRowsForMobile } from '../lib/utils';
|
|
||||||
|
|
||||||
export const id = 'leasing-object';
|
export const id = 'leasing-object';
|
||||||
export const title = 'ПЛ';
|
export const title = 'ПЛ';
|
||||||
@ -17,5 +16,3 @@ export const rows: FormTabRows = [
|
|||||||
[['selectLeaseObjectCategory', 'tbxEngineVolume', 'tbxMileage']],
|
[['selectLeaseObjectCategory', 'tbxEngineVolume', 'tbxMileage']],
|
||||||
[['tbxMaxMass', 'tbxEngineHours', 'tbxVIN']],
|
[['tbxMaxMass', 'tbxEngineHours', 'tbxVIN']],
|
||||||
];
|
];
|
||||||
|
|
||||||
export const mobileRows = transformRowsForMobile(rows);
|
|
||||||
|
|||||||
@ -1,14 +1,8 @@
|
|||||||
import renderFormRows from '../../lib/render-rows';
|
import renderFormRows from '../../lib/render-rows';
|
||||||
import { id, mobileRows, rows, title } from './config';
|
import { id, rows, title } from './config';
|
||||||
import { Media } from '@/styles/media';
|
|
||||||
|
|
||||||
function LeasingObject() {
|
function LeasingObject() {
|
||||||
return (
|
return renderFormRows(rows);
|
||||||
<>
|
|
||||||
<Media lessThan="laptop">{renderFormRows(mobileRows)}</Media>
|
|
||||||
<Media greaterThanOrEqual="laptop">{renderFormRows(rows)}</Media>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { usePaymentSum, usePaymentValue } from './hooks';
|
import { usePaymentValue } from './hooks';
|
||||||
import { useRowStatus } from '@/stores/tables/payments/hooks';
|
import { useRowStatus } from '@/stores/tables/payments/hooks';
|
||||||
import { observer } from 'mobx-react-lite';
|
import { observer } from 'mobx-react-lite';
|
||||||
import type { ComponentType } from 'react';
|
import type { ComponentType } from 'react';
|
||||||
@ -8,19 +8,6 @@ export function buildValueComponent<T>(index: number, Component: ComponentType<T
|
|||||||
const [value, setValue] = usePaymentValue(index);
|
const [value, setValue] = usePaymentValue(index);
|
||||||
const status = useRowStatus(index);
|
const status = useRowStatus(index);
|
||||||
|
|
||||||
return (
|
return <Component setValue={setValue} status={status} value={value} {...props} />;
|
||||||
<Component onChange={setValue} disabled={status === 'Disabled'} value={value} {...props} />
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export function buildSumComponent<T>(index: number, Component: ComponentType<T>) {
|
|
||||||
return observer((props: T) => {
|
|
||||||
const [value, setValue] = usePaymentSum(index);
|
|
||||||
const status = useRowStatus(index);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Component onChange={setValue} disabled={status === 'Disabled'} value={value} {...props} />
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,23 +1,14 @@
|
|||||||
/* eslint-disable react/forbid-component-props */
|
|
||||||
/* eslint-disable canonical/sort-keys */
|
/* eslint-disable canonical/sort-keys */
|
||||||
import { buildSumComponent, buildValueComponent } from './builders';
|
import { buildValueComponent } from './builders';
|
||||||
import type { ColumnsType } from 'antd/lib/table';
|
import type { ColumnsType } from 'antd/lib/table';
|
||||||
import { parser } from 'tools/number';
|
|
||||||
import { InputNumber } from 'ui/elements';
|
import { InputNumber } from 'ui/elements';
|
||||||
import { createFormatter } from 'ui/elements/InputNumber';
|
|
||||||
|
|
||||||
type Payment = {
|
type Payment = {
|
||||||
key: number;
|
key: number;
|
||||||
num: number;
|
num: number;
|
||||||
paymentRelation: number;
|
paymentRelation: number;
|
||||||
paymentSum: number;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const formatter = createFormatter({
|
|
||||||
minimumFractionDigits: 2,
|
|
||||||
maximumFractionDigits: 2,
|
|
||||||
});
|
|
||||||
|
|
||||||
export const columns: ColumnsType<Payment> = [
|
export const columns: ColumnsType<Payment> = [
|
||||||
{
|
{
|
||||||
key: 'num',
|
key: 'num',
|
||||||
@ -33,38 +24,7 @@ export const columns: ColumnsType<Payment> = [
|
|||||||
render: (_value, payment) => {
|
render: (_value, payment) => {
|
||||||
const Component = buildValueComponent(payment.num, InputNumber);
|
const Component = buildValueComponent(payment.num, InputNumber);
|
||||||
|
|
||||||
return (
|
return <Component max={100} min={0} precision={payment.num === 0 ? 4 : 2} step={1} />;
|
||||||
<Component
|
|
||||||
max={100}
|
|
||||||
min={0}
|
|
||||||
precision={payment.num === 0 ? 4 : 2}
|
|
||||||
step={1}
|
|
||||||
style={{
|
|
||||||
width: '100%',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: 'paymentSum',
|
|
||||||
dataIndex: 'paymentSum',
|
|
||||||
title: 'Сумма',
|
|
||||||
render: (_value, payment) => {
|
|
||||||
const Component = buildSumComponent(payment.num, InputNumber);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Component
|
|
||||||
min={0}
|
|
||||||
precision={2}
|
|
||||||
step={1000}
|
|
||||||
formatter={formatter}
|
|
||||||
parser={parser}
|
|
||||||
style={{
|
|
||||||
width: '100%',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { useRowSum, useRowValue } from '@/stores/tables/payments/hooks';
|
import { useRowValue } from '@/stores/tables/payments/hooks';
|
||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import { useDebouncedCallback } from 'use-debounce';
|
import { useDebouncedCallback } from 'use-debounce';
|
||||||
|
|
||||||
@ -20,22 +20,3 @@ export function usePaymentValue(index) {
|
|||||||
|
|
||||||
return [value, setValue];
|
return [value, setValue];
|
||||||
}
|
}
|
||||||
|
|
||||||
export function usePaymentSum(index) {
|
|
||||||
const [storeValue, setStoreValue] = useRowSum(index);
|
|
||||||
const [value, setValue] = useState(storeValue);
|
|
||||||
|
|
||||||
const debouncedSetStoreValue = useDebouncedCallback(setStoreValue, 350, { maxWait: 1000 });
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (storeValue !== value) {
|
|
||||||
debouncedSetStoreValue(value);
|
|
||||||
}
|
|
||||||
}, [value]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
setValue(storeValue);
|
|
||||||
}, [storeValue]);
|
|
||||||
|
|
||||||
return [value, setValue];
|
|
||||||
}
|
|
||||||
|
|||||||
@ -3,11 +3,9 @@ import { useStore } from '@/stores/hooks';
|
|||||||
import { min } from '@/styles/mq';
|
import { min } from '@/styles/mq';
|
||||||
import { computed } from 'mobx';
|
import { computed } from 'mobx';
|
||||||
import { observer } from 'mobx-react-lite';
|
import { observer } from 'mobx-react-lite';
|
||||||
import { createContext, useContext, useMemo, useState } from 'react';
|
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import { Alert, Segmented, Table } from 'ui/elements';
|
import { Alert, Table } from 'ui/elements';
|
||||||
import { Box, Flex } from 'ui/grid';
|
import { Box, Flex } from 'ui/grid';
|
||||||
import { useDebouncedCallback } from 'use-debounce';
|
|
||||||
|
|
||||||
const Grid = styled(Flex)`
|
const Grid = styled(Flex)`
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -49,8 +47,6 @@ const Validation = observer(() => {
|
|||||||
return null;
|
return null;
|
||||||
});
|
});
|
||||||
|
|
||||||
export const ModeContext = createContext('paymentRelation');
|
|
||||||
|
|
||||||
const SPLIT_NUMBER = 12;
|
const SPLIT_NUMBER = 12;
|
||||||
|
|
||||||
function TablePart({ num }) {
|
function TablePart({ num }) {
|
||||||
@ -59,25 +55,16 @@ function TablePart({ num }) {
|
|||||||
|
|
||||||
const values = payments.values.slice(num * SPLIT_NUMBER, num * SPLIT_NUMBER + SPLIT_NUMBER);
|
const values = payments.values.slice(num * SPLIT_NUMBER, num * SPLIT_NUMBER + SPLIT_NUMBER);
|
||||||
|
|
||||||
const dataSource = values.map((_, index) => ({
|
const dataSource = values.map((value, index) => ({
|
||||||
key: index + num * SPLIT_NUMBER,
|
key: index + num * SPLIT_NUMBER,
|
||||||
num: index + num * SPLIT_NUMBER,
|
num: index + num * SPLIT_NUMBER,
|
||||||
|
paymentRelation: value,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const mode = useContext(ModeContext);
|
return (
|
||||||
|
<TableWrapper>
|
||||||
return useMemo(
|
<Table size="small" columns={columns} dataSource={dataSource} pagination={false} />
|
||||||
() => (
|
</TableWrapper>
|
||||||
<TableWrapper>
|
|
||||||
<Table
|
|
||||||
size="small"
|
|
||||||
columns={columns.filter((x) => ['num', mode].includes(x.key))}
|
|
||||||
dataSource={dataSource}
|
|
||||||
pagination={false}
|
|
||||||
/>
|
|
||||||
</TableWrapper>
|
|
||||||
),
|
|
||||||
[dataSource, mode]
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -97,36 +84,11 @@ const TablesGroup = observer(() => {
|
|||||||
return <TablesGroupGrid>{tables}</TablesGroupGrid>;
|
return <TablesGroupGrid>{tables}</TablesGroupGrid>;
|
||||||
});
|
});
|
||||||
|
|
||||||
function Mode({ setMode }) {
|
|
||||||
const { $process } = useStore();
|
|
||||||
|
|
||||||
if (!$process.has('Unlimited')) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Segmented
|
|
||||||
block
|
|
||||||
options={[
|
|
||||||
{ label: 'Процент', value: 'paymentRelation' },
|
|
||||||
{ label: 'Сумма', value: 'paymentSum' },
|
|
||||||
]}
|
|
||||||
onChange={(value) => setMode(value)}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function TablePayments() {
|
export default function TablePayments() {
|
||||||
const [mode, setMode] = useState('paymentRelation');
|
|
||||||
const debouncedSetMode = useDebouncedCallback(setMode, 300);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Grid>
|
<Grid>
|
||||||
<ModeContext.Provider value={mode}>
|
<Validation />
|
||||||
<Validation />
|
<TablesGroup />
|
||||||
<Mode setMode={debouncedSetMode} />
|
|
||||||
<TablesGroup />
|
|
||||||
</ModeContext.Provider>
|
|
||||||
</Grid>
|
</Grid>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
import type { FormTabRows } from '../../lib/render-rows';
|
import type { FormTabRows } from '../../lib/render-rows';
|
||||||
import { transformRowsForMobile } from '../lib/utils';
|
|
||||||
|
|
||||||
export const id = 'supplier-agent';
|
export const id = 'supplier-agent';
|
||||||
export const title = 'Поставщик/агент';
|
export const title = 'Поставщик/агент';
|
||||||
@ -21,5 +20,3 @@ export const rows: FormTabRows = [
|
|||||||
[['selectCalcBrokerRewardCondition', 'selectFinDepartmentRewardCondtion'], defaultRowStyle],
|
[['selectCalcBrokerRewardCondition', 'selectFinDepartmentRewardCondtion'], defaultRowStyle],
|
||||||
[['tbxCalcBrokerRewardSum', 'tbxFinDepartmentRewardSumm'], defaultRowStyle],
|
[['tbxCalcBrokerRewardSum', 'tbxFinDepartmentRewardSumm'], defaultRowStyle],
|
||||||
];
|
];
|
||||||
|
|
||||||
export const mobileRows = transformRowsForMobile(rows);
|
|
||||||
|
|||||||
@ -1,14 +1,8 @@
|
|||||||
import renderFormRows from '../../lib/render-rows';
|
import renderFormRows from '../../lib/render-rows';
|
||||||
import { id, mobileRows, rows, title } from './config';
|
import { id, rows, title } from './config';
|
||||||
import { Media } from '@/styles/media';
|
|
||||||
|
|
||||||
function Leasing() {
|
function Leasing() {
|
||||||
return (
|
return renderFormRows(rows);
|
||||||
<>
|
|
||||||
<Media lessThan="laptop">{renderFormRows(mobileRows)}</Media>
|
|
||||||
<Media greaterThanOrEqual="laptop">{renderFormRows(rows)}</Media>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|||||||
@ -9,6 +9,4 @@ export const rows: FormTabRows = [
|
|||||||
[['tbxMinPriceChange', 'tbxMaxPriceChange']],
|
[['tbxMinPriceChange', 'tbxMaxPriceChange']],
|
||||||
[['tbxImporterRewardPerc', 'tbxImporterRewardRub']],
|
[['tbxImporterRewardPerc', 'tbxImporterRewardRub']],
|
||||||
[['tbxBonusCoefficient', 'tbxComissionRub', 'tbxComissionPerc']],
|
[['tbxBonusCoefficient', 'tbxComissionRub', 'tbxComissionPerc']],
|
||||||
[['cbxSupplierFinancing', 'cbxPartialVAT', 'cbxFloatingRate']],
|
|
||||||
[['cbxQuotePriceWithFullVAT']],
|
|
||||||
];
|
];
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
import AddProduct from './AddProduct';
|
import AddProduct from './AddProduct';
|
||||||
import CreateKP from './CreateKP';
|
import CreateKP from './CreateKP';
|
||||||
import ELT from './ELT';
|
|
||||||
import Insurance from './Insurance';
|
import Insurance from './Insurance';
|
||||||
import Leasing from './Leasing';
|
import Leasing from './Leasing';
|
||||||
import LeasingObject from './LeasingObject';
|
import LeasingObject from './LeasingObject';
|
||||||
@ -8,9 +7,7 @@ import Payments from './Payments';
|
|||||||
import SupplierAgent from './SupplierAgent';
|
import SupplierAgent from './SupplierAgent';
|
||||||
import Unlimited from './Unlimited';
|
import Unlimited from './Unlimited';
|
||||||
import Background from '@/Components/Layout/Background';
|
import Background from '@/Components/Layout/Background';
|
||||||
import { useStore } from '@/stores/hooks';
|
|
||||||
import { min } from '@/styles/mq';
|
import { min } from '@/styles/mq';
|
||||||
import { memo } from 'react';
|
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import { Tabs } from 'ui/elements';
|
import { Tabs } from 'ui/elements';
|
||||||
|
|
||||||
@ -20,7 +17,6 @@ const formTabs = [
|
|||||||
LeasingObject,
|
LeasingObject,
|
||||||
SupplierAgent,
|
SupplierAgent,
|
||||||
Insurance,
|
Insurance,
|
||||||
ELT,
|
|
||||||
AddProduct,
|
AddProduct,
|
||||||
CreateKP,
|
CreateKP,
|
||||||
Unlimited,
|
Unlimited,
|
||||||
@ -46,23 +42,22 @@ const ComponentWrapper = styled.div`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const Form = memo(() => {
|
function Form({ prune }) {
|
||||||
const { $process } = useStore();
|
|
||||||
|
|
||||||
const filteredTabs =
|
|
||||||
$process.has('Unlimited') === false ? formTabs.filter((x) => x.id !== 'unlimited') : formTabs;
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Wrapper>
|
<Wrapper>
|
||||||
<Tabs type="card" tabBarGutter="5px">
|
<Tabs type="card" tabBarGutter="5px">
|
||||||
{filteredTabs.map(({ Component, id, title }) => (
|
{formTabs
|
||||||
<Tabs.TabPane tab={title} key={id}>
|
.filter((tab) => !prune?.includes(tab.id))
|
||||||
<ComponentWrapper>
|
.map(({ id, title, Component }) => (
|
||||||
<Component />
|
<Tabs.TabPane tab={title} key={id}>
|
||||||
</ComponentWrapper>
|
<ComponentWrapper>
|
||||||
</Tabs.TabPane>
|
<Component />
|
||||||
))}
|
</ComponentWrapper>
|
||||||
|
</Tabs.TabPane>
|
||||||
|
))}
|
||||||
</Tabs>
|
</Tabs>
|
||||||
</Wrapper>
|
</Wrapper>
|
||||||
);
|
);
|
||||||
});
|
}
|
||||||
|
|
||||||
|
export default Form;
|
||||||
|
|||||||
@ -1,32 +0,0 @@
|
|||||||
/**
|
|
||||||
*
|
|
||||||
* @param {import('../../lib/render-rows').FormTabRows} rows
|
|
||||||
* @returns {import('../../lib/render-rows').FormTabRows}
|
|
||||||
*/
|
|
||||||
export function transformRowsForMobile(rows) {
|
|
||||||
const mobileRows = [];
|
|
||||||
let columnGroups = {};
|
|
||||||
|
|
||||||
rows.forEach((row) => {
|
|
||||||
if (Array.isArray(row)) {
|
|
||||||
row[0].forEach((item, index) => {
|
|
||||||
if (!columnGroups[index]) {
|
|
||||||
columnGroups[index] = [];
|
|
||||||
}
|
|
||||||
columnGroups[index].push(item);
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
Object.values(columnGroups).forEach((group) => {
|
|
||||||
mobileRows.push([group, { gridTemplateColumns: '1fr' }]);
|
|
||||||
});
|
|
||||||
columnGroups = {};
|
|
||||||
mobileRows.push(row);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Object.values(columnGroups).forEach((group) => {
|
|
||||||
mobileRows.push([group, { gridTemplateColumns: '1fr' }]);
|
|
||||||
});
|
|
||||||
|
|
||||||
return mobileRows;
|
|
||||||
}
|
|
||||||
@ -1,84 +0,0 @@
|
|||||||
/* eslint-disable canonical/sort-keys */
|
|
||||||
import type { ResultPayment } from '@/stores/results/types';
|
|
||||||
import type { ColumnsType } from 'antd/lib/table';
|
|
||||||
|
|
||||||
export const columns: ColumnsType<ResultPayment> = [
|
|
||||||
{
|
|
||||||
key: 'num',
|
|
||||||
dataIndex: 'num',
|
|
||||||
title: '#',
|
|
||||||
width: '10%',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: 'paymentSum',
|
|
||||||
dataIndex: 'paymentSum',
|
|
||||||
title: 'Сумма платежа',
|
|
||||||
render: Intl.NumberFormat('ru', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'RUB',
|
|
||||||
}).format,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: 'ndsCompensation',
|
|
||||||
dataIndex: 'ndsCompensation',
|
|
||||||
title: 'НДС к возмещению',
|
|
||||||
render: Intl.NumberFormat('ru', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'RUB',
|
|
||||||
}).format,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: 'redemptionAmount',
|
|
||||||
dataIndex: 'redemptionAmount',
|
|
||||||
title: 'Сумма досрочного выкупа',
|
|
||||||
render: Intl.NumberFormat('ru', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'RUB',
|
|
||||||
}).format,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: '_piColumn',
|
|
||||||
dataIndex: '_piColumn',
|
|
||||||
title: 'PI Column',
|
|
||||||
render: Intl.NumberFormat('ru', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'RUB',
|
|
||||||
}).format,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: '_cashflowMsfoWithCfColumn',
|
|
||||||
dataIndex: '_cashflowMsfoWithCfColumn',
|
|
||||||
title: 'CashflowMSFOWithCF Column',
|
|
||||||
render: Intl.NumberFormat('ru', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'RUB',
|
|
||||||
}).format,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: '_creditPaymentColumn',
|
|
||||||
dataIndex: '_creditPaymentColumn',
|
|
||||||
title: 'CreditPayment Column',
|
|
||||||
render: Intl.NumberFormat('ru', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'RUB',
|
|
||||||
}).format,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: '_cashflowMsfoColumn',
|
|
||||||
dataIndex: '_cashflowMsfoColumn',
|
|
||||||
title: 'CashflowMSFO Column',
|
|
||||||
render: Intl.NumberFormat('ru', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'RUB',
|
|
||||||
}).format,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: '_interestColumn',
|
|
||||||
dataIndex: '_interestColumn',
|
|
||||||
title: 'Interest Column',
|
|
||||||
render: Intl.NumberFormat('ru', {
|
|
||||||
style: 'currency',
|
|
||||||
currency: 'RUB',
|
|
||||||
}).format,
|
|
||||||
},
|
|
||||||
];
|
|
||||||
@ -1,41 +0,0 @@
|
|||||||
/* eslint-disable no-negated-condition */
|
|
||||||
import { columns } from './config';
|
|
||||||
import { MAX_LEASING_PERIOD } from '@/constants/values';
|
|
||||||
import { useStore } from '@/stores/hooks';
|
|
||||||
import { toJS } from 'mobx';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import { Table } from 'ui/elements';
|
|
||||||
|
|
||||||
const PaymentsTable = observer(() => {
|
|
||||||
const { $process, $results } = useStore();
|
|
||||||
|
|
||||||
const unlimited = $process.has('Unlimited');
|
|
||||||
const dataSource = toJS($results.payments);
|
|
||||||
|
|
||||||
const dataColumns = !unlimited ? columns.filter((x) => !x.key.includes('_')) : columns;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Table
|
|
||||||
columns={dataColumns}
|
|
||||||
dataSource={dataSource}
|
|
||||||
size="small"
|
|
||||||
pagination={{
|
|
||||||
defaultPageSize: MAX_LEASING_PERIOD,
|
|
||||||
hideOnSinglePage: true,
|
|
||||||
responsive: true,
|
|
||||||
// showLessItems: true,
|
|
||||||
showSizeChanger: false,
|
|
||||||
}}
|
|
||||||
scroll={{
|
|
||||||
x: dataColumns.length > 5 ? 1000 : undefined,
|
|
||||||
y: dataSource.length > 16 ? 630 : undefined,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
export default {
|
|
||||||
Component: PaymentsTable,
|
|
||||||
id: 'payments-table',
|
|
||||||
title: 'Таблица платежей',
|
|
||||||
};
|
|
||||||
@ -2,61 +2,22 @@ import type { FormTabRows } from '../lib/render-rows';
|
|||||||
|
|
||||||
const defaultRowStyle = { gridTemplateColumns: '1fr' };
|
const defaultRowStyle = { gridTemplateColumns: '1fr' };
|
||||||
|
|
||||||
export const mainRows: FormTabRows = [
|
export const rows: FormTabRows = [
|
||||||
{ title: 'Выбор Интереса/ЛС' },
|
{ title: 'Выбор Интереса/ЛС' },
|
||||||
[['selectLead'], defaultRowStyle],
|
[['selectLead'], defaultRowStyle],
|
||||||
[['selectOpportunity'], defaultRowStyle],
|
[['selectOpportunity'], defaultRowStyle],
|
||||||
[['cbxRecalcWithRevision'], defaultRowStyle],
|
[['cbxRecalcWithRevision'], defaultRowStyle],
|
||||||
[['selectQuote'], defaultRowStyle],
|
[['selectQuote'], defaultRowStyle],
|
||||||
[
|
[
|
||||||
['btnCalculate'],
|
['btnCalculate', 'btnCreateKPMini'],
|
||||||
{
|
{
|
||||||
gridTemplateColumns: '1fr',
|
gridTemplateColumns: ['1fr 0.15fr'],
|
||||||
marginBottom: ['5px'],
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
[
|
|
||||||
['btnCreateKP', 'linkDownloadKp'],
|
|
||||||
{
|
|
||||||
gap: ['10px'],
|
|
||||||
gridTemplateColumns: ['1fr 1fr'],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
];
|
|
||||||
|
|
||||||
export const unlimitedMainRows: FormTabRows = [
|
|
||||||
{ title: 'Выбор Интереса/ЛС' },
|
|
||||||
[['selectUser'], defaultRowStyle],
|
|
||||||
[['selectLead'], defaultRowStyle],
|
|
||||||
[['selectOpportunity'], defaultRowStyle],
|
|
||||||
[['cbxRecalcWithRevision'], defaultRowStyle],
|
|
||||||
[['selectQuote'], defaultRowStyle],
|
|
||||||
[
|
|
||||||
['btnCalculate'],
|
|
||||||
{
|
|
||||||
gridTemplateColumns: '1fr',
|
|
||||||
marginBottom: ['5px'],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
[
|
|
||||||
['btnCreateKP', 'linkDownloadKp'],
|
|
||||||
{
|
|
||||||
gap: ['10px'],
|
|
||||||
gridTemplateColumns: ['1fr 1fr'],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
];
|
|
||||||
|
|
||||||
export const paramsRows: FormTabRows = [
|
|
||||||
{ title: 'Параметры расчета' },
|
{ title: 'Параметры расчета' },
|
||||||
|
[['labelIrrInfo'], defaultRowStyle],
|
||||||
[['radioCalcType'], defaultRowStyle],
|
[['radioCalcType'], defaultRowStyle],
|
||||||
[['tbxIRR_Perc'], defaultRowStyle],
|
[['tbxIRR_Perc'], defaultRowStyle],
|
||||||
[['tbxTotalPayments'], defaultRowStyle],
|
[['tbxTotalPayments'], defaultRowStyle],
|
||||||
];
|
];
|
||||||
|
|
||||||
export const unlimitedParamsRows: FormTabRows = [
|
|
||||||
{ title: 'Параметры расчета' },
|
|
||||||
[['radioCalcType'], defaultRowStyle],
|
|
||||||
[['tbxIRR_Perc', 'tbxPi'], { gridTemplateColumns: '1fr 1fr' }],
|
|
||||||
[['tbxTotalPayments'], defaultRowStyle],
|
|
||||||
];
|
|
||||||
|
|||||||
@ -1,9 +1,7 @@
|
|||||||
import renderFormRows from '../lib/render-rows';
|
import renderFormRows from '../lib/render-rows';
|
||||||
import * as config from './config';
|
import { rows } from './config';
|
||||||
import Background from '@/Components/Layout/Background';
|
import Background from '@/Components/Layout/Background';
|
||||||
import { useStore } from '@/stores/hooks';
|
|
||||||
import { min } from '@/styles/mq';
|
import { min } from '@/styles/mq';
|
||||||
import { memo } from 'react';
|
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
|
|
||||||
const Wrapper = styled(Background)`
|
const Wrapper = styled(Background)`
|
||||||
@ -18,20 +16,6 @@ const Wrapper = styled(Background)`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const Settings = memo(() => {
|
export default function Settings() {
|
||||||
const { $process } = useStore();
|
return <Wrapper>{renderFormRows(rows)}</Wrapper>;
|
||||||
|
}
|
||||||
const mainRows = $process.has('Unlimited')
|
|
||||||
? renderFormRows(config.unlimitedMainRows)
|
|
||||||
: renderFormRows(config.mainRows);
|
|
||||||
const paramsRows = $process.has('Unlimited')
|
|
||||||
? renderFormRows(config.unlimitedParamsRows)
|
|
||||||
: renderFormRows(config.paramsRows);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Wrapper>
|
|
||||||
{mainRows}
|
|
||||||
{paramsRows}
|
|
||||||
</Wrapper>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|||||||
@ -1,19 +0,0 @@
|
|||||||
import Validation from '../Output/Validation';
|
|
||||||
import Background from '@/Components/Layout/Background';
|
|
||||||
import { min } from '@/styles/mq';
|
|
||||||
import { memo } from 'react';
|
|
||||||
import styled from 'styled-components';
|
|
||||||
|
|
||||||
const Wrapper = styled(Background)`
|
|
||||||
padding: 4px 10px;
|
|
||||||
|
|
||||||
${min('laptop')} {
|
|
||||||
padding: 4px 18px;
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
export const Component = memo(() => (
|
|
||||||
<Wrapper>
|
|
||||||
<Validation.Component />
|
|
||||||
</Wrapper>
|
|
||||||
));
|
|
||||||
@ -1,31 +0,0 @@
|
|||||||
import { useStore } from '@/stores/hooks';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import styled from 'styled-components';
|
|
||||||
import { LoadingOutlined } from 'ui/elements/icons';
|
|
||||||
|
|
||||||
const TextAddon = styled.span`
|
|
||||||
font-size: 14px;
|
|
||||||
`;
|
|
||||||
|
|
||||||
const formatter = Intl.NumberFormat('ru', {
|
|
||||||
minimumFractionDigits: 2,
|
|
||||||
}).format;
|
|
||||||
|
|
||||||
export const IRRAddon = observer(() => {
|
|
||||||
const { $calculation, $process } = useStore();
|
|
||||||
|
|
||||||
if ($process.has('Tarif')) {
|
|
||||||
return (
|
|
||||||
<TextAddon>
|
|
||||||
<LoadingOutlined rev="" />
|
|
||||||
{' Подбирается тариф...'}
|
|
||||||
</TextAddon>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const tarif = $calculation.element('selectTarif').getValue();
|
|
||||||
if (!tarif) return <TextAddon>Тариф не найден</TextAddon>;
|
|
||||||
|
|
||||||
const { min, max } = $calculation.$values.getValue('irrInfo');
|
|
||||||
return <TextAddon>{`${formatter(min)}% - ${formatter(max)}%`}</TextAddon>;
|
|
||||||
});
|
|
||||||
@ -1,53 +0,0 @@
|
|||||||
/* eslint-disable react/forbid-component-props */
|
|
||||||
import titles from '../config/elements-titles';
|
|
||||||
import { useStore } from '@/stores/hooks';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import { pick } from 'radash';
|
|
||||||
import styled from 'styled-components';
|
|
||||||
import { Tag } from 'ui/elements';
|
|
||||||
|
|
||||||
const Container = styled.div`
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
gap: 5px;
|
|
||||||
`;
|
|
||||||
|
|
||||||
const TagWrapper = styled.div<{ disabled: boolean }>`
|
|
||||||
> span {
|
|
||||||
pointer-events: ${(props) => (props.disabled ? 'none' : 'auto')};
|
|
||||||
opacity: ${(props) => (props.disabled ? '50%' : '')};
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
const tagsData = pick(titles, ['cbxPartialVAT', 'cbxFloatingRate']);
|
|
||||||
|
|
||||||
const { CheckableTag } = Tag;
|
|
||||||
|
|
||||||
export const ProductAddon = observer(() => {
|
|
||||||
const { $calculation } = useStore();
|
|
||||||
|
|
||||||
function handleChange(elementName: keyof typeof tagsData, checked: boolean) {
|
|
||||||
$calculation.element(elementName).setValue(checked);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Container>
|
|
||||||
{(Object.keys(tagsData) as Array<keyof typeof tagsData>).map((elementName) => {
|
|
||||||
const visible = $calculation.$status.getStatus(elementName);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<TagWrapper key={elementName} disabled={visible === 'Disabled'}>
|
|
||||||
<CheckableTag
|
|
||||||
checked={$calculation.element(elementName).getValue()}
|
|
||||||
onChange={(checked) => handleChange(elementName, checked)}
|
|
||||||
key={elementName}
|
|
||||||
style={{ marginInlineEnd: 0 }}
|
|
||||||
>
|
|
||||||
{tagsData[elementName]}
|
|
||||||
</CheckableTag>
|
|
||||||
</TagWrapper>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</Container>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
@ -3,14 +3,13 @@ import { useProcessContext } from '@/process/hooks/common';
|
|||||||
import { useStatus } from '@/stores/calculation/statuses/hooks';
|
import { useStatus } from '@/stores/calculation/statuses/hooks';
|
||||||
import { observer } from 'mobx-react-lite';
|
import { observer } from 'mobx-react-lite';
|
||||||
import type { ComponentType } from 'react';
|
import type { ComponentType } from 'react';
|
||||||
import { useThrottledCallback } from 'use-debounce';
|
|
||||||
|
|
||||||
type BuilderProps = {
|
type BuilderProps = {
|
||||||
elementName: Elements;
|
elementName: Elements;
|
||||||
valueName: string;
|
valueName: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export function buildAction<T>(
|
export default function buildAction<T>(
|
||||||
Component: ComponentType<T>,
|
Component: ComponentType<T>,
|
||||||
{ elementName, valueName: processName }: BuilderProps
|
{ elementName, valueName: processName }: BuilderProps
|
||||||
) {
|
) {
|
||||||
@ -18,22 +17,12 @@ export function buildAction<T>(
|
|||||||
const status = useStatus(elementName);
|
const status = useStatus(elementName);
|
||||||
|
|
||||||
const context = useProcessContext();
|
const context = useProcessContext();
|
||||||
const throttledAction = useThrottledCallback(
|
|
||||||
() => {
|
|
||||||
import(`process/${processName}/action`).then((module) => module.action(context));
|
|
||||||
},
|
|
||||||
1200,
|
|
||||||
{
|
|
||||||
trailing: false,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Component
|
<Component
|
||||||
onClick={throttledAction}
|
action={() =>
|
||||||
|
import(`process/${processName}/action`).then((module) => module.action(context))}
|
||||||
status={status}
|
status={status}
|
||||||
disabled={status === 'Disabled'}
|
|
||||||
loading={status === 'Loading'}
|
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -1,38 +0,0 @@
|
|||||||
import type { Elements } from '../config/map/values';
|
|
||||||
import { useStoreValue } from './hooks';
|
|
||||||
import { useStatus } from '@/stores/calculation/statuses/hooks';
|
|
||||||
import { useValidation } from '@/stores/calculation/validation/hooks';
|
|
||||||
import type { Values } from '@/stores/calculation/values/types';
|
|
||||||
import type { CheckboxChangeEvent } from 'antd/lib/checkbox';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import type { ComponentType } from 'react';
|
|
||||||
import { Form } from 'ui/elements';
|
|
||||||
|
|
||||||
type BuilderProps = {
|
|
||||||
elementName: Elements;
|
|
||||||
valueName: Values;
|
|
||||||
};
|
|
||||||
|
|
||||||
export function buildCheck<T>(
|
|
||||||
Component: ComponentType<T>,
|
|
||||||
{ elementName, valueName }: BuilderProps
|
|
||||||
) {
|
|
||||||
return observer((props: T) => {
|
|
||||||
const [value, setValue] = useStoreValue(valueName);
|
|
||||||
const status = useStatus(elementName);
|
|
||||||
const { validateStatus, help } = useValidation(elementName);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Form.Item help={help} validateStatus={validateStatus}>
|
|
||||||
<Component
|
|
||||||
onChange={(event: CheckboxChangeEvent) => {
|
|
||||||
setValue(event.target.checked);
|
|
||||||
}}
|
|
||||||
disabled={status === 'Disabled'}
|
|
||||||
checked={value}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
</Form.Item>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@ -1,30 +0,0 @@
|
|||||||
import type { Elements } from '../config/map/values';
|
|
||||||
import { useStoreValue } from './hooks';
|
|
||||||
import { useStatus } from '@/stores/calculation/statuses/hooks';
|
|
||||||
import type { Values } from '@/stores/calculation/values/types';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import type { ComponentType } from 'react';
|
|
||||||
|
|
||||||
export type BuilderProps = {
|
|
||||||
elementName: Elements;
|
|
||||||
valueName: Values;
|
|
||||||
};
|
|
||||||
|
|
||||||
export function buildLink<T>(
|
|
||||||
Component: ComponentType<T>,
|
|
||||||
{ elementName, valueName }: BuilderProps
|
|
||||||
) {
|
|
||||||
return observer((props: T) => {
|
|
||||||
const [value] = useStoreValue(valueName);
|
|
||||||
const status = useStatus(elementName);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Component
|
|
||||||
href={status === 'Disabled' ? undefined : value || undefined}
|
|
||||||
disabled={!value || status === 'Disabled'}
|
|
||||||
loading={status === 'Loading'}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@ -6,14 +6,13 @@ import { useValidation } from '@/stores/calculation/validation/hooks';
|
|||||||
import type { Values } from '@/stores/calculation/values/types';
|
import type { Values } from '@/stores/calculation/values/types';
|
||||||
import { observer } from 'mobx-react-lite';
|
import { observer } from 'mobx-react-lite';
|
||||||
import type { ComponentType } from 'react';
|
import type { ComponentType } from 'react';
|
||||||
import { Form } from 'ui/elements';
|
|
||||||
|
|
||||||
type BuilderProps = {
|
type BuilderProps = {
|
||||||
elementName: Elements;
|
elementName: Elements;
|
||||||
valueName: Values;
|
valueName: Values;
|
||||||
};
|
};
|
||||||
|
|
||||||
export function buildOptions<T>(
|
export default function buildOptions<T>(
|
||||||
Component: ComponentType<T>,
|
Component: ComponentType<T>,
|
||||||
{ elementName, valueName }: BuilderProps
|
{ elementName, valueName }: BuilderProps
|
||||||
) {
|
) {
|
||||||
@ -24,16 +23,15 @@ export function buildOptions<T>(
|
|||||||
const options = useOptions(elementName);
|
const options = useOptions(elementName);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Form.Item help={help} validateStatus={validateStatus}>
|
<Component
|
||||||
<Component
|
help={help}
|
||||||
disabled={status === 'Disabled'}
|
validateStatus={validateStatus}
|
||||||
loading={status === 'Loading'}
|
options={options}
|
||||||
options={options}
|
setValue={setValue}
|
||||||
onChange={setValue}
|
status={status}
|
||||||
value={value}
|
value={value}
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
</Form.Item>
|
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -4,18 +4,13 @@ import { useValue } from '@/stores/calculation/values/hooks';
|
|||||||
import type { Values } from '@/stores/calculation/values/types';
|
import type { Values } from '@/stores/calculation/values/types';
|
||||||
import { observer } from 'mobx-react-lite';
|
import { observer } from 'mobx-react-lite';
|
||||||
import type { ComponentType } from 'react';
|
import type { ComponentType } from 'react';
|
||||||
import styled from 'styled-components';
|
|
||||||
|
|
||||||
type BuilderProps = {
|
type BuilderProps = {
|
||||||
elementName: Elements;
|
elementName: Elements;
|
||||||
valueName: Values;
|
valueName: Values;
|
||||||
};
|
};
|
||||||
|
|
||||||
const Wrapper = styled.div`
|
export default function buildReadonly<T>(
|
||||||
margin-bottom: 24px;
|
|
||||||
`;
|
|
||||||
|
|
||||||
export function buildReadonly<T>(
|
|
||||||
Component: ComponentType<T>,
|
Component: ComponentType<T>,
|
||||||
{ elementName, valueName }: BuilderProps
|
{ elementName, valueName }: BuilderProps
|
||||||
) {
|
) {
|
||||||
@ -23,10 +18,6 @@ export function buildReadonly<T>(
|
|||||||
const [value] = useValue(valueName);
|
const [value] = useValue(valueName);
|
||||||
const status = useStatus(elementName);
|
const status = useStatus(elementName);
|
||||||
|
|
||||||
return (
|
return <Component readOnly status={status} value={value} {...props} />;
|
||||||
<Wrapper>
|
|
||||||
<Component readOnly status={status} value={value} {...props} />
|
|
||||||
</Wrapper>
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,40 +0,0 @@
|
|||||||
import type { Elements } from '../config/map/values';
|
|
||||||
import { useStoreValue } from './hooks';
|
|
||||||
import { useStatus } from '@/stores/calculation/statuses/hooks';
|
|
||||||
import { useValidation } from '@/stores/calculation/validation/hooks';
|
|
||||||
import type { Values } from '@/stores/calculation/values/types';
|
|
||||||
import type { SwitchChangeEventHandler } from 'antd/lib/switch';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import type { ComponentType } from 'react';
|
|
||||||
import { Form } from 'ui/elements';
|
|
||||||
|
|
||||||
type BuilderProps = {
|
|
||||||
elementName: Elements;
|
|
||||||
valueName: Values;
|
|
||||||
};
|
|
||||||
|
|
||||||
export function buildSwitch<T>(
|
|
||||||
Component: ComponentType<T>,
|
|
||||||
{ elementName, valueName }: BuilderProps
|
|
||||||
) {
|
|
||||||
return observer((props: T) => {
|
|
||||||
const [value, setValue] = useStoreValue(valueName);
|
|
||||||
const status = useStatus(elementName);
|
|
||||||
const { validateStatus, help } = useValidation(elementName);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Form.Item help={help} validateStatus={validateStatus}>
|
|
||||||
<Component
|
|
||||||
onChange={
|
|
||||||
((checked) => {
|
|
||||||
setValue(checked);
|
|
||||||
}) as SwitchChangeEventHandler
|
|
||||||
}
|
|
||||||
disabled={status === 'Disabled'}
|
|
||||||
checked={value}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
</Form.Item>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@ -4,15 +4,14 @@ import { useStatus } from '@/stores/calculation/statuses/hooks';
|
|||||||
import { useValidation } from '@/stores/calculation/validation/hooks';
|
import { useValidation } from '@/stores/calculation/validation/hooks';
|
||||||
import type { Values } from '@/stores/calculation/values/types';
|
import type { Values } from '@/stores/calculation/values/types';
|
||||||
import { observer } from 'mobx-react-lite';
|
import { observer } from 'mobx-react-lite';
|
||||||
import type { ChangeEvent, ComponentType } from 'react';
|
import type { ComponentType } from 'react';
|
||||||
import { Form } from 'ui/elements';
|
|
||||||
|
|
||||||
type BuilderProps = {
|
export type BuilderProps = {
|
||||||
elementName: Elements;
|
elementName: Elements;
|
||||||
valueName: Values;
|
valueName: Values;
|
||||||
};
|
};
|
||||||
|
|
||||||
export function buildValue<T>(
|
export default function buildValue<T>(
|
||||||
Component: ComponentType<T>,
|
Component: ComponentType<T>,
|
||||||
{ elementName, valueName }: BuilderProps
|
{ elementName, valueName }: BuilderProps
|
||||||
) {
|
) {
|
||||||
@ -22,40 +21,14 @@ export function buildValue<T>(
|
|||||||
const { validateStatus, help } = useValidation(elementName);
|
const { validateStatus, help } = useValidation(elementName);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Form.Item help={help} validateStatus={validateStatus}>
|
<Component
|
||||||
<Component
|
help={help}
|
||||||
onChange={(e: ChangeEvent<HTMLInputElement>) => {
|
validateStatus={validateStatus}
|
||||||
setValue(e.target.value);
|
setValue={setValue}
|
||||||
}}
|
status={status}
|
||||||
disabled={status === 'Disabled'}
|
value={value}
|
||||||
value={value}
|
{...props}
|
||||||
{...props}
|
/>
|
||||||
/>
|
|
||||||
</Form.Item>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export function buildNumberValue<T>(
|
|
||||||
Component: ComponentType<T>,
|
|
||||||
{ elementName, valueName }: BuilderProps
|
|
||||||
) {
|
|
||||||
return observer((props: T) => {
|
|
||||||
const [value, setValue] = useStoreValue(valueName);
|
|
||||||
const status = useStatus(elementName);
|
|
||||||
const { validateStatus, help } = useValidation(elementName);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Form.Item help={help} validateStatus={validateStatus}>
|
|
||||||
<Component
|
|
||||||
onChange={(inputValue: number | null) => {
|
|
||||||
setValue(inputValue || 0);
|
|
||||||
}}
|
|
||||||
disabled={status === 'Disabled'}
|
|
||||||
value={value}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
</Form.Item>
|
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
4
apps/web/Components/Calculation/builders/index.js
Normal file
4
apps/web/Components/Calculation/builders/index.js
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
export { default as buildAction } from './build-action';
|
||||||
|
export { default as buildOptions } from './build-options';
|
||||||
|
export { default as buildReadonly } from './build-readonly';
|
||||||
|
export { default as buildValue } from './build-value';
|
||||||
@ -1,7 +0,0 @@
|
|||||||
export * from './build-action';
|
|
||||||
export * from './build-check';
|
|
||||||
export * from './build-link';
|
|
||||||
export * from './build-options';
|
|
||||||
export * from './build-readonly';
|
|
||||||
export * from './build-switch';
|
|
||||||
export * from './build-value';
|
|
||||||
@ -1,3 +1,4 @@
|
|||||||
|
/* eslint-disable jsdoc/multiline-blocks */
|
||||||
/* eslint-disable canonical/sort-keys */
|
/* eslint-disable canonical/sort-keys */
|
||||||
import type { Elements as ActionElements } from './map/actions';
|
import type { Elements as ActionElements } from './map/actions';
|
||||||
import type { Elements as ValuesElements } from './map/values';
|
import type { Elements as ValuesElements } from './map/values';
|
||||||
@ -72,7 +73,7 @@ const components = wrapComponentsMap({
|
|||||||
selectCalcFinDepartment: e.Select,
|
selectCalcFinDepartment: e.Select,
|
||||||
selectFinDepartmentRewardCondtion: e.Select,
|
selectFinDepartmentRewardCondtion: e.Select,
|
||||||
tbxFinDepartmentRewardSumm: e.InputNumber,
|
tbxFinDepartmentRewardSumm: e.InputNumber,
|
||||||
cbxInsDecentral: e.Checkbox,
|
cbxInsDecentral: e.Switch,
|
||||||
tbxInsFranchise: e.InputNumber,
|
tbxInsFranchise: e.InputNumber,
|
||||||
cbxInsUnlimitDrivers: e.Switch,
|
cbxInsUnlimitDrivers: e.Switch,
|
||||||
tbxInsAgeDrivers: e.InputNumber,
|
tbxInsAgeDrivers: e.InputNumber,
|
||||||
@ -132,11 +133,6 @@ const components = wrapComponentsMap({
|
|||||||
tbxVIN: e.Input,
|
tbxVIN: e.Input,
|
||||||
selectUser: e.Select,
|
selectUser: e.Select,
|
||||||
cbxSupplierFinancing: e.Switch,
|
cbxSupplierFinancing: e.Switch,
|
||||||
tbxPi: e.InputNumber,
|
|
||||||
cbxPartialVAT: e.Switch,
|
|
||||||
cbxFloatingRate: e.Switch,
|
|
||||||
cbxQuotePriceWithFullVAT: e.Switch,
|
|
||||||
cbxQuoteShowAcceptLimit: e.Switch,
|
|
||||||
|
|
||||||
/** Readonly Elements */
|
/** Readonly Elements */
|
||||||
labelLeaseObjectRisk: e.Text,
|
labelLeaseObjectRisk: e.Text,
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
/* eslint-disable jsdoc/multiline-blocks */
|
||||||
/* eslint-disable canonical/sort-keys */
|
/* eslint-disable canonical/sort-keys */
|
||||||
import CurrencyAddon from '../addons/currency-addon';
|
import CurrencyAddon from '../addons/currency-addon';
|
||||||
import type { ElementsProps } from './elements-components';
|
import type { ElementsProps } from './elements-components';
|
||||||
@ -18,9 +19,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: CurrencyAddon,
|
addonAfter: CurrencyAddon,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxLeaseObjectPriceWthtVAT: {
|
tbxLeaseObjectPriceWthtVAT: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -30,9 +28,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: CurrencyAddon,
|
addonAfter: CurrencyAddon,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxVATInLeaseObjectPrice: {
|
tbxVATInLeaseObjectPrice: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -42,18 +37,12 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: CurrencyAddon,
|
addonAfter: CurrencyAddon,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxEngineHours: {
|
tbxEngineHours: {
|
||||||
min: 0,
|
min: 0,
|
||||||
step: 10,
|
step: 10,
|
||||||
precision: 2,
|
precision: 2,
|
||||||
addonAfter: 'ч.',
|
addonAfter: 'ч.',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxSupplierDiscountRub: {
|
tbxSupplierDiscountRub: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -63,9 +52,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: CurrencyAddon,
|
addonAfter: CurrencyAddon,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxSupplierDiscountPerc: {
|
tbxSupplierDiscountPerc: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -73,9 +59,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
precision: 2,
|
precision: 2,
|
||||||
|
|
||||||
addonAfter: '%',
|
addonAfter: '%',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
radioBalanceHolder: {
|
radioBalanceHolder: {
|
||||||
optionType: 'button',
|
optionType: 'button',
|
||||||
@ -88,9 +71,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
precision: 2,
|
precision: 2,
|
||||||
|
|
||||||
addonAfter: '%',
|
addonAfter: '%',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
radioLastPaymentRule: {
|
radioLastPaymentRule: {
|
||||||
block: true,
|
block: true,
|
||||||
@ -102,9 +82,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter: createFormatter({ minimumFractionDigits: 4, maximumFractionDigits: 4 }),
|
formatter: createFormatter({ minimumFractionDigits: 4, maximumFractionDigits: 4 }),
|
||||||
addonAfter: '%',
|
addonAfter: '%',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxFirstPaymentRub: {
|
tbxFirstPaymentRub: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -114,9 +91,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxLastPaymentPerc: {
|
tbxLastPaymentPerc: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -126,9 +100,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter: createFormatter({ minimumFractionDigits: 6, maximumFractionDigits: 6 }),
|
formatter: createFormatter({ minimumFractionDigits: 6, maximumFractionDigits: 6 }),
|
||||||
addonAfter: '%',
|
addonAfter: '%',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxLastPaymentRub: {
|
tbxLastPaymentRub: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -138,9 +109,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxRedemptionPaymentSum: {
|
tbxRedemptionPaymentSum: {
|
||||||
min: 1000,
|
min: 1000,
|
||||||
@ -150,55 +118,34 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxLeasingPeriod: {
|
tbxLeasingPeriod: {
|
||||||
min: 13,
|
min: 13,
|
||||||
max: MAX_LEASING_PERIOD,
|
max: MAX_LEASING_PERIOD,
|
||||||
addonAfter: 'мес.',
|
addonAfter: 'мес.',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxSubsidySum: {
|
tbxSubsidySum: {
|
||||||
min: 0,
|
min: 0,
|
||||||
precision: 2,
|
precision: 2,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxImportProgramSum: {
|
tbxImportProgramSum: {
|
||||||
min: 0,
|
min: 0,
|
||||||
precision: 2,
|
precision: 2,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxAddEquipmentPrice: {
|
tbxAddEquipmentPrice: {
|
||||||
min: 0,
|
min: 0,
|
||||||
precision: 2,
|
precision: 2,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxParmentsDecreasePercent: {
|
tbxParmentsDecreasePercent: {
|
||||||
min: 50,
|
min: 50,
|
||||||
max: 99,
|
max: 99,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxComissionPerc: {
|
tbxComissionPerc: {
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 100,
|
max: 100,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxComissionRub: {
|
tbxComissionRub: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -207,9 +154,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selectLeaseObjectType: {
|
selectLeaseObjectType: {
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
@ -231,9 +175,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
min: 1,
|
min: 1,
|
||||||
max: 1000,
|
max: 1000,
|
||||||
addonAfter: 'шт.',
|
addonAfter: 'шт.',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selectLeaseObjectUseFor: {
|
selectLeaseObjectUseFor: {
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
@ -242,9 +183,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
tbxLeaseObjectYear: {
|
tbxLeaseObjectYear: {
|
||||||
min: 1994,
|
min: 1994,
|
||||||
max: dayjs().year(),
|
max: dayjs().year(),
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selectLeaseObjectCategory: {
|
selectLeaseObjectCategory: {
|
||||||
showSearch: false,
|
showSearch: false,
|
||||||
@ -261,9 +199,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: 'л.с.',
|
addonAfter: 'л.с.',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxEngineVolume: {
|
tbxEngineVolume: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -273,9 +208,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter: createFormatter({ minimumFractionDigits: 4, maximumFractionDigits: 4 }),
|
formatter: createFormatter({ minimumFractionDigits: 4, maximumFractionDigits: 4 }),
|
||||||
addonAfter: 'л',
|
addonAfter: 'л',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxMaxMass: {
|
tbxMaxMass: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -284,18 +216,12 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: 'кг',
|
addonAfter: 'кг',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxCountSeats: {
|
tbxCountSeats: {
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 2000,
|
max: 2000,
|
||||||
precision: 0,
|
precision: 0,
|
||||||
parser,
|
parser,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxMaxSpeed: {
|
tbxMaxSpeed: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -303,9 +229,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: 'км/ч',
|
addonAfter: 'км/ч',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selectDealer: {
|
selectDealer: {
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
@ -316,54 +239,36 @@ const props: Partial<ElementsProps> = {
|
|||||||
max: 20,
|
max: 20,
|
||||||
step: 0.1,
|
step: 0.1,
|
||||||
precision: 2,
|
precision: 2,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxDealerBrokerRewardSumm: {
|
tbxDealerBrokerRewardSumm: {
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 20,
|
max: 20,
|
||||||
step: 0.1,
|
step: 0.1,
|
||||||
precision: 2,
|
precision: 2,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxIndAgentRewardSumm: {
|
tbxIndAgentRewardSumm: {
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 20,
|
max: 20,
|
||||||
step: 0.1,
|
step: 0.1,
|
||||||
precision: 2,
|
precision: 2,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxCalcDoubleAgentRewardSumm: {
|
tbxCalcDoubleAgentRewardSumm: {
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 20,
|
max: 20,
|
||||||
step: 0.1,
|
step: 0.1,
|
||||||
precision: 2,
|
precision: 2,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxCalcBrokerRewardSum: {
|
tbxCalcBrokerRewardSum: {
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 20,
|
max: 20,
|
||||||
step: 0.1,
|
step: 0.1,
|
||||||
precision: 2,
|
precision: 2,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxFinDepartmentRewardSumm: {
|
tbxFinDepartmentRewardSumm: {
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 20,
|
max: 20,
|
||||||
step: 0.1,
|
step: 0.1,
|
||||||
precision: 2,
|
precision: 2,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxInsFranchise: {
|
tbxInsFranchise: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -373,23 +278,14 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxInsAgeDrivers: {
|
tbxInsAgeDrivers: {
|
||||||
// min: 18,
|
// min: 18,
|
||||||
// max: 99,
|
// max: 99,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxInsExpDrivers: {
|
tbxInsExpDrivers: {
|
||||||
// min: 0,
|
// min: 0,
|
||||||
// max: 99,
|
// max: 99,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selectRegionRegistration: {
|
selectRegionRegistration: {
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
@ -404,57 +300,45 @@ const props: Partial<ElementsProps> = {
|
|||||||
buttonStyle: 'solid',
|
buttonStyle: 'solid',
|
||||||
},
|
},
|
||||||
btnCalculate: {
|
btnCalculate: {
|
||||||
children: 'Рассчитать график',
|
text: 'Рассчитать график',
|
||||||
type: 'primary',
|
type: 'primary',
|
||||||
block: true,
|
block: true,
|
||||||
},
|
},
|
||||||
btnCreateKP: {
|
btnCreateKP: {
|
||||||
type: 'primary',
|
type: 'primary',
|
||||||
children: 'Создать КП',
|
text: 'Создать КП',
|
||||||
icon: <PlusOutlined rev="" />,
|
icon: <PlusOutlined />,
|
||||||
},
|
},
|
||||||
btnCreateKPMini: {
|
btnCreateKPMini: {
|
||||||
children: '',
|
text: '',
|
||||||
type: 'primary',
|
type: 'primary',
|
||||||
icon: <PlusOutlined rev="" />,
|
icon: <PlusOutlined />,
|
||||||
block: true,
|
block: true,
|
||||||
},
|
},
|
||||||
tbxCreditRate: {
|
tbxCreditRate: {
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 99.99,
|
max: 99.99,
|
||||||
step: 0.1,
|
step: 0.1,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxMaxPriceChange: {
|
tbxMaxPriceChange: {
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 1_000_000_000,
|
max: 34_999_990,
|
||||||
step: 10_000,
|
step: 10_000,
|
||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxMinPriceChange: {
|
tbxMinPriceChange: {
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 1_000_000_000,
|
max: 34_999_990,
|
||||||
step: 10_000,
|
step: 10_000,
|
||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxImporterRewardPerc: {
|
tbxImporterRewardPerc: {
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 99.99,
|
max: 99.99,
|
||||||
step: 0.1,
|
step: 0.1,
|
||||||
precision: 2,
|
precision: 2,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxImporterRewardRub: {
|
tbxImporterRewardRub: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -463,9 +347,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
precision: 2,
|
precision: 2,
|
||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selectLead: {
|
selectLead: {
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
@ -480,41 +361,30 @@ const props: Partial<ElementsProps> = {
|
|||||||
optionFilterProp: 'label',
|
optionFilterProp: 'label',
|
||||||
},
|
},
|
||||||
tbxIRR_Perc: {
|
tbxIRR_Perc: {
|
||||||
min: -500,
|
min: 0,
|
||||||
max: 500,
|
max: 500,
|
||||||
step: 0.0001,
|
step: 0.0001,
|
||||||
precision: 6,
|
precision: 6,
|
||||||
parser,
|
parser,
|
||||||
formatter: createFormatter({ minimumFractionDigits: 6, maximumFractionDigits: 6 }),
|
formatter: createFormatter({ minimumFractionDigits: 6, maximumFractionDigits: 6 }),
|
||||||
addonAfter: '%',
|
addonAfter: '%',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxPi: {
|
linkDownloadKp: {
|
||||||
min: -500,
|
type: 'primary',
|
||||||
max: 500,
|
text: 'Скачать КП',
|
||||||
step: 0.0001,
|
icon: <DownloadOutlined />,
|
||||||
precision: 6,
|
|
||||||
parser,
|
|
||||||
formatter: createFormatter({ minimumFractionDigits: 6, maximumFractionDigits: 6 }),
|
|
||||||
addonAfter: '%',
|
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
linkDownloadKp: { children: 'Скачать КП', icon: <DownloadOutlined rev="" />, type: 'primary' },
|
|
||||||
tbxMileage: {
|
tbxMileage: {
|
||||||
min: 0,
|
min: 0,
|
||||||
step: 100,
|
step: 100,
|
||||||
precision: 2,
|
precision: 2,
|
||||||
addonAfter: 'км',
|
addonAfter: 'км',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
cbxRecalcWithRevision: {
|
cbxRecalcWithRevision: {
|
||||||
children: 'Пересчет без пересмотра',
|
text: 'Пересчет без пересмотра',
|
||||||
|
style: {
|
||||||
|
marginBottom: '8px',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
tbxTotalPayments: {
|
tbxTotalPayments: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -523,9 +393,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxVehicleTaxInYear: {
|
tbxVehicleTaxInYear: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -535,9 +402,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxVehicleTaxInLeasingPeriod: {
|
tbxVehicleTaxInLeasingPeriod: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -547,9 +411,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selectObjectRegionRegistration: {
|
selectObjectRegionRegistration: {
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
@ -562,9 +423,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
formatter,
|
formatter,
|
||||||
readOnly: true,
|
readOnly: true,
|
||||||
controls: false,
|
controls: false,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selectLegalClientRegion: {
|
selectLegalClientRegion: {
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
@ -599,24 +457,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
step: 0.1,
|
step: 0.1,
|
||||||
precision: 4,
|
precision: 4,
|
||||||
formatter: createFormatter({ minimumFractionDigits: 4, maximumFractionDigits: 4 }),
|
formatter: createFormatter({ minimumFractionDigits: 4, maximumFractionDigits: 4 }),
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
tbxVIN: {
|
|
||||||
onInput: (e) => {
|
|
||||||
e.currentTarget.value = e.currentTarget.value.toUpperCase();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
labelIrrInfo: {
|
|
||||||
style: {
|
|
||||||
marginBottom: '18px',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
labelDepreciationGroup: {
|
|
||||||
style: {
|
|
||||||
marginBottom: '18px',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,4 @@
|
|||||||
import { IRRAddon } from '../../addons/irr-addon';
|
import buildReadonly from '../../builders/build-readonly';
|
||||||
import { ProductAddon } from '../../addons/product-addon';
|
|
||||||
import { buildLink } from '../../builders';
|
|
||||||
import components from '../elements-components';
|
import components from '../elements-components';
|
||||||
import elementsProps from '../elements-props';
|
import elementsProps from '../elements-props';
|
||||||
import titles from '../elements-titles';
|
import titles from '../elements-titles';
|
||||||
@ -8,7 +6,7 @@ import types from '../elements-types';
|
|||||||
import map from '../map';
|
import map from '../map';
|
||||||
import type { RenderProps } from './types';
|
import type { RenderProps } from './types';
|
||||||
import { Container, Head } from '@/Components/Layout/Element';
|
import { Container, Head } from '@/Components/Layout/Element';
|
||||||
import { useErrors, useStore } from '@/stores/hooks';
|
import { useStore } from '@/stores/hooks';
|
||||||
import { useIsFetching } from '@tanstack/react-query';
|
import { useIsFetching } from '@tanstack/react-query';
|
||||||
import { observer } from 'mobx-react-lite';
|
import { observer } from 'mobx-react-lite';
|
||||||
import type { ComponentProps } from 'react';
|
import type { ComponentProps } from 'react';
|
||||||
@ -16,123 +14,11 @@ import { Link, Tooltip } from 'ui/elements';
|
|||||||
import { LoadingOutlined } from 'ui/elements/icons';
|
import { LoadingOutlined } from 'ui/elements/icons';
|
||||||
|
|
||||||
const defaultLinkProps: ComponentProps<typeof Link> = {
|
const defaultLinkProps: ComponentProps<typeof Link> = {
|
||||||
children: 'Открыть в CRM',
|
text: 'Открыть в CRM',
|
||||||
size: 'small',
|
|
||||||
style: { padding: 0 },
|
|
||||||
type: 'link',
|
type: 'link',
|
||||||
};
|
};
|
||||||
|
|
||||||
const overrideRender: Partial<Record<keyof typeof map, RenderProps>> = {
|
const overrideRender: Partial<Record<keyof typeof map, RenderProps>> = {
|
||||||
btnCalculate: {
|
|
||||||
render: () => {
|
|
||||||
const elementName = 'btnCalculate';
|
|
||||||
const title = titles.btnCalculate;
|
|
||||||
const valueName = map.btnCalculate;
|
|
||||||
const Component = components.btnCalculate;
|
|
||||||
const props = elementsProps.btnCalculate;
|
|
||||||
const { builder } = types.btnCalculate();
|
|
||||||
|
|
||||||
const Element = builder(Component, {
|
|
||||||
elementName,
|
|
||||||
valueName,
|
|
||||||
});
|
|
||||||
|
|
||||||
const RenderedComponent = observer(() => {
|
|
||||||
const { $process } = useStore();
|
|
||||||
const { hasErrors } = useErrors();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Container>
|
|
||||||
<Head htmlFor={elementName} title={title} />
|
|
||||||
<Element
|
|
||||||
{...props}
|
|
||||||
loading={$process.has('Calculate') || $process.has('CreateKP')}
|
|
||||||
disabled={
|
|
||||||
$process.has('LoadKP') ||
|
|
||||||
(!$process.has('Unlimited') && hasErrors) ||
|
|
||||||
$process.has('Tarif')
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
</Container>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
return <RenderedComponent />;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
btnCreateKP: {
|
|
||||||
render: () => {
|
|
||||||
const elementName = 'btnCreateKP';
|
|
||||||
const title = titles.btnCreateKP;
|
|
||||||
const valueName = map.btnCreateKP;
|
|
||||||
const Component = components.btnCreateKP;
|
|
||||||
const props = elementsProps.btnCreateKP;
|
|
||||||
const { builder } = types.btnCreateKP();
|
|
||||||
|
|
||||||
const Element = builder(Component, {
|
|
||||||
elementName,
|
|
||||||
valueName,
|
|
||||||
});
|
|
||||||
|
|
||||||
const RenderedComponent = observer(() => {
|
|
||||||
const { $process } = useStore();
|
|
||||||
const { hasErrors } = useErrors();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Container>
|
|
||||||
<Head htmlFor={elementName} title={title} />
|
|
||||||
<Element
|
|
||||||
{...props}
|
|
||||||
loading={$process.has('Calculate') || $process.has('CreateKP')}
|
|
||||||
disabled={
|
|
||||||
$process.has('LoadKP') ||
|
|
||||||
(!$process.has('Unlimited') && hasErrors) ||
|
|
||||||
$process.has('Tarif')
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
</Container>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
return <RenderedComponent />;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
btnCreateKPMini: {
|
|
||||||
render: () => {
|
|
||||||
const elementName = 'btnCreateKPMini';
|
|
||||||
const title = titles.btnCreateKPMini;
|
|
||||||
const valueName = map.btnCreateKPMini;
|
|
||||||
const Component = components.btnCreateKPMini;
|
|
||||||
const props = elementsProps.btnCreateKPMini;
|
|
||||||
const { builder } = types.btnCreateKPMini();
|
|
||||||
|
|
||||||
const Element = builder(Component, {
|
|
||||||
elementName,
|
|
||||||
valueName,
|
|
||||||
});
|
|
||||||
|
|
||||||
const RenderedComponent = observer(() => {
|
|
||||||
const { $process } = useStore();
|
|
||||||
const { hasErrors } = useErrors();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Container>
|
|
||||||
<Head htmlFor={elementName} title={title} />
|
|
||||||
<Element
|
|
||||||
{...props}
|
|
||||||
loading={$process.has('Calculate') || $process.has('CreateKP')}
|
|
||||||
disabled={$process.has('LoadKP') || (!$process.has('Unlimited') && hasErrors)}
|
|
||||||
/>
|
|
||||||
</Container>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
return <RenderedComponent />;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
selectHighSeasonStart: {
|
selectHighSeasonStart: {
|
||||||
render: () => {
|
render: () => {
|
||||||
const elementName = 'selectHighSeasonStart';
|
const elementName = 'selectHighSeasonStart';
|
||||||
@ -172,7 +58,7 @@ const overrideRender: Partial<Record<keyof typeof map, RenderProps>> = {
|
|||||||
valueName,
|
valueName,
|
||||||
});
|
});
|
||||||
|
|
||||||
const LinkComponent = buildLink(Link, {
|
const LinkComponent = buildReadonly(Link, {
|
||||||
elementName: 'linkLeadUrl',
|
elementName: 'linkLeadUrl',
|
||||||
valueName: 'leadUrl',
|
valueName: 'leadUrl',
|
||||||
});
|
});
|
||||||
@ -204,7 +90,7 @@ const overrideRender: Partial<Record<keyof typeof map, RenderProps>> = {
|
|||||||
valueName,
|
valueName,
|
||||||
});
|
});
|
||||||
|
|
||||||
const LinkComponent = buildLink(Link, {
|
const LinkComponent = buildReadonly(Link, {
|
||||||
elementName: 'linkOpportunityUrl',
|
elementName: 'linkOpportunityUrl',
|
||||||
valueName: 'opportunityUrl',
|
valueName: 'opportunityUrl',
|
||||||
});
|
});
|
||||||
@ -222,29 +108,6 @@ const overrideRender: Partial<Record<keyof typeof map, RenderProps>> = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
selectProduct: {
|
|
||||||
render: () => {
|
|
||||||
const elementName = 'selectProduct';
|
|
||||||
const title = titles.selectProduct;
|
|
||||||
const valueName = map.selectProduct;
|
|
||||||
const Component = components.selectProduct;
|
|
||||||
const props = elementsProps.selectProduct;
|
|
||||||
const { builder } = types.selectProduct();
|
|
||||||
|
|
||||||
const Element = builder(Component, {
|
|
||||||
elementName,
|
|
||||||
valueName,
|
|
||||||
});
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Container key={elementName}>
|
|
||||||
<Head addon={<ProductAddon />} htmlFor={elementName} title={title} />
|
|
||||||
<Element {...props} id={elementName} />
|
|
||||||
</Container>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
selectQuote: {
|
selectQuote: {
|
||||||
render: () => {
|
render: () => {
|
||||||
const elementName = 'selectQuote';
|
const elementName = 'selectQuote';
|
||||||
@ -259,7 +122,7 @@ const overrideRender: Partial<Record<keyof typeof map, RenderProps>> = {
|
|||||||
valueName,
|
valueName,
|
||||||
});
|
});
|
||||||
|
|
||||||
const LinkComponent = buildLink(Link, {
|
const LinkComponent = buildReadonly(Link, {
|
||||||
elementName: 'linkQuoteUrl',
|
elementName: 'linkQuoteUrl',
|
||||||
valueName: 'quoteUrl',
|
valueName: 'quoteUrl',
|
||||||
});
|
});
|
||||||
@ -316,36 +179,6 @@ const overrideRender: Partial<Record<keyof typeof map, RenderProps>> = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
tbxIRR_Perc: {
|
|
||||||
render: () => {
|
|
||||||
const elementName = 'tbxIRR_Perc';
|
|
||||||
const title = titles.tbxIRR_Perc;
|
|
||||||
const valueName = map.tbxIRR_Perc;
|
|
||||||
const Component = components.tbxIRR_Perc;
|
|
||||||
const props = elementsProps.tbxIRR_Perc;
|
|
||||||
const { builder } = types.tbxIRR_Perc();
|
|
||||||
|
|
||||||
const Element = builder(Component, {
|
|
||||||
elementName,
|
|
||||||
valueName,
|
|
||||||
});
|
|
||||||
|
|
||||||
const RenderedComponent = observer(() => {
|
|
||||||
const { $calculation } = useStore();
|
|
||||||
const { max, min } = $calculation.$values.getValue('irrInfo');
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Container>
|
|
||||||
<Head htmlFor={elementName} title={title} addon={<IRRAddon />} />
|
|
||||||
<Element {...props} min={min > 0 ? min : undefined} max={max > 0 ? max : undefined} />
|
|
||||||
</Container>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
return <RenderedComponent />;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
tbxVehicleTaxInYear: {
|
tbxVehicleTaxInYear: {
|
||||||
render: () => {
|
render: () => {
|
||||||
const elementName = 'tbxVehicleTaxInYear';
|
const elementName = 'tbxVehicleTaxInYear';
|
||||||
@ -370,7 +203,7 @@ const overrideRender: Partial<Record<keyof typeof map, RenderProps>> = {
|
|||||||
<Element
|
<Element
|
||||||
{...props}
|
{...props}
|
||||||
id={elementName}
|
id={elementName}
|
||||||
addonBefore={isFetching ? <LoadingOutlined spin rev="" /> : null}
|
addonBefore={isFetching && <LoadingOutlined spin />}
|
||||||
/>
|
/>
|
||||||
</Container>
|
</Container>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
/* eslint-disable jsdoc/multiline-blocks */
|
||||||
/* eslint-disable canonical/sort-keys */
|
/* eslint-disable canonical/sort-keys */
|
||||||
import type { Elements as ActionElements } from './map/actions';
|
import type { Elements as ActionElements } from './map/actions';
|
||||||
import type { Elements as ValuesElements } from './map/values';
|
import type { Elements as ValuesElements } from './map/values';
|
||||||
@ -93,7 +94,7 @@ const titles: Record<ActionElements | ValuesElements, string> = {
|
|||||||
selectTarif: 'Тариф',
|
selectTarif: 'Тариф',
|
||||||
tbxCreditRate: 'Ставка привлечения, %',
|
tbxCreditRate: 'Ставка привлечения, %',
|
||||||
selectRate: 'Ставка привлечения',
|
selectRate: 'Ставка привлечения',
|
||||||
tbxMaxPriceChange: 'Макс. возможное изменение стоимости ПЛ',
|
tbxMaxPriceChange: 'Макс.возможное изменение стоимости ПЛ',
|
||||||
tbxImporterRewardPerc: 'АВ импортера, %',
|
tbxImporterRewardPerc: 'АВ импортера, %',
|
||||||
tbxImporterRewardRub: 'АВ импортера, руб.',
|
tbxImporterRewardRub: 'АВ импортера, руб.',
|
||||||
cbxDisableChecks: 'Отключить все проверки',
|
cbxDisableChecks: 'Отключить все проверки',
|
||||||
@ -126,11 +127,6 @@ const titles: Record<ActionElements | ValuesElements, string> = {
|
|||||||
tbxVIN: 'VIN',
|
tbxVIN: 'VIN',
|
||||||
selectUser: 'Пользователь',
|
selectUser: 'Пользователь',
|
||||||
cbxSupplierFinancing: 'Финансирование поставщика',
|
cbxSupplierFinancing: 'Финансирование поставщика',
|
||||||
tbxPi: 'PI',
|
|
||||||
cbxPartialVAT: 'Частичный НДС',
|
|
||||||
cbxFloatingRate: 'Плавающая ставка',
|
|
||||||
cbxQuotePriceWithFullVAT: 'Отображать Стоимость ПЛ с полным НДС',
|
|
||||||
cbxQuoteShowAcceptLimit: 'Отображать одобренный лимит',
|
|
||||||
|
|
||||||
/** Link Elements */
|
/** Link Elements */
|
||||||
linkDownloadKp: '',
|
linkDownloadKp: '',
|
||||||
|
|||||||
@ -1,22 +1,11 @@
|
|||||||
|
/* eslint-disable jsdoc/multiline-blocks */
|
||||||
/* eslint-disable canonical/sort-keys */
|
/* eslint-disable canonical/sort-keys */
|
||||||
import * as b from '../builders';
|
import { buildAction, buildOptions, buildReadonly, buildValue } from '../builders';
|
||||||
import type { Elements as ActionElements } from './map/actions';
|
import type { Elements as ActionElements } from './map/actions';
|
||||||
import type { Elements as ValuesElements } from './map/values';
|
import type { Elements as ValuesElements } from './map/values';
|
||||||
|
|
||||||
type ElementTypes =
|
type ElementTypes = 'Action' | 'Options' | 'Readonly' | 'Value';
|
||||||
| 'Action'
|
type Builders = typeof buildAction | typeof buildOptions | typeof buildReadonly | typeof buildValue;
|
||||||
| 'Check'
|
|
||||||
| 'Link'
|
|
||||||
| 'Number'
|
|
||||||
| 'Options'
|
|
||||||
| 'Readonly'
|
|
||||||
| 'Switch'
|
|
||||||
| 'Value';
|
|
||||||
type Builders =
|
|
||||||
| typeof b.buildAction
|
|
||||||
| typeof b.buildOptions
|
|
||||||
| typeof b.buildReadonly
|
|
||||||
| typeof b.buildValue;
|
|
||||||
|
|
||||||
type GetType = () => {
|
type GetType = () => {
|
||||||
builder: Builders;
|
builder: Builders;
|
||||||
@ -30,35 +19,19 @@ function wrapTypeGetters<G extends GetType, E extends Record<ElementTypes, G>>(a
|
|||||||
const t = wrapTypeGetters({
|
const t = wrapTypeGetters({
|
||||||
Value: () => ({
|
Value: () => ({
|
||||||
typeName: 'Value',
|
typeName: 'Value',
|
||||||
builder: b.buildValue,
|
builder: buildValue,
|
||||||
}),
|
|
||||||
Number: () => ({
|
|
||||||
typeName: 'Number',
|
|
||||||
builder: b.buildNumberValue,
|
|
||||||
}),
|
}),
|
||||||
Readonly: () => ({
|
Readonly: () => ({
|
||||||
typeName: 'Readonly',
|
typeName: 'Readonly',
|
||||||
builder: b.buildReadonly,
|
builder: buildReadonly,
|
||||||
}),
|
}),
|
||||||
Options: () => ({
|
Options: () => ({
|
||||||
typeName: 'Options',
|
typeName: 'Options',
|
||||||
builder: b.buildOptions,
|
builder: buildOptions,
|
||||||
}),
|
}),
|
||||||
Action: () => ({
|
Action: () => ({
|
||||||
typeName: 'Action',
|
typeName: 'Action',
|
||||||
builder: b.buildAction,
|
builder: buildAction,
|
||||||
}),
|
|
||||||
Link: () => ({
|
|
||||||
typeName: 'Link',
|
|
||||||
builder: b.buildLink,
|
|
||||||
}),
|
|
||||||
Check: () => ({
|
|
||||||
typeName: 'Check',
|
|
||||||
builder: b.buildCheck,
|
|
||||||
}),
|
|
||||||
Switch: () => ({
|
|
||||||
typeName: 'Switch',
|
|
||||||
builder: b.buildSwitch,
|
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -67,68 +40,68 @@ function wrapElementsTypes<T, E extends Record<ActionElements | ValuesElements,
|
|||||||
}
|
}
|
||||||
|
|
||||||
const types = wrapElementsTypes({
|
const types = wrapElementsTypes({
|
||||||
cbxRecalcWithRevision: t.Check,
|
cbxRecalcWithRevision: t.Value,
|
||||||
tbxLeaseObjectPrice: t.Number,
|
tbxLeaseObjectPrice: t.Value,
|
||||||
tbxLeaseObjectPriceWthtVAT: t.Number,
|
tbxLeaseObjectPriceWthtVAT: t.Value,
|
||||||
tbxVATInLeaseObjectPrice: t.Number,
|
tbxVATInLeaseObjectPrice: t.Value,
|
||||||
tbxEngineHours: t.Number,
|
tbxEngineHours: t.Value,
|
||||||
tbxSupplierDiscountRub: t.Number,
|
tbxSupplierDiscountRub: t.Value,
|
||||||
tbxSupplierDiscountPerc: t.Number,
|
tbxSupplierDiscountPerc: t.Value,
|
||||||
tbxLeasingPeriod: t.Number,
|
tbxLeasingPeriod: t.Value,
|
||||||
tbxFirstPaymentPerc: t.Number,
|
tbxFirstPaymentPerc: t.Value,
|
||||||
tbxFirstPaymentRub: t.Number,
|
tbxFirstPaymentRub: t.Value,
|
||||||
tbxLastPaymentPerc: t.Number,
|
tbxLastPaymentPerc: t.Value,
|
||||||
tbxLastPaymentRub: t.Number,
|
tbxLastPaymentRub: t.Value,
|
||||||
selectImportProgram: t.Options,
|
selectImportProgram: t.Options,
|
||||||
tbxImportProgramSum: t.Readonly,
|
tbxImportProgramSum: t.Readonly,
|
||||||
tbxAddEquipmentPrice: t.Number,
|
tbxAddEquipmentPrice: t.Value,
|
||||||
tbxRedemptionPaymentSum: t.Number,
|
tbxRedemptionPaymentSum: t.Value,
|
||||||
tbxParmentsDecreasePercent: t.Number,
|
tbxParmentsDecreasePercent: t.Value,
|
||||||
tbxComissionPerc: t.Number,
|
tbxComissionPerc: t.Value,
|
||||||
tbxComissionRub: t.Number,
|
tbxComissionRub: t.Value,
|
||||||
tbxSaleBonus: t.Number,
|
tbxSaleBonus: t.Value,
|
||||||
tbxIRR_Perc: t.Number,
|
tbxIRR_Perc: t.Value,
|
||||||
tbxLeaseObjectCount: t.Number,
|
tbxLeaseObjectCount: t.Value,
|
||||||
cbxWithTrailer: t.Check,
|
cbxWithTrailer: t.Value,
|
||||||
cbxLeaseObjectUsed: t.Check,
|
cbxLeaseObjectUsed: t.Value,
|
||||||
tbxMaxMass: t.Number,
|
tbxMaxMass: t.Value,
|
||||||
tbxCountSeats: t.Number,
|
tbxCountSeats: t.Value,
|
||||||
tbxMaxSpeed: t.Number,
|
tbxMaxSpeed: t.Value,
|
||||||
tbxLeaseObjectYear: t.Number,
|
tbxLeaseObjectYear: t.Value,
|
||||||
tbxLeaseObjectMotorPower: t.Number,
|
tbxLeaseObjectMotorPower: t.Value,
|
||||||
tbxEngineVolume: t.Number,
|
tbxEngineVolume: t.Value,
|
||||||
tbxDealerRewardSumm: t.Number,
|
tbxDealerRewardSumm: t.Value,
|
||||||
tbxDealerBrokerRewardSumm: t.Number,
|
tbxDealerBrokerRewardSumm: t.Value,
|
||||||
tbxIndAgentRewardSumm: t.Number,
|
tbxIndAgentRewardSumm: t.Value,
|
||||||
tbxCalcDoubleAgentRewardSumm: t.Number,
|
tbxCalcDoubleAgentRewardSumm: t.Value,
|
||||||
tbxCalcBrokerRewardSum: t.Number,
|
tbxCalcBrokerRewardSum: t.Value,
|
||||||
tbxFinDepartmentRewardSumm: t.Number,
|
tbxFinDepartmentRewardSumm: t.Value,
|
||||||
cbxInsDecentral: t.Check,
|
cbxInsDecentral: t.Value,
|
||||||
tbxInsFranchise: t.Number,
|
tbxInsFranchise: t.Value,
|
||||||
cbxInsUnlimitDrivers: t.Switch,
|
cbxInsUnlimitDrivers: t.Value,
|
||||||
tbxInsAgeDrivers: t.Number,
|
tbxInsAgeDrivers: t.Value,
|
||||||
tbxInsExpDrivers: t.Number,
|
tbxInsExpDrivers: t.Value,
|
||||||
cbxLastPaymentRedemption: t.Switch,
|
cbxLastPaymentRedemption: t.Value,
|
||||||
cbxPriceWithDiscount: t.Switch,
|
cbxPriceWithDiscount: t.Value,
|
||||||
cbxFullPriceWithDiscount: t.Switch,
|
cbxFullPriceWithDiscount: t.Value,
|
||||||
cbxCostIncrease: t.Switch,
|
cbxCostIncrease: t.Value,
|
||||||
cbxInsurance: t.Switch,
|
cbxInsurance: t.Value,
|
||||||
cbxRegistrationQuote: t.Switch,
|
cbxRegistrationQuote: t.Value,
|
||||||
cbxTechnicalCardQuote: t.Switch,
|
cbxTechnicalCardQuote: t.Value,
|
||||||
cbxNSIB: t.Switch,
|
cbxNSIB: t.Value,
|
||||||
tbxQuoteName: t.Value,
|
tbxQuoteName: t.Value,
|
||||||
cbxQuoteRedemptionGraph: t.Switch,
|
cbxQuoteRedemptionGraph: t.Value,
|
||||||
cbxShowFinGAP: t.Switch,
|
cbxShowFinGAP: t.Value,
|
||||||
tbxCreditRate: t.Number,
|
tbxCreditRate: t.Value,
|
||||||
tbxMaxPriceChange: t.Number,
|
tbxMaxPriceChange: t.Value,
|
||||||
tbxImporterRewardPerc: t.Number,
|
tbxImporterRewardPerc: t.Value,
|
||||||
tbxImporterRewardRub: t.Number,
|
tbxImporterRewardRub: t.Value,
|
||||||
cbxDisableChecks: t.Switch,
|
cbxDisableChecks: t.Value,
|
||||||
tbxMileage: t.Number,
|
tbxMileage: t.Value,
|
||||||
tbxTotalPayments: t.Number,
|
tbxTotalPayments: t.Value,
|
||||||
tbxVehicleTaxInYear: t.Number,
|
tbxVehicleTaxInYear: t.Value,
|
||||||
tbxVehicleTaxInLeasingPeriod: t.Number,
|
tbxVehicleTaxInLeasingPeriod: t.Value,
|
||||||
tbxMinPriceChange: t.Number,
|
tbxMinPriceChange: t.Value,
|
||||||
|
|
||||||
selectProduct: t.Options,
|
selectProduct: t.Options,
|
||||||
selectClientRisk: t.Options,
|
selectClientRisk: t.Options,
|
||||||
@ -190,12 +163,7 @@ const types = wrapElementsTypes({
|
|||||||
selectLeasingWithoutKasko: t.Options,
|
selectLeasingWithoutKasko: t.Options,
|
||||||
tbxVIN: t.Value,
|
tbxVIN: t.Value,
|
||||||
selectUser: t.Options,
|
selectUser: t.Options,
|
||||||
cbxSupplierFinancing: t.Switch,
|
cbxSupplierFinancing: t.Value,
|
||||||
tbxPi: t.Number,
|
|
||||||
cbxPartialVAT: t.Switch,
|
|
||||||
cbxFloatingRate: t.Switch,
|
|
||||||
cbxQuotePriceWithFullVAT: t.Switch,
|
|
||||||
cbxQuoteShowAcceptLimit: t.Switch,
|
|
||||||
|
|
||||||
labelLeaseObjectRisk: t.Readonly,
|
labelLeaseObjectRisk: t.Readonly,
|
||||||
tbxInsKaskoPriceLeasePeriod: t.Readonly,
|
tbxInsKaskoPriceLeasePeriod: t.Readonly,
|
||||||
@ -208,10 +176,10 @@ const types = wrapElementsTypes({
|
|||||||
btnCreateKPMini: t.Action,
|
btnCreateKPMini: t.Action,
|
||||||
btnCalculate: t.Action,
|
btnCalculate: t.Action,
|
||||||
|
|
||||||
linkDownloadKp: t.Link,
|
linkDownloadKp: t.Readonly,
|
||||||
linkLeadUrl: t.Link,
|
linkLeadUrl: t.Readonly,
|
||||||
linkOpportunityUrl: t.Link,
|
linkOpportunityUrl: t.Readonly,
|
||||||
linkQuoteUrl: t.Link,
|
linkQuoteUrl: t.Readonly,
|
||||||
});
|
});
|
||||||
|
|
||||||
export default types;
|
export default types;
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
/* eslint-disable jsdoc/multiline-blocks */
|
||||||
/* eslint-disable canonical/sort-keys */
|
/* eslint-disable canonical/sort-keys */
|
||||||
import type { CalculationValues, Values } from '@/stores/calculation/values/types';
|
import type { CalculationValues, Values } from '@/stores/calculation/values/types';
|
||||||
|
|
||||||
@ -129,11 +130,6 @@ const elementsToValues = wrapElementsMap({
|
|||||||
tbxVIN: 'vin',
|
tbxVIN: 'vin',
|
||||||
selectUser: 'user',
|
selectUser: 'user',
|
||||||
cbxSupplierFinancing: 'supplierFinancing',
|
cbxSupplierFinancing: 'supplierFinancing',
|
||||||
tbxPi: 'pi',
|
|
||||||
cbxPartialVAT: 'partialVAT',
|
|
||||||
cbxFloatingRate: 'floatingRate',
|
|
||||||
cbxQuotePriceWithFullVAT: 'quotePriceWithFullVAT',
|
|
||||||
cbxQuoteShowAcceptLimit: 'quoteShowAcceptLimit',
|
|
||||||
|
|
||||||
/** Readonly Elements */
|
/** Readonly Elements */
|
||||||
labelLeaseObjectRisk: 'leaseObjectRiskName',
|
labelLeaseObjectRisk: 'leaseObjectRiskName',
|
||||||
@ -163,9 +159,3 @@ export type Elements = keyof ElementsTypes;
|
|||||||
export function getValueName(elementName: Elements) {
|
export function getValueName(elementName: Elements) {
|
||||||
return elementsToValues[elementName];
|
return elementsToValues[elementName];
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getElementName(valueName: Values) {
|
|
||||||
return (Object.keys(elementsToValues) as Elements[]).find(
|
|
||||||
(elementName) => elementsToValues[elementName] === valueName
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|||||||
2
apps/web/Components/Calculation/index.js
Normal file
2
apps/web/Components/Calculation/index.js
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
export { default as Form } from './Form';
|
||||||
|
export { default as Settings } from './Settings';
|
||||||
@ -1,101 +0,0 @@
|
|||||||
import { Form } from './Form';
|
|
||||||
import { Layout } from './Layout';
|
|
||||||
import { Output } from './Output';
|
|
||||||
import { Settings } from './Settings';
|
|
||||||
import { Component as Validation } from './Validation';
|
|
||||||
import { Notification } from '@/Components/Common';
|
|
||||||
import { NavigationBar, Tabs } from '@/Components/Layout/Navigation';
|
|
||||||
import { NavigationProvider } from '@/context/navigation';
|
|
||||||
import { useErrors, useResults } from '@/stores/hooks';
|
|
||||||
import { Media } from '@/styles/media';
|
|
||||||
import { getPageTitle } from '@/utils/page';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import Head from 'next/head';
|
|
||||||
import styled from 'styled-components';
|
|
||||||
import { Badge } from 'ui/elements';
|
|
||||||
import {
|
|
||||||
BarChartOutlined,
|
|
||||||
CalculatorOutlined,
|
|
||||||
ProfileOutlined,
|
|
||||||
WarningOutlined,
|
|
||||||
} from 'ui/elements/icons';
|
|
||||||
|
|
||||||
const defaultIconStyle = { fontSize: '1.2rem' };
|
|
||||||
|
|
||||||
const StyledBadge = styled(Badge)`
|
|
||||||
color: unset !important;
|
|
||||||
`;
|
|
||||||
|
|
||||||
export const tabs = [
|
|
||||||
{
|
|
||||||
Component: Settings,
|
|
||||||
Icon: () => <ProfileOutlined style={defaultIconStyle} />,
|
|
||||||
key: 'settings',
|
|
||||||
title: 'Интерес/Расчет',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
Component: Form,
|
|
||||||
Icon: () => <CalculatorOutlined style={defaultIconStyle} />,
|
|
||||||
key: 'form',
|
|
||||||
title: 'Параметры',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
Component: Output,
|
|
||||||
Icon: observer(() => {
|
|
||||||
const { hasResults } = useResults();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<StyledBadge status="success" dot={hasResults}>
|
|
||||||
<BarChartOutlined style={defaultIconStyle} />
|
|
||||||
</StyledBadge>
|
|
||||||
);
|
|
||||||
}),
|
|
||||||
key: 'output',
|
|
||||||
title: 'Результаты',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
Component: Validation,
|
|
||||||
Icon: observer(() => {
|
|
||||||
const { hasErrors } = useErrors();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<StyledBadge status="error" dot={hasErrors}>
|
|
||||||
<WarningOutlined style={defaultIconStyle} />
|
|
||||||
</StyledBadge>
|
|
||||||
);
|
|
||||||
}),
|
|
||||||
key: 'errors',
|
|
||||||
title: 'Ошибки',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
type ContentProps = {
|
|
||||||
readonly initHooks: () => void;
|
|
||||||
readonly title: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
export function Content({ initHooks, title }: ContentProps) {
|
|
||||||
initHooks();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<Head>
|
|
||||||
<title>{getPageTitle(title)}</title>
|
|
||||||
</Head>
|
|
||||||
<Notification />
|
|
||||||
<Media lessThan="laptop">
|
|
||||||
<NavigationProvider>
|
|
||||||
<Tabs tabs={tabs} />
|
|
||||||
<NavigationBar />
|
|
||||||
</NavigationProvider>
|
|
||||||
</Media>
|
|
||||||
<Media greaterThanOrEqual="laptop">
|
|
||||||
<Layout>
|
|
||||||
<Form />
|
|
||||||
<Settings />
|
|
||||||
<Output />
|
|
||||||
</Layout>
|
|
||||||
</Media>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -5,13 +5,12 @@ function handleRetry() {
|
|||||||
window.location.reload();
|
window.location.reload();
|
||||||
}
|
}
|
||||||
|
|
||||||
const RetryButton = <Button onClick={handleRetry}>Попробовать еще раз</Button>;
|
function openSupport() {
|
||||||
|
window.open('https://help.evoleasing.ru', '_blank').focus();
|
||||||
|
}
|
||||||
|
|
||||||
const SupportButton = (
|
const RetryButton = <Button action={handleRetry} text="Попробовать еще раз" />;
|
||||||
<Button rel="noopener" target="_blank" href="https://help.evoleasing.ru">
|
const SupportButton = <Button action={openSupport} text="Обратиться в поддержку" />;
|
||||||
Обратиться в поддержку
|
|
||||||
</Button>
|
|
||||||
);
|
|
||||||
|
|
||||||
export function CRMError({ error }) {
|
export function CRMError({ error }) {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@ -1,20 +0,0 @@
|
|||||||
import getColors from '@/styles/colors';
|
|
||||||
import styled from 'styled-components';
|
|
||||||
import { Result } from 'ui/elements';
|
|
||||||
import { LoadingOutlined } from 'ui/elements/icons';
|
|
||||||
|
|
||||||
const colors = getColors();
|
|
||||||
|
|
||||||
const Title = styled.span`
|
|
||||||
font-size: 1.25rem;
|
|
||||||
color: rgba(0, 0, 0, 0.88);
|
|
||||||
`;
|
|
||||||
|
|
||||||
export function Loading() {
|
|
||||||
return (
|
|
||||||
<Result
|
|
||||||
icon={<LoadingOutlined style={{ color: colors.COLOR_PRIMARY, fontSize: '60px' }} />}
|
|
||||||
title={<Title>Загрузка...</Title>}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -1,71 +0,0 @@
|
|||||||
/* eslint-disable import/no-mutable-exports */
|
|
||||||
import { ERROR_KEYS } from '@/@types/errors';
|
|
||||||
import { Media } from '@/styles/media';
|
|
||||||
import { getDevice } from '@/utils/device';
|
|
||||||
import type { MessageInstance } from 'antd/es/message/interface';
|
|
||||||
import type { NotificationInstance } from 'antd/es/notification/interface';
|
|
||||||
import type { ReactNode } from 'react';
|
|
||||||
import { message as antdMessage, notification as antdNotification } from 'ui/elements';
|
|
||||||
|
|
||||||
export let message: Readonly<MessageInstance>;
|
|
||||||
export let notification: Readonly<NotificationInstance>;
|
|
||||||
|
|
||||||
function createWrapper<T extends NotificationInstance, M extends MessageInstance>(
|
|
||||||
notificationObj: T,
|
|
||||||
messageObj: M
|
|
||||||
): T {
|
|
||||||
const handler: ProxyHandler<T> = {
|
|
||||||
get(target, prop, receiver) {
|
|
||||||
const notificationMethod = target[prop as keyof T];
|
|
||||||
const messageMethod = messageObj[prop as keyof M];
|
|
||||||
|
|
||||||
if (typeof notificationMethod === 'function' && typeof messageMethod === 'function') {
|
|
||||||
return function (...args: any[]) {
|
|
||||||
const device = getDevice();
|
|
||||||
|
|
||||||
if (device?.isMobile) {
|
|
||||||
if (typeof args[0] === 'object') {
|
|
||||||
if (ERROR_KEYS.includes(args[0].key)) return;
|
|
||||||
args[0].content = args[0].description || args[0].message;
|
|
||||||
}
|
|
||||||
|
|
||||||
messageMethod.apply(messageObj, args);
|
|
||||||
}
|
|
||||||
|
|
||||||
notificationMethod.apply(target, args);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return Reflect.get(target, prop, receiver);
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
return new Proxy(notificationObj, handler);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function Notification({ children }: { readonly children?: ReactNode }) {
|
|
||||||
const device = getDevice();
|
|
||||||
|
|
||||||
const [messageApi, messageContextHolder] = antdMessage.useMessage({
|
|
||||||
duration: device?.isMobile ? 1.5 : 1.2,
|
|
||||||
maxCount: 3,
|
|
||||||
top: 70,
|
|
||||||
});
|
|
||||||
|
|
||||||
const [notificationApi, notificationContextHolder] = antdNotification.useNotification({
|
|
||||||
maxCount: 3,
|
|
||||||
placement: 'bottomRight',
|
|
||||||
stack: { threshold: 1 },
|
|
||||||
});
|
|
||||||
|
|
||||||
message = messageApi;
|
|
||||||
notification = createWrapper(notificationApi, messageApi);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
{messageContextHolder}
|
|
||||||
<Media greaterThanOrEqual="laptop">{notificationContextHolder}</Media>
|
|
||||||
{children}
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
export * from './Error';
|
|
||||||
export * from './Loading';
|
|
||||||
export * from './Notification';
|
|
||||||
@ -10,10 +10,9 @@ const UserText = styled.span`
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-size: 0.55rem;
|
font-size: 0.5rem;
|
||||||
font-family: 'Montserrat';
|
font-family: 'Montserrat';
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
line-height: 1;
|
|
||||||
|
|
||||||
${min('laptop')} {
|
${min('laptop')} {
|
||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
@ -36,7 +35,6 @@ const Logout = styled.a`
|
|||||||
font-size: 0.45rem;
|
font-size: 0.45rem;
|
||||||
font-family: 'Montserrat';
|
font-family: 'Montserrat';
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
margin-top: 4px;
|
|
||||||
|
|
||||||
${min('laptop')} {
|
${min('laptop')} {
|
||||||
font-size: 0.55rem;
|
font-size: 0.55rem;
|
||||||
@ -45,7 +43,13 @@ const Logout = styled.a`
|
|||||||
|
|
||||||
function Auth() {
|
function Auth() {
|
||||||
return (
|
return (
|
||||||
<Flex flexDirection="column" alignItems="flex-end" justifyContent="flex-start" height="100%">
|
<Flex
|
||||||
|
flexDirection="column"
|
||||||
|
alignItems="flex-end"
|
||||||
|
alignSelf={['flex-start']}
|
||||||
|
justifyContent="space-between"
|
||||||
|
height="100%"
|
||||||
|
>
|
||||||
<User />
|
<User />
|
||||||
<Logout href="/logout">Выход</Logout>
|
<Logout href="/logout">Выход</Logout>
|
||||||
</Flex>
|
</Flex>
|
||||||
|
|||||||
@ -7,7 +7,6 @@ import { Flex } from 'ui/grid';
|
|||||||
const HeaderContent = styled(Flex)`
|
const HeaderContent = styled(Flex)`
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 14px 12px;
|
|
||||||
|
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
90deg,
|
90deg,
|
||||||
@ -16,7 +15,9 @@ const HeaderContent = styled(Flex)`
|
|||||||
var(--color-tertiarty) 100%
|
var(--color-tertiarty) 100%
|
||||||
);
|
);
|
||||||
|
|
||||||
|
padding: 10px 12px;
|
||||||
${min('laptop')} {
|
${min('laptop')} {
|
||||||
|
padding: 10px 12px;
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user