Skip to content
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
29 changes: 29 additions & 0 deletions .github/workflows/test.yml-template
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test

on:
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm start & sleep 5 && npm test
- name: Upload tests report(cypress mochaawesome merged HTML report)
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: report
path: reports
9 changes: 5 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@mate-academy/eslint-config": "latest",
"@mate-academy/jest-mochawesome-reporter": "^1.0.0",
"@mate-academy/linthtml-config": "latest",
"@mate-academy/scripts": "^1.8.5",
"@mate-academy/scripts": "^2.1.3",
"@mate-academy/stylelint-config": "latest",
"@parcel/transformer-sass": "^2.12.0",
"cypress": "^13.13.0",
Expand Down
46 changes: 44 additions & 2 deletions src/scripts/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
'use strict';

document.addEventListener('click', (e) => {
// write code here
// 1. Шукаємо елементи
const wall = document.querySelector('.wall');
const spider = document.querySelector('.spider');

// 2. Вішаємо клік САМЕ на wall, а не на document.

wall.addEventListener('click', (e) => {
const wallRect = wall.getBoundingClientRect();
const spiderRect = spider.getBoundingClientRect();

// wall.clientLeft та wall.clientTop — це товщина рамок (border) стіни.

const borderLeft = wall.clientLeft;
const borderTop = wall.clientTop;

// Розраховуємо позицію центру
let left = e.clientX - wallRect.left - borderLeft - spiderRect.width / 2;
let targetTop = e.clientY - wallRect.top - borderTop - spiderRect.height / 2;

// Обмеження, щоб не виходити за межі (враховуючи внутрішні розміри стіни)
const maxLeft = wall.clientWidth - spiderRect.width;
const maxTop = wall.clientHeight - spiderRect.height;

// Обмеження зліва та зверху
if (left < 0) {
left = 0;
}

if (targetTop < 0) {
targetTop = 0;
}

// Обмеження справа та знизу
if (left > maxLeft) {
left = maxLeft;
}

if (targetTop > maxTop) {
targetTop = maxTop;
}

// Застосовуємо координати
spider.style.left = `${left}px`;
spider.style.top = `${targetTop}px`;
});
Loading