Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Тестовое задание #41

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .eslint.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export default {
extends: [
"plugin:vue/vue3-recommended"
]
}
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["Vue.volar"]
}
117 changes: 2 additions & 115 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,115 +1,2 @@
<!-- title: Тестовое задание -->
<p>
<h1 align="center">Тестовое задание VueJS</h1>
<br>
</p>

> После пуша Vue в ваш репозиторий, сделайте задание в любой другой ветке и PR в основную.
> Подойдет как Vue2, так и Vue3

</br>


![IMAGE](image.png "Image")

Задача: сделать рабочую страницу с изображения.

Дизайн не требуется. Достаточно схематичной страницы, как на изображении.

#### Блоки снизу:
Слева - вещи у пользователя
Справа - вещи на выбор

#### Блоки сверху:
Слева - выбранные вещи из вещей пользователя (блок снизу-слева)
Справа - выбранная вещь из вещей на выбор (блок снизу-справа).

Объекты вещей имеют одинаковую структуру, отличаются только названием и номером.

---

## Механика работы

Снизу-справа можно выбрать одновременно `только 1 вещь`, которая должна отображаться справа-сверху.

Снизу-слева можно выбрать `от 1 до 6 вещей`, которые должны отображаться в верхней левой части в порядке выбора.

---

Коллекции для заполнения нижних блоков слева и справа:

### Блок слева
```
[
{
"id": 1,
"name": "Shoes 1"
},
{
"id": 2,
"name": "Shoes 2"
},
{
"id": 3,
"name": "Shoes 3"
},
{
"id": 4,
"name": "Shoes 4"
},
{
"id": 5,
"name": "T-shirt 1"
},
{
"id": 6,
"name": "T-shirt 2"
},
{
"id": 7,
"name": "T-shirt 3"
},
{
"id": 8,
"name": "T-shirt 4"
}
]
```

### Блок справа
```
[
{
"id": 11,
"name": "Jacket 1"
},
{
"id": 12,
"name": "Jacket 2"
},
{
"id": 13,
"name": "Jacket 3"
},
{
"id": 14,
"name": "Jacket 4"
},
{
"id": 15,
"name": "Hoodie 1"
},
{
"id": 16,
"name": "Hoodie 2"
},
{
"id": 17,
"name": "Hoodie 3"
},
{
"id": 18,
"name": "Hoodie 4"
}
]
```
# Выполненное тестовое задание
[Телеграм для связи](https://t.me/bogdan_tretyakov)
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue + TS</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading