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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
1. Replace `<your_account>` with your Github username in the link
- [DEMO LINK](https://<your_account>.github.io/js_growth_table_DOM/)
- [DEMO LINK](https://yana-longstocking.github.io/js_growth_table_DOM/)
2. Follow [this instructions](https://mate-academy.github.io/layout_task-guideline/)
- Run `npm run test` command to test your code;
- Run `npm run test:only -- -n` to run fast test ignoring linter;
- Run `npm run test:only -- -l` to run fast test with additional info in console ignoring linter.
- Run `npm run test` command to test your code;
- Run `npm run test:only -- -n` to run fast test ignoring linter;
- Run `npm run test:only -- -l` to run fast test with additional info in console ignoring linter.

### Task: Growth table

Expand All @@ -15,6 +15,7 @@ Preview:
![Preview](./src/images/4x4.png)

Some rules:

- Click on the button with class `append-row` should append a new row to the table.
- Click on the button with class `remove-row` should remove the last row from the table.
- Click on the button with class `append-column` should append a new column to the table.
Expand All @@ -32,4 +33,3 @@ Examples:
![2x2](./src/images/2x2.png)

![3x10](./src/images/3x10.png)

181 changes: 5 additions & 176 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
90 changes: 89 additions & 1 deletion src/scripts/main.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,91 @@
'use strict';

// write code here
const table = document.querySelector('.field tbody');

const appendRow = document.querySelector('.append-row');
const removeRow = document.querySelector('.remove-row');
const appendColumn = document.querySelector('.append-column');
const removeColumn = document.querySelector('.remove-column');

const MAX = 10;
const MIN = 2;

function makeButtonDisabled(buttonElement) {
buttonElement.disabled = true;
}

function makeButtonEnabled(buttonElement) {
buttonElement.disabled = false;
}

appendRow.addEventListener('click', () => {
if (table.rows.length === MIN) {
makeButtonEnabled(removeRow);
}

if (table.rows.length === MAX) {
return;
}

const newRow = document.createElement('tr');

for (let i = 0; i < table.rows[0].cells.length; i++) {
newRow.appendChild(document.createElement('td'));
}

table.appendChild(newRow);

if (table.rows.length >= MAX) {
makeButtonDisabled(appendRow);
}
});

removeRow.addEventListener('click', () => {
if (table.rows.length === MIN + 1) {
makeButtonDisabled(removeRow);
}

table.rows[table.rows.length - 1].remove();

if (table.rows.length <= MAX) {
makeButtonEnabled(appendRow);
}
});

appendColumn.addEventListener('click', () => {
if (table.rows[0].cells.length >= MAX) {
return;
}

if (table.rows[0].cells.length === MIN) {
makeButtonEnabled(removeColumn);
}

for (let i = 0; i < table.rows.length; i++) {
const td = document.createElement('td');

table.rows[i].appendChild(td);
}

if (table.rows[0].cells.length >= MAX) {
makeButtonDisabled(appendColumn);
}
});

removeColumn.addEventListener('click', () => {
if (table.rows[0].cells.length === MIN + 1) {
makeButtonDisabled(removeColumn);
}

if (table.rows[0].cells.length <= MIN) {
return;
}

for (let i = 0; i < table.rows.length; i++) {
table.rows[i].cells[table.rows[i].cells.length - 1].remove();
}

if (table.rows[0].cells.length <= MAX) {
makeButtonEnabled(appendColumn);
}
});
Loading