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
3 changes: 3 additions & 0 deletions HW8(MVC)/images/delete-task.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions HW8(MVC)/images/task-done.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions HW8(MVC)/images/task.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions HW8(MVC)/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-do list</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dela+Gothic+One&Roboto:wght@300;400&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles/style.css">
</head>

<body>
<div id="to-do"></div>
<script src="scripts/View.js" type="module"></script>
<script src="scripts/Controller.js" type="module"></script>
</body>

</html>
114 changes: 114 additions & 0 deletions HW8(MVC)/scripts/Controller.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
import { $V } from './View.js';
import { $M } from './Model.js';

class Controller {
initialize() {
$V.tasksContainer.addEventListener('click', this.handleClickOnTasksContainer);
$V.showButton.addEventListener('click', $V.toggleShowButton);
$V.addButton.addEventListener('click', this.passTaskToModel);

$V.input.addEventListener('input', () => {
if ($V.input.value.length > 0) {
$V.addButton.style.backgroundColor = $V.greenColor;
} else {
$V.addButton.style.backgroundColor = $V.redColor;
}
});

if (this.checkIfAnyTasksAlreadySaved()) {
$V.toggleShowButton();
$V.renderTasks($M.getTasksList(), this.isFiltered());
}
}

handleClickOnTasksContainer(e) {
const clickedOn = e.target;
const clickedOnClassList = clickedOn.classList;

if (clickedOnClassList.contains('icon')) {
let [type, index] = clickedOnClassList[1].split('-');

if (type === 'doneIcon') {
$C.toggleDoneMarker(index);
} else if (type === 'deleteIcon'){
$C.deleteTask(index);
} else {
$C.switchFilterMode();
}
}
}

toggleDoneMarker(index) {
const tasks = $M.getTasksList();
tasks[index].isCompleted = !tasks[index].isCompleted;

$M.saveTasksList(tasks);
$V.renderTasks(tasks, this.isFiltered());
}

deleteTask(index) {
$M.removeTaskFromTheTasksList(index);
$V.renderTasks($M.getTasksList(), this.isFiltered());
}

switchFilterMode() {
let currentStatus = this.isFiltered();

if (currentStatus === 'true') {
currentStatus = 'false';
} else {
currentStatus = 'true';
}

$M.setFilter(currentStatus);
Comment on lines +57 to +63
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just as a suggestion

$M.setFilter(!currentStatus);

Copy link
Collaborator Author

@dmytro-khyzhniak dmytro-khyzhniak Apr 2, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I`m using 'true' and 'false' as a string because localStorage saves only strings.

But I can save an object in localStorage, and then after JSON.parse() it will be boolean.

If that's important, I can rewrite this logic. But as you mentioned, that's just a suggestion. I will prefer not to, if possible.

$V.renderTasks($M.getTasksList(), this.isFiltered());
}

passTaskToModel() {
$V.addButton.style.backgroundColor = $V.whiteColor;

if ($V.input.value.length > 0) {
const tasksList = document.querySelector('.tasks__list');

if (!tasksList.classList.contains('open')) {
$V.toggleShowButton();
}

$M.addTaskToTheTasksList($V.input.value);

$V.input.value = '';
$V.showButton.style.backgroundColor = $V.redColor;
$V.renderTasks($M.getTasksList(), $C.isFiltered());
} else {
$V.addInvalidStyleToTheInput();
}
}

inputIsValid() {
const value = $V.input.value;
$V.input.value = value.trim();
return value.length > 0;
}

checkIfAnyTasksAlreadySaved() {
const currentTasksList = $M.getTasksList();

if (currentTasksList.length > 0) {
return true;
} else {
return false;
}
}

isFiltered() {
return localStorage.getItem('isFiltered') ?? 'false';
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why string type?

}
}

const $C = new Controller;

document.body.onload = () => {
$C.initialize();
}

export { $C };
38 changes: 38 additions & 0 deletions HW8(MVC)/scripts/Model.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
class Model {
addTaskToTheTasksList(title) {
const currentTasks = this.getTasksList();
currentTasks.push({
'title': title,
'isCompleted': false
});

this.saveTasksList(currentTasks);
}

removeTaskFromTheTasksList(index) {
const currentTasks = $M.getTasksList();
currentTasks.splice(index, 1);
$M.saveTasksList(currentTasks);
}

getTasksList() {
const tasks = JSON.parse(localStorage.getItem('savedTasks')) ?? { list: [] };
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'savedTasks' - better save in private property

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above. How exactly should I implement "private"?

return tasks.list;
}

saveTasksList(tasksList) {
let savedTasks = {
'list': tasksList
};

savedTasks = JSON.stringify(savedTasks);
localStorage.setItem('savedTasks', savedTasks);
}

setFilter(newStatus) {
localStorage.setItem('isFiltered', newStatus);
}
}

const $M = new Model;
export { $M };
180 changes: 180 additions & 0 deletions HW8(MVC)/scripts/View.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,180 @@
class View {
static h1Text = 'THINGS TO DO ✌️';
static showButtonTextOnClose = 'SHOW';
static showButtonTextOnOpen = 'CLOSE';
static showButtonTitle = 'Show all tasks';
static addButtonText = 'ADD';
static addButtonTitle = 'Add a new task';
static inputPlaceholder = 'Add a new task 👈';
static tasksListHeaderText = 'CURRENT TASKS';
static tasksListFooterText = 'ADD MORE TASKS';
static filterButtonTextOnFiltered = 'NOT DONE';
static filterButtonTextOnNotFiltered = 'ALL';
static doneIconAltText = 'Press to mark task as done';
static deleteIconAltText = 'Press to delete task';

static rootElementId = 'to-do';
static buttonsClassList = 'to-do__button';
static showButtonClassList = 'to-do__button--show';
static addButtonClassList = 'to-do__button--add';
static inputClassList = 'to-do__input';
static tasksContainerClassList = 'tasks';
static tasksListClassList = 'tasks__list';

static tasksListItemClassList = 'tasks__list-item';
static taskTitleClassList = 'tasks__title';
static doneTaskTitleClassList = 'task__title--done';
static iconsButtonClassList = 'tasks__button';
static filterButtonClassList = 'tasks__button--filter';
static deleteButtonClassList = 'tasks__button--delete';
static filterButtonOnFilteredClassList = 'tasks__button--done';
static iconsClassList = 'icon';
static taskClassList = 'task';

static redColor = '#ff8f87';
static greenColor = '#87ff93';
static whiteColor = '#fff';

constructor() {
this.toDoContainer = document.getElementById(View.rootElementId);
this.invalidInputTimer = null;

if (this.toDoContainer === null) {
throw new Error(`Root HTML element for creating View of this to-do list was not found.`);
}

this.renderUserInerface();
}

renderUserInerface() {
const h1 = document.createElement('h1');
h1.textContent = View.h1Text;
document.body.prepend(h1);

this.showButton = document.createElement('button');
this.showButton.classList.add(View.buttonsClassList, View.showButtonClassList);
this.showButton.textContent = View.showButtonTextOnClose;
this.showButton.title = View.showButtonTitle;
this.toDoContainer.appendChild(this.showButton);

this.input = document.createElement('input');
this.input.classList.add(View.inputClassList);
this.input.placeholder = View.inputPlaceholder;
this.toDoContainer.appendChild(this.input);

this.addButton = document.createElement('button');
this.addButton.classList.add(View.buttonsClassList, View.addButtonClassList);
this.addButton.textContent = View.addButtonText;
this.addButton.title = View.addButtonTitle;
this.toDoContainer.appendChild(this.addButton);

this.tasksContainer = document.createElement('div');
this.tasksContainer.classList.add(View.tasksContainerClassList);
this.toDoContainer.appendChild(this.tasksContainer);

this.tasksList = document.createElement('ul');
this.tasksList.classList.add(View.tasksListClassList);
this.tasksContainer.appendChild(this.tasksList);
}

renderTasks(tasks, isFiltered) {
/*
Here and below 'true' and 'false' can appear as a string
because localStorage saves only strings.
*/
if (tasks.length === 0 && isFiltered === 'false') {
this.toggleShowButton();
this.showButton.style.display = 'none';
this.tasksList.style.display = 'none';
return;
}

this.createTasksListBody(tasks, isFiltered);
}

toggleShowButton() {
this.tasksList = document.querySelector(`.${View.tasksListClassList}`);
this.showButton = document.querySelector(`.${View.showButtonClassList}`);
this.tasksList.style.display = 'inline-block';
this.showButton.style.display = 'inline-block';
this.tasksList.classList.toggle('open');

if (this.tasksList.classList.contains('open')) {
this.showButton.textContent = View.showButtonTextOnOpen;
this.showButton.style.backgroundColor = '#ff8f87';
} else {
this.showButton.textContent = View.showButtonTextOnClose;
this.showButton.style.backgroundColor = '#87ff93';
}
}

addInvalidStyleToTheInput() {
this.input.style.border = '1px solid #ff8f87';
clearTimeout(this.invalidInputTimer);

this.invalidInputTimer = setTimeout(() => {
this.input.style.border = '1px solid #000';
}, 1000);
}

createTasksListBody(tasks, isFiltered) {
this.tasksList.innerHTML = `
<li class="${View.tasksListItemClassList}">
<div class="${View.taskTitleClassList}">${View.tasksListHeaderText}</div>
</li>`;

this.createTasksListItems(tasks, isFiltered);

let filterButtonText;
if (isFiltered === 'true') {
filterButtonText = View.filterButtonTextOnFiltered;
} else {
filterButtonText = View.filterButtonTextOnNotFiltered;
}

this.tasksList.insertAdjacentHTML('beforeend',
`<li class="${View.tasksListItemClassList}">
<div class="${View.taskTitleClassList}">${View.tasksListFooterText}</div>
<button class="${View.iconsButtonClassList} ${View.filterButtonClassList} ${View.iconsClassList}">
${filterButtonText}
</button>
</li>
`);
}

createTasksListItems(tasks, isFiltered) {
let tasksCounter = 0;

for (const task of tasks) {
if (isFiltered === 'true' && tasks[tasksCounter].isCompleted === true) {
tasksCounter++;
continue;
}

this.tasksList.insertAdjacentHTML('beforeend',
`<li class="${View.tasksListItemClassList} ${View.taskClassList}">
<button class="${View.iconsButtonClassList} ${View.filterButtonOnFilteredClassList}">
<img src="images/task.svg" class="${View.iconsClassList} doneIcon-${tasksCounter}" alt="${View.doneIconAltText}" draggable="false">
</button>
<div class="${View.taskTitleClassList} title-${tasksCounter}">${task.title}</div>
<button class="${View.iconsButtonClassList} ${View.deleteButtonClassList}">
<img src="images/delete-task.svg" class="${View.iconsClassList} deleteIcon-${tasksCounter}" draggable="false" alt="${View.deleteIconAltText}">
</button>
</li>`
);

if (task.isCompleted === true) {
const currentMarkAsDoneIcon = document.querySelector('.doneIcon-' + tasksCounter);
currentMarkAsDoneIcon.src = 'images/task-done.svg';

const currentTitle = document.querySelector('.title-' + tasksCounter);
currentTitle.classList.add(View.doneTaskTitleClassList);
}

tasksCounter++;
}
}
}

const $V = new View;
export { $V };
Loading