Compare commits
21 Commits
dev
...
experiment
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
357bb1e3a3 | ||
|
|
2defb4f79b | ||
|
|
f86744de70 | ||
|
|
3b559561d7 | ||
|
|
6c5edfefae | ||
|
|
7a91f870fa | ||
|
|
5a73a9c8a3 | ||
|
|
0d2682cc27 | ||
|
|
75aa3217b3 | ||
|
|
7fe8de83c8 | ||
|
|
5748bb9ffd | ||
|
|
9ae996b1ba | ||
|
|
fc3610079d | ||
|
|
86c9bdb113 | ||
|
|
f93426767c | ||
|
|
581410138c | ||
|
|
f3c4c33a54 | ||
|
|
0ccc0e376c | ||
|
|
52784fb910 | ||
|
|
b36f9772ec | ||
|
|
7b401c2365 |
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=
|
||||||
|
|
||||||
|
####### USERS ########
|
||||||
|
USERS_SUPER=["akalinina","vchikalkin"]
|
||||||
|
|
||||||
|
####### URLS ########
|
||||||
|
URL_GET_USER_DIRECT=
|
||||||
|
URL_CRM_GRAPHQL_DIRECT=
|
||||||
|
URL_CORE_FINGAP_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
|
|
||||||
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
. "$(dirname -- "$0")/_/husky.sh"
|
. "$(dirname -- "$0")/_/husky.sh"
|
||||||
|
|
||||||
npx lint-staged --concurrent false
|
yarn precommit
|
||||||
|
|||||||
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;
|
|
||||||
@ -3,46 +3,38 @@ import { useStore } from '@/stores/hooks';
|
|||||||
import { toJS } from 'mobx';
|
import { toJS } from 'mobx';
|
||||||
import { observer } from 'mobx-react-lite';
|
import { observer } from 'mobx-react-lite';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import { Alert, Table } from 'ui/elements';
|
import { Flex } from 'ui';
|
||||||
import { Flex } from 'ui/grid';
|
import Alert from 'ui/elements/Alert';
|
||||||
|
import Table from 'ui/elements/Table';
|
||||||
|
|
||||||
const Grid = styled(Flex)`
|
const Grid = styled(Flex)`
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Validation = observer(() => {
|
const Validation = observer(() => {
|
||||||
const { $tables, $process } = useStore();
|
const store = useStore();
|
||||||
|
|
||||||
const errors = $tables.fingap.validation.getErrors();
|
const errors = store.$tables.fingap.validation.getErrors();
|
||||||
|
|
||||||
if (errors?.length) {
|
if (errors?.length) {
|
||||||
return (
|
return <Alert type="error" banner message={errors[0].message} />;
|
||||||
<Alert
|
|
||||||
type={$process.has('Unlimited') ? 'warning' : 'error'}
|
|
||||||
banner
|
|
||||||
message={errors[0].message}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
});
|
});
|
||||||
|
|
||||||
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 { formatter, parser } from 'tools/number';
|
||||||
import { parser } from 'tools/number';
|
import InputNumber from 'ui/elements/InputNumber';
|
||||||
import { InputNumber, Select } from 'ui/elements';
|
import Select from 'ui/elements/Select';
|
||||||
import { CheckOutlined } from 'ui/elements/icons';
|
|
||||||
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,40 +31,28 @@ 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');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Component
|
<Component
|
||||||
addonAfter="₽"
|
addonAfter="₽"
|
||||||
formatter={createFormatter({ minimumFractionDigits: 2, maximumFractionDigits: 2 })}
|
formatter={formatter}
|
||||||
max={MAX_INSURANCE}
|
max={MAX_INSURANCE}
|
||||||
min={0}
|
min={0}
|
||||||
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',
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@ -2,8 +2,9 @@ import { columns } from './config';
|
|||||||
import { useStore } from '@/stores/hooks';
|
import { useStore } from '@/stores/hooks';
|
||||||
import { observer } from 'mobx-react-lite';
|
import { observer } from 'mobx-react-lite';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import { Alert, Table } from 'ui/elements';
|
import { Flex } from 'ui';
|
||||||
import { Flex } from 'ui/grid';
|
import Alert from 'ui/elements/Alert';
|
||||||
|
import Table from 'ui/elements/Table';
|
||||||
|
|
||||||
const Grid = styled(Flex)`
|
const Grid = styled(Flex)`
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -16,18 +17,12 @@ const TableWrapper = styled.div`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const Validation = observer(() => {
|
const Validation = observer(() => {
|
||||||
const { $tables, $process } = useStore();
|
const store = useStore();
|
||||||
|
|
||||||
const errors = $tables.insurance.validation.getErrors();
|
const errors = store.$tables.insurance.validation.getErrors();
|
||||||
|
|
||||||
if (errors?.length) {
|
if (errors?.length) {
|
||||||
return (
|
return <Alert type="error" banner message={errors[0].message} />;
|
||||||
<Alert
|
|
||||||
type={$process.has('Unlimited') ? 'warning' : 'error'}
|
|
||||||
banner
|
|
||||||
message={errors[0].message}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
@ -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';
|
||||||
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>
|
||||||
|
|||||||
@ -8,8 +8,8 @@ export const rows: FormTabRows = [
|
|||||||
[['tbxLeaseObjectPrice', 'tbxVATInLeaseObjectPrice', 'tbxLeaseObjectPriceWthtVAT']],
|
[['tbxLeaseObjectPrice', 'tbxVATInLeaseObjectPrice', 'tbxLeaseObjectPriceWthtVAT']],
|
||||||
[['selectSupplierCurrency', 'tbxSupplierDiscountRub', 'tbxSupplierDiscountPerc']],
|
[['selectSupplierCurrency', 'tbxSupplierDiscountRub', 'tbxSupplierDiscountPerc']],
|
||||||
[['tbxFirstPaymentPerc', 'tbxFirstPaymentRub']],
|
[['tbxFirstPaymentPerc', 'tbxFirstPaymentRub']],
|
||||||
[['tbxLeasingPeriod', 'tbxSaleBonus']],
|
[['tbxLeasingPeriod', 'tbxSaleBonus', 'tbxRedemptionPaymentSum']],
|
||||||
[['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 {
|
||||||
|
|||||||
@ -2,7 +2,7 @@ import elementsRender from '../../config/elements-render';
|
|||||||
import { elements } from './config';
|
import { elements } from './config';
|
||||||
import { useStore } from '@/stores/hooks';
|
import { useStore } from '@/stores/hooks';
|
||||||
import { observer } from 'mobx-react-lite';
|
import { observer } from 'mobx-react-lite';
|
||||||
import { Flex } from 'ui/grid';
|
import { Flex } from 'ui';
|
||||||
|
|
||||||
function PaymentsParams() {
|
function PaymentsParams() {
|
||||||
const renderedElements = elements.map((elementName) => {
|
const renderedElements = elements.map((elementName) => {
|
||||||
|
|||||||
@ -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/InputNumber';
|
||||||
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,10 @@ 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 from 'ui/elements/Alert';
|
||||||
|
import Table from 'ui/elements/Table';
|
||||||
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;
|
||||||
@ -31,26 +30,18 @@ const TablesGroupGrid = styled(Box)`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const Validation = observer(() => {
|
const Validation = observer(() => {
|
||||||
const { $tables, $process } = useStore();
|
const store = useStore();
|
||||||
const { payments } = $tables;
|
const { payments } = store.$tables;
|
||||||
|
|
||||||
const errors = payments.validation.getErrors();
|
const errors = payments.validation.getErrors();
|
||||||
|
|
||||||
if (errors?.length) {
|
if (errors?.length) {
|
||||||
return (
|
return <Alert type="error" banner message={errors[0].message} />;
|
||||||
<Alert
|
|
||||||
type={$process.has('Unlimited') ? 'warning' : 'error'}
|
|
||||||
banner
|
|
||||||
message={errors[0].message}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
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 +50,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 (
|
||||||
|
|
||||||
return useMemo(
|
|
||||||
() => (
|
|
||||||
<TableWrapper>
|
<TableWrapper>
|
||||||
<Table
|
<Table size="small" columns={columns} dataSource={dataSource} pagination={false} />
|
||||||
size="small"
|
|
||||||
columns={columns.filter((x) => ['num', mode].includes(x.key))}
|
|
||||||
dataSource={dataSource}
|
|
||||||
pagination={false}
|
|
||||||
/>
|
|
||||||
</TableWrapper>
|
</TableWrapper>
|
||||||
),
|
|
||||||
[dataSource, mode]
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -97,36 +79,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 />
|
||||||
<Mode setMode={debouncedSetMode} />
|
|
||||||
<TablesGroup />
|
<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 {
|
||||||
|
|||||||
@ -1,14 +0,0 @@
|
|||||||
import type { FormTabRows } from '../../lib/render-rows';
|
|
||||||
|
|
||||||
export const id = 'unlimited';
|
|
||||||
export const title = 'Без ограничений';
|
|
||||||
|
|
||||||
export const rows: FormTabRows = [
|
|
||||||
[['cbxDisableChecks', 'selectUser']],
|
|
||||||
[['selectTarif', 'tbxCreditRate', 'selectRate']],
|
|
||||||
[['tbxMinPriceChange', 'tbxMaxPriceChange']],
|
|
||||||
[['tbxImporterRewardPerc', 'tbxImporterRewardRub']],
|
|
||||||
[['tbxBonusCoefficient', 'tbxComissionRub', 'tbxComissionPerc']],
|
|
||||||
[['cbxSupplierFinancing', 'cbxPartialVAT', 'cbxFloatingRate']],
|
|
||||||
[['cbxQuotePriceWithFullVAT']],
|
|
||||||
];
|
|
||||||
@ -1,12 +0,0 @@
|
|||||||
import renderFormRows from '../../lib/render-rows';
|
|
||||||
import { id, rows, title } from './config';
|
|
||||||
|
|
||||||
function Unlimited() {
|
|
||||||
return renderFormRows(rows);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default {
|
|
||||||
Component: Unlimited,
|
|
||||||
id,
|
|
||||||
title,
|
|
||||||
};
|
|
||||||
@ -1,30 +1,16 @@
|
|||||||
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';
|
||||||
import Payments from './Payments';
|
import Payments from './Payments';
|
||||||
import SupplierAgent from './SupplierAgent';
|
import SupplierAgent from './SupplierAgent';
|
||||||
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/layout/Tabs';
|
||||||
|
|
||||||
const formTabs = [
|
const formTabs = [Leasing, Payments, LeasingObject, SupplierAgent, Insurance, AddProduct, CreateKP];
|
||||||
Leasing,
|
|
||||||
Payments,
|
|
||||||
LeasingObject,
|
|
||||||
SupplierAgent,
|
|
||||||
Insurance,
|
|
||||||
ELT,
|
|
||||||
AddProduct,
|
|
||||||
CreateKP,
|
|
||||||
Unlimited,
|
|
||||||
];
|
|
||||||
|
|
||||||
const Wrapper = styled(Background)`
|
const Wrapper = styled(Background)`
|
||||||
padding: 4px 6px;
|
padding: 4px 6px;
|
||||||
@ -46,16 +32,11 @@ const ComponentWrapper = styled.div`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const Form = memo(() => {
|
function Form() {
|
||||||
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.map(({ id, title, Component }) => (
|
||||||
<Tabs.TabPane tab={title} key={id}>
|
<Tabs.TabPane tab={title} key={id}>
|
||||||
<ComponentWrapper>
|
<ComponentWrapper>
|
||||||
<Component />
|
<Component />
|
||||||
@ -65,4 +46,6 @@ export const Form = memo(() => {
|
|||||||
</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,20 +0,0 @@
|
|||||||
import { min } from '@/styles/mq';
|
|
||||||
import styled from 'styled-components';
|
|
||||||
import { Box } from 'ui/grid';
|
|
||||||
|
|
||||||
export const Layout = styled(Box)`
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 10px;
|
|
||||||
|
|
||||||
${min('laptop')} {
|
|
||||||
display: grid;
|
|
||||||
align-items: flex-start;
|
|
||||||
grid-template-columns: 2fr 1fr;
|
|
||||||
}
|
|
||||||
|
|
||||||
${min('desktop')} {
|
|
||||||
grid-template-columns: 2fr 1fr 1.5fr;
|
|
||||||
/* margin: 8px 5%; */
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
@ -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: 'Таблица платежей',
|
|
||||||
};
|
|
||||||
@ -1,102 +0,0 @@
|
|||||||
import type { ResultValues } from '@/stores/results/types';
|
|
||||||
|
|
||||||
export const id = 'output';
|
|
||||||
export const title = 'Результаты';
|
|
||||||
|
|
||||||
export const titles: Record<keyof ResultValues, string> = {
|
|
||||||
_resultContractEconomy: 'Экономика',
|
|
||||||
_resultContractEconomyWithVAT: 'Экономика, с НДС',
|
|
||||||
_resultPi: 'PI',
|
|
||||||
_resultPiRepayment: 'PI для досрочки',
|
|
||||||
_resultSumCredit: 'Сумма кредита',
|
|
||||||
_resultSumCreditPayment: 'Сумма платежей по кредиту',
|
|
||||||
_resultVatRecoverable: 'НДС к возмещению',
|
|
||||||
resultAB_FL: 'АВ ФЛ, без НДФЛ.',
|
|
||||||
resultAB_UL: 'АВ ЮЛ, с НДС.',
|
|
||||||
resultBonusDopProd: 'Бонус МПЛ за доп.продукты, без НДФЛ',
|
|
||||||
resultBonusMPL: 'Бонус МПЛ за лизинг, без НДФЛ',
|
|
||||||
resultBonusSafeFinance: 'Бонус за Safe Finance без НДФЛ',
|
|
||||||
resultDopMPLLeasing: 'Доп.бонус МПЛ за лизинг, без НДФЛ',
|
|
||||||
resultDopProdSum: 'Общая сумма доп.продуктов',
|
|
||||||
resultFirstPayment: 'Первый платеж',
|
|
||||||
resultFirstPaymentRiskPolicy: 'Первый платеж по риск политике, %',
|
|
||||||
resultIRRGraphPerc: 'IRR по графику клиента, %',
|
|
||||||
resultIRRNominalPerc: 'IRR (номинал), %',
|
|
||||||
resultInsKasko: 'КАСКО, НС, ДГО в графике',
|
|
||||||
resultInsOsago: 'ОСАГО в графике',
|
|
||||||
resultLastPayment: 'Последний платеж',
|
|
||||||
resultParticipationAmount: 'Сумма участия (для принятия решения)',
|
|
||||||
resultPlPrice: 'Стоимость ПЛ с НДС',
|
|
||||||
resultPriceUpPr: 'Удорожание, год',
|
|
||||||
resultTerm: 'Срок, мес.',
|
|
||||||
resultTotalGraphwithNDS: 'Итого по графику, с НДС',
|
|
||||||
};
|
|
||||||
|
|
||||||
const moneyFormatter = Intl.NumberFormat('ru', {
|
|
||||||
currency: 'RUB',
|
|
||||||
style: 'currency',
|
|
||||||
}).format;
|
|
||||||
|
|
||||||
const percentFormatter = Intl.NumberFormat('ru', {
|
|
||||||
maximumFractionDigits: 2,
|
|
||||||
minimumFractionDigits: 2,
|
|
||||||
style: 'percent',
|
|
||||||
}).format;
|
|
||||||
|
|
||||||
export const formatters = {
|
|
||||||
_resultContractEconomy: moneyFormatter,
|
|
||||||
_resultContractEconomyWithVAT: moneyFormatter,
|
|
||||||
_resultPi: percentFormatter,
|
|
||||||
_resultPiRepayment: percentFormatter,
|
|
||||||
_resultSumCredit: moneyFormatter,
|
|
||||||
_resultSumCreditPayment: moneyFormatter,
|
|
||||||
_resultVatRecoverable: moneyFormatter,
|
|
||||||
resultAB_FL: moneyFormatter,
|
|
||||||
resultAB_UL: moneyFormatter,
|
|
||||||
resultBonusDopProd: moneyFormatter,
|
|
||||||
resultBonusMPL: moneyFormatter,
|
|
||||||
resultBonusSafeFinance: moneyFormatter,
|
|
||||||
resultDopMPLLeasing: moneyFormatter,
|
|
||||||
resultDopProdSum: moneyFormatter,
|
|
||||||
resultFirstPayment: moneyFormatter,
|
|
||||||
resultFirstPaymentRiskPolicy: percentFormatter,
|
|
||||||
resultIRRGraphPerc: percentFormatter,
|
|
||||||
resultIRRNominalPerc: percentFormatter,
|
|
||||||
resultInsKasko: moneyFormatter,
|
|
||||||
resultInsOsago: moneyFormatter,
|
|
||||||
resultLastPayment: moneyFormatter,
|
|
||||||
resultParticipationAmount: moneyFormatter,
|
|
||||||
resultPlPrice: moneyFormatter,
|
|
||||||
resultPriceUpPr: percentFormatter,
|
|
||||||
resultTerm: Intl.NumberFormat('ru').format,
|
|
||||||
resultTotalGraphwithNDS: moneyFormatter,
|
|
||||||
};
|
|
||||||
|
|
||||||
export const elements: Array<keyof ResultValues> = [
|
|
||||||
'_resultContractEconomy',
|
|
||||||
'_resultContractEconomyWithVAT',
|
|
||||||
'_resultPi',
|
|
||||||
'_resultPiRepayment',
|
|
||||||
'_resultSumCredit',
|
|
||||||
'_resultSumCreditPayment',
|
|
||||||
'_resultVatRecoverable',
|
|
||||||
'resultTotalGraphwithNDS',
|
|
||||||
'resultPlPrice',
|
|
||||||
'resultPriceUpPr',
|
|
||||||
'resultIRRGraphPerc',
|
|
||||||
'resultIRRNominalPerc',
|
|
||||||
'resultInsKasko',
|
|
||||||
'resultInsOsago',
|
|
||||||
'resultDopProdSum',
|
|
||||||
'resultFirstPayment',
|
|
||||||
'resultLastPayment',
|
|
||||||
'resultFirstPaymentRiskPolicy',
|
|
||||||
'resultTerm',
|
|
||||||
'resultAB_FL',
|
|
||||||
'resultAB_UL',
|
|
||||||
'resultBonusMPL',
|
|
||||||
'resultDopMPLLeasing',
|
|
||||||
'resultBonusDopProd',
|
|
||||||
'resultBonusSafeFinance',
|
|
||||||
'resultParticipationAmount',
|
|
||||||
];
|
|
||||||
@ -1,55 +0,0 @@
|
|||||||
import { elements, formatters, id, title, titles } from './config';
|
|
||||||
import { Container, Head } from '@/Components/Layout/Element';
|
|
||||||
import { useStore } from '@/stores/hooks';
|
|
||||||
import { min } from '@/styles/mq';
|
|
||||||
import { toJS } from 'mobx';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import styled from 'styled-components';
|
|
||||||
import { Text } from 'ui/elements';
|
|
||||||
import { Box } from 'ui/grid';
|
|
||||||
|
|
||||||
const Grid = styled(Box)`
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: 1fr;
|
|
||||||
|
|
||||||
${min('tablet')} {
|
|
||||||
grid-template-columns: 1fr 1fr;
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
const Wrapper = styled.div`
|
|
||||||
margin-bottom: 18px;
|
|
||||||
`;
|
|
||||||
|
|
||||||
const Results = observer(() => {
|
|
||||||
const { $process, $results } = useStore();
|
|
||||||
|
|
||||||
const resultsValues = toJS($results.values);
|
|
||||||
// eslint-disable-next-line no-negated-condition
|
|
||||||
const values = !$process.has('Unlimited') ? elements.filter((x) => !x.startsWith('_')) : elements;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Grid>
|
|
||||||
{values.map((valueName) => {
|
|
||||||
const formatter = formatters[valueName];
|
|
||||||
const storeValue = resultsValues[valueName];
|
|
||||||
const value = formatter(storeValue);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Wrapper key={valueName}>
|
|
||||||
<Container key={valueName}>
|
|
||||||
<Head title={titles[valueName]} />
|
|
||||||
<Text>{value}</Text>
|
|
||||||
</Container>
|
|
||||||
</Wrapper>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</Grid>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
export default {
|
|
||||||
Component: Results,
|
|
||||||
id,
|
|
||||||
title,
|
|
||||||
};
|
|
||||||
@ -1,71 +0,0 @@
|
|||||||
import PaymentsTable from './PaymentsTable';
|
|
||||||
import Results from './Results';
|
|
||||||
import Validation from './Validation';
|
|
||||||
import Background from '@/Components/Layout/Background';
|
|
||||||
import { useErrors, useStore } from '@/stores/hooks';
|
|
||||||
import { min } from '@/styles/mq';
|
|
||||||
import { observer } from 'mobx-react-lite';
|
|
||||||
import { useEffect, useState } from 'react';
|
|
||||||
import styled from 'styled-components';
|
|
||||||
import { Badge, Tabs } from 'ui/elements';
|
|
||||||
|
|
||||||
const outputTabs = [PaymentsTable, Results, Validation];
|
|
||||||
const items = outputTabs.map(({ Component, id, title }) => {
|
|
||||||
let Label = () => title;
|
|
||||||
|
|
||||||
if (id === 'validation') {
|
|
||||||
Label = observer(() => {
|
|
||||||
const { hasErrors } = useErrors();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Badge offset={[5, 0]} dot={hasErrors}>
|
|
||||||
{title}
|
|
||||||
</Badge>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
children: <Component />,
|
|
||||||
key: id,
|
|
||||||
label: <Label />,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
const Wrapper = styled(Background)`
|
|
||||||
padding: 4px 10px;
|
|
||||||
min-height: 200px;
|
|
||||||
|
|
||||||
${min('laptop')} {
|
|
||||||
padding: 4px 18px;
|
|
||||||
min-height: 790px;
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
export const Output = observer(({ tabs }) => {
|
|
||||||
const { $results } = useStore();
|
|
||||||
const [activeKey, setActiveKey] = useState(undefined);
|
|
||||||
const { hasErrors } = useErrors();
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if ($results.payments.length > 0) {
|
|
||||||
setActiveKey('payments-table');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!tabs && hasErrors) {
|
|
||||||
setActiveKey('validation');
|
|
||||||
}
|
|
||||||
}, [$results.payments.length, hasErrors, tabs]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Wrapper>
|
|
||||||
<Tabs
|
|
||||||
items={tabs ? items.filter((x) => x.key !== 'validation') : items}
|
|
||||||
activeKey={activeKey}
|
|
||||||
onChange={(key) => {
|
|
||||||
setActiveKey(key);
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</Wrapper>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
@ -2,61 +2,17 @@ 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'], defaultRowStyle],
|
||||||
['btnCalculate'],
|
|
||||||
{
|
|
||||||
gridTemplateColumns: '1fr',
|
|
||||||
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>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
@ -1,39 +1,24 @@
|
|||||||
import type { Elements } from '../config/map/actions';
|
import type { Elements } from '../config/map/actions';
|
||||||
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
|
||||||
) {
|
) {
|
||||||
return observer((props: T) => {
|
return observer((props: T) => {
|
||||||
const status = useStatus(elementName);
|
const status = useStatus(elementName);
|
||||||
|
|
||||||
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())}
|
||||||
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,34 +6,32 @@ 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
|
||||||
) {
|
) {
|
||||||
return observer((props: T) => {
|
return observer((props: T) => {
|
||||||
const [value, setValue] = useStoreValue(valueName);
|
const [value, setValue] = useStoreValue(valueName);
|
||||||
const status = useStatus(elementName);
|
const status = useStatus(elementName);
|
||||||
const { validateStatus, help } = useValidation(elementName);
|
const { isValid, help } = useValidation(elementName);
|
||||||
const options = useOptions(elementName);
|
const options = useOptions(elementName);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Form.Item help={help} validateStatus={validateStatus}>
|
|
||||||
<Component
|
<Component
|
||||||
disabled={status === 'Disabled'}
|
help={help}
|
||||||
loading={status === 'Loading'}
|
isValid={isValid}
|
||||||
options={options}
|
options={options}
|
||||||
onChange={setValue}
|
setValue={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,58 +4,31 @@ 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
|
||||||
) {
|
) {
|
||||||
return observer((props: T) => {
|
return observer((props: T) => {
|
||||||
const [value, setValue] = useStoreValue(valueName);
|
const [value, setValue] = useStoreValue(valueName);
|
||||||
const status = useStatus(elementName);
|
const status = useStatus(elementName);
|
||||||
const { validateStatus, help } = useValidation(elementName);
|
const { isValid, help } = useValidation(elementName);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Form.Item help={help} validateStatus={validateStatus}>
|
|
||||||
<Component
|
<Component
|
||||||
onChange={(e: ChangeEvent<HTMLInputElement>) => {
|
help={help}
|
||||||
setValue(e.target.value);
|
isValid={isValid}
|
||||||
}}
|
setValue={setValue}
|
||||||
disabled={status === 'Disabled'}
|
status={status}
|
||||||
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,
|
||||||
@ -130,13 +131,6 @@ const components = wrapComponentsMap({
|
|||||||
tbxBonusCoefficient: e.InputNumber,
|
tbxBonusCoefficient: e.InputNumber,
|
||||||
selectLeasingWithoutKasko: e.Select,
|
selectLeasingWithoutKasko: e.Select,
|
||||||
tbxVIN: e.Input,
|
tbxVIN: e.Input,
|
||||||
selectUser: e.Select,
|
|
||||||
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,
|
||||||
@ -148,7 +142,6 @@ const components = wrapComponentsMap({
|
|||||||
|
|
||||||
/** Button Elements */
|
/** Button Elements */
|
||||||
btnCreateKP: e.Button,
|
btnCreateKP: e.Button,
|
||||||
btnCreateKPMini: e.Button,
|
|
||||||
btnCalculate: e.Button,
|
btnCalculate: e.Button,
|
||||||
|
|
||||||
/** Link Elements */
|
/** Link Elements */
|
||||||
|
|||||||
@ -1,13 +1,11 @@
|
|||||||
|
/* 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';
|
||||||
import { MAX_FRANCHISE, MAX_LEASING_PERIOD } from '@/constants/values';
|
import { MAX_FRANCHISE, MAX_LEASING_PERIOD } from '@/constants/values';
|
||||||
import dayjs from 'dayjs';
|
import dayjs from 'dayjs';
|
||||||
import { parser } from 'tools/number';
|
import { formatter, formatterExtra, parser } from 'tools/number';
|
||||||
import { DownloadOutlined, PlusOutlined } from 'ui/elements/icons';
|
import { DownloadOutlined } from 'ui/elements/icons';
|
||||||
import { createFormatter } from 'ui/elements/InputNumber';
|
|
||||||
|
|
||||||
const formatter = createFormatter({ minimumFractionDigits: 2, maximumFractionDigits: 2 });
|
|
||||||
|
|
||||||
const props: Partial<ElementsProps> = {
|
const props: Partial<ElementsProps> = {
|
||||||
tbxLeaseObjectPrice: {
|
tbxLeaseObjectPrice: {
|
||||||
@ -18,9 +16,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: CurrencyAddon,
|
addonAfter: CurrencyAddon,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxLeaseObjectPriceWthtVAT: {
|
tbxLeaseObjectPriceWthtVAT: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -30,9 +25,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: CurrencyAddon,
|
addonAfter: CurrencyAddon,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxVATInLeaseObjectPrice: {
|
tbxVATInLeaseObjectPrice: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -42,18 +34,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 +49,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: CurrencyAddon,
|
addonAfter: CurrencyAddon,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxSupplierDiscountPerc: {
|
tbxSupplierDiscountPerc: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -73,9 +56,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
precision: 2,
|
precision: 2,
|
||||||
|
|
||||||
addonAfter: '%',
|
addonAfter: '%',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
radioBalanceHolder: {
|
radioBalanceHolder: {
|
||||||
optionType: 'button',
|
optionType: 'button',
|
||||||
@ -88,9 +68,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
precision: 2,
|
precision: 2,
|
||||||
|
|
||||||
addonAfter: '%',
|
addonAfter: '%',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
radioLastPaymentRule: {
|
radioLastPaymentRule: {
|
||||||
block: true,
|
block: true,
|
||||||
@ -100,11 +77,8 @@ const props: Partial<ElementsProps> = {
|
|||||||
max: 50,
|
max: 50,
|
||||||
precision: 4,
|
precision: 4,
|
||||||
parser,
|
parser,
|
||||||
formatter: createFormatter({ minimumFractionDigits: 4, maximumFractionDigits: 4 }),
|
formatter: formatterExtra,
|
||||||
addonAfter: '%',
|
addonAfter: '%',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxFirstPaymentRub: {
|
tbxFirstPaymentRub: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -114,9 +88,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxLastPaymentPerc: {
|
tbxLastPaymentPerc: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -124,11 +95,8 @@ const props: Partial<ElementsProps> = {
|
|||||||
step: 1,
|
step: 1,
|
||||||
precision: 6,
|
precision: 6,
|
||||||
parser,
|
parser,
|
||||||
formatter: createFormatter({ minimumFractionDigits: 6, maximumFractionDigits: 6 }),
|
formatter: formatterExtra,
|
||||||
addonAfter: '%',
|
addonAfter: '%',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxLastPaymentRub: {
|
tbxLastPaymentRub: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -138,9 +106,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxRedemptionPaymentSum: {
|
tbxRedemptionPaymentSum: {
|
||||||
min: 1000,
|
min: 1000,
|
||||||
@ -150,55 +115,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 +151,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selectLeaseObjectType: {
|
selectLeaseObjectType: {
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
@ -231,9 +172,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 +180,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 +196,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: 'л.с.',
|
addonAfter: 'л.с.',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxEngineVolume: {
|
tbxEngineVolume: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -271,11 +203,8 @@ const props: Partial<ElementsProps> = {
|
|||||||
step: 0.5,
|
step: 0.5,
|
||||||
precision: 4,
|
precision: 4,
|
||||||
parser,
|
parser,
|
||||||
formatter: createFormatter({ minimumFractionDigits: 4, maximumFractionDigits: 4 }),
|
formatter: formatterExtra,
|
||||||
addonAfter: 'л',
|
addonAfter: 'л',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxMaxMass: {
|
tbxMaxMass: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -284,18 +213,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 +226,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: 'км/ч',
|
addonAfter: 'км/ч',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selectDealer: {
|
selectDealer: {
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
@ -316,54 +236,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 +275,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,
|
||||||
@ -403,58 +296,34 @@ const props: Partial<ElementsProps> = {
|
|||||||
optionType: 'button',
|
optionType: 'button',
|
||||||
buttonStyle: 'solid',
|
buttonStyle: 'solid',
|
||||||
},
|
},
|
||||||
btnCalculate: {
|
|
||||||
children: 'Рассчитать график',
|
|
||||||
type: 'primary',
|
|
||||||
block: true,
|
|
||||||
},
|
|
||||||
btnCreateKP: {
|
btnCreateKP: {
|
||||||
type: 'primary',
|
type: 'primary',
|
||||||
children: 'Создать КП',
|
text: 'Создать КП',
|
||||||
icon: <PlusOutlined rev="" />,
|
|
||||||
},
|
|
||||||
btnCreateKPMini: {
|
|
||||||
children: '',
|
|
||||||
type: 'primary',
|
|
||||||
icon: <PlusOutlined rev="" />,
|
|
||||||
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 +332,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
precision: 2,
|
precision: 2,
|
||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selectLead: {
|
selectLead: {
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
@ -479,42 +345,35 @@ const props: Partial<ElementsProps> = {
|
|||||||
showSearch: true,
|
showSearch: true,
|
||||||
optionFilterProp: 'label',
|
optionFilterProp: 'label',
|
||||||
},
|
},
|
||||||
|
btnCalculate: {
|
||||||
|
text: 'Рассчитать график',
|
||||||
|
type: 'primary',
|
||||||
|
},
|
||||||
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: formatterExtra,
|
||||||
addonAfter: '%',
|
addonAfter: '%',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
},
|
||||||
|
linkDownloadKp: {
|
||||||
|
type: 'primary',
|
||||||
|
text: 'Скачать КП',
|
||||||
|
icon: <DownloadOutlined />,
|
||||||
},
|
},
|
||||||
tbxPi: {
|
|
||||||
min: -500,
|
|
||||||
max: 500,
|
|
||||||
step: 0.0001,
|
|
||||||
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 +382,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxVehicleTaxInYear: {
|
tbxVehicleTaxInYear: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -535,9 +391,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tbxVehicleTaxInLeasingPeriod: {
|
tbxVehicleTaxInLeasingPeriod: {
|
||||||
min: 0,
|
min: 0,
|
||||||
@ -547,9 +400,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
parser,
|
parser,
|
||||||
formatter,
|
formatter,
|
||||||
addonAfter: '₽',
|
addonAfter: '₽',
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selectObjectRegionRegistration: {
|
selectObjectRegionRegistration: {
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
@ -562,9 +412,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
formatter,
|
formatter,
|
||||||
readOnly: true,
|
readOnly: true,
|
||||||
controls: false,
|
controls: false,
|
||||||
style: {
|
|
||||||
width: '100%',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
selectLegalClientRegion: {
|
selectLegalClientRegion: {
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
@ -589,35 +436,6 @@ const props: Partial<ElementsProps> = {
|
|||||||
direction: 'vertical',
|
direction: 'vertical',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
selectUser: {
|
|
||||||
showSearch: true,
|
|
||||||
optionFilterProp: 'label',
|
|
||||||
},
|
|
||||||
tbxBonusCoefficient: {
|
|
||||||
min: 0,
|
|
||||||
max: 10,
|
|
||||||
step: 0.1,
|
|
||||||
precision: 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',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default props;
|
export default props;
|
||||||
|
|||||||
@ -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,131 +6,20 @@ 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';
|
||||||
import { Link, Tooltip } from 'ui/elements';
|
|
||||||
import { LoadingOutlined } from 'ui/elements/icons';
|
import { LoadingOutlined } from 'ui/elements/icons';
|
||||||
|
import Link from 'ui/elements/Link';
|
||||||
|
import Tooltip from 'ui/elements/Tooltip';
|
||||||
|
|
||||||
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 +59,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 +91,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 +109,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 +123,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 +180,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 +204,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';
|
||||||
@ -124,13 +125,6 @@ const titles: Record<ActionElements | ValuesElements, string> = {
|
|||||||
tbxBonusCoefficient: 'Коэффициент снижения бонуса',
|
tbxBonusCoefficient: 'Коэффициент снижения бонуса',
|
||||||
selectLeasingWithoutKasko: 'Лизинг без КАСКО',
|
selectLeasingWithoutKasko: 'Лизинг без КАСКО',
|
||||||
tbxVIN: 'VIN',
|
tbxVIN: 'VIN',
|
||||||
selectUser: 'Пользователь',
|
|
||||||
cbxSupplierFinancing: 'Финансирование поставщика',
|
|
||||||
tbxPi: 'PI',
|
|
||||||
cbxPartialVAT: 'Частичный НДС',
|
|
||||||
cbxFloatingRate: 'Плавающая ставка',
|
|
||||||
cbxQuotePriceWithFullVAT: 'Отображать Стоимость ПЛ с полным НДС',
|
|
||||||
cbxQuoteShowAcceptLimit: 'Отображать одобренный лимит',
|
|
||||||
|
|
||||||
/** Link Elements */
|
/** Link Elements */
|
||||||
linkDownloadKp: '',
|
linkDownloadKp: '',
|
||||||
@ -149,7 +143,6 @@ const titles: Record<ActionElements | ValuesElements, string> = {
|
|||||||
/** Action Elements */
|
/** Action Elements */
|
||||||
btnCalculate: '',
|
btnCalculate: '',
|
||||||
btnCreateKP: '',
|
btnCreateKP: '',
|
||||||
btnCreateKPMini: '',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default titles;
|
export default titles;
|
||||||
|
|||||||
@ -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,
|
||||||
@ -189,13 +162,6 @@ const types = wrapElementsTypes({
|
|||||||
tbxBonusCoefficient: t.Value,
|
tbxBonusCoefficient: t.Value,
|
||||||
selectLeasingWithoutKasko: t.Options,
|
selectLeasingWithoutKasko: t.Options,
|
||||||
tbxVIN: t.Value,
|
tbxVIN: t.Value,
|
||||||
selectUser: t.Options,
|
|
||||||
cbxSupplierFinancing: t.Switch,
|
|
||||||
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,
|
||||||
@ -205,13 +171,12 @@ const types = wrapElementsTypes({
|
|||||||
tbxSubsidySum: t.Readonly,
|
tbxSubsidySum: t.Readonly,
|
||||||
|
|
||||||
btnCreateKP: t.Action,
|
btnCreateKP: 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;
|
||||||
|
|||||||
@ -5,7 +5,6 @@ function wrapElementsMap<T extends Record<string, string>>(arg: T) {
|
|||||||
const elementsToActions = wrapElementsMap({
|
const elementsToActions = wrapElementsMap({
|
||||||
btnCalculate: 'calculate',
|
btnCalculate: 'calculate',
|
||||||
btnCreateKP: 'create-kp',
|
btnCreateKP: 'create-kp',
|
||||||
btnCreateKPMini: 'create-kp',
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default elementsToActions;
|
export default elementsToActions;
|
||||||
|
|||||||
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