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

Assignment3 #13

Closed
wants to merge 29 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
74b2093
Merge pull request #1 from dwarvesf/main
hkhangus Sep 14, 2023
6c5dd0e
Merge pull request #2 from dwarvesf/main
hkhangus Sep 16, 2023
bd0b203
assginment 1 complete
hkhangus Sep 19, 2023
0b71afd
Merge branch 'main' of https://github.com/hkhangus/df-frontend-2023
hkhangus Sep 19, 2023
33f92f1
Merge pull request #3 from hkhangus/assignment1
hkhangus Sep 19, 2023
cef5088
Merge branch 'dwarvesf:main' into main
hkhangus Sep 19, 2023
1325611
Merge branch 'dwarvesf:main' into main
hkhangus Sep 21, 2023
9c5b86a
assignment2 complete
hkhangus Sep 25, 2023
f1bee35
Merge pull request #5 from hkhangus/assignment2
hkhangus Sep 25, 2023
e6d0a24
fix package npm
hkhangus Sep 25, 2023
5d70fb6
Merge pull request #6 from hkhangus/assignment2
hkhangus Sep 25, 2023
641066b
add packege babel/plugin
hkhangus Sep 25, 2023
6c536bb
add redirect
hkhangus Sep 26, 2023
f85ae8f
Merge pull request #7 from hkhangus/assignment2
hkhangus Sep 26, 2023
0d2257a
Merge branch 'dwarvesf:main' into main
hkhangus Sep 26, 2023
2dc995b
delete package
hkhangus Sep 28, 2023
95e740c
add css
hkhangus Sep 28, 2023
fab611f
add types and button component
hkhangus Sep 28, 2023
7c9bd0f
add Header componet
hkhangus Sep 28, 2023
ad6778d
add LineBook component
hkhangus Sep 28, 2023
26b8aa7
bug Property does not exist on type 'IntrinsicAttributes' file App.tsx
hkhangus Sep 29, 2023
c1f79f9
fixed LineBook component
hkhangus Sep 29, 2023
0cd7693
Add and implement successfully ModalAdd component
hkhangus Sep 29, 2023
92f5521
Add and implement successfully ModalDelete
hkhangus Sep 29, 2023
2d5466c
Add delete feature
hkhangus Sep 29, 2023
863e821
Add pagination component
hkhangus Sep 29, 2023
46a4ed1
Handle search book
hkhangus Sep 29, 2023
ec1dc58
Add deleting feature when search
hkhangus Sep 29, 2023
9867e95
Add redirect file
hkhangus Sep 29, 2023
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
117 changes: 115 additions & 2 deletions assignment-1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,120 @@
</head>

<body>
Hello world
<script src="script.js"></script>
<div class="app">
<header>
<nav class="navbar">
<a href="" id="bookstore">Bookstore</a>
<div class="user">
<img src="https://i.pinimg.com/736x/cc/80/f3/cc80f38579887963c2d71d7060081ea3.jpg" alt="avt" id="avt">
<span>
John Doe
</span>
</div>
</nav>
</header>
<div class="app__container">
<div class="control">
<input type="text" class="search" placeholder="Search books">
<button class="btn btn-add">Add book</button>
</div>

<div class="table">
<table class="table__content">
<thead class="table__header">
<tr>
<td>Name</td>
<td>Author</td>
<td>Topic</td>
<td>Action</td>
</tr>
</thead>
<tbody>
<!-- <tr>
<td>Refactoring</td>
<td>Martin Fowler</td>
<td>Programming</td>
<td class="delete-click">
Delete
</td>
</tr>
<tr>
<td>The Phoenix Project</td>
<td>Martin Kleppmann</td>
<td>Database</td>
<td class="delete-click">
Delete
</td>
</tr> -->
</tbody>
</table>
</div>
</div>
<footer></footer>

<div class="modal modal-delete">
<div class="form delete-form">
<h2 class="form-header">
Delete book
<button class="close" type="button">&#x2716;</button>
</h2>
<div class="form__content delete-item">
<!-- Do you want to delete Refactoring book? -->
</div>
<div class="form__btn">
<button class="btn-delete">
Delete
</button>
<button class="btn btn-cancel">
Cancel
</button>
</div>
</div>
</div>


<div class="modal modal-add">
<div class="form add-form">
<h2 class="form-header">
Add book
<button class="close" type="button">&#x2716;</button>
</h2>
<form class="form__content">
<div class="input-wrap">
<h3 class="input-header">
Name
</h3>
<input class="input" type="text" placeholder="text" id="input-name" name="name" required>
</div>
<div class="input-wrap">
<h3 class="input-header">
Author
</h3>
<input class="input" type="text" placeholder="text" id="input-author" name="author" required>
</div>
<div class="input-wrap">
<h3 class="input-header">
Topic
</h3>
<select id="input-topic" name="topic">
<option value="Programming">Programming</option>
<option value="Databse">Databse</option>
<option value="DevOps">DevOps</option>
</select>
</div>
<div class="form__btn">
<button type="submit" class="btn btn-create">
Create
</button>
</div>
</form>

</div>
</div>

</div>


<script type="text/javascript" src="script.js"></script>
</body>
</html>
197 changes: 196 additions & 1 deletion assignment-1/script.js
Original file line number Diff line number Diff line change
@@ -1 +1,196 @@
// Your JS code goes here
const $ = document.querySelector.bind(document)
const $$ = document.querySelectorAll.bind(document)

const table = $('tbody')
const createForm = $('form')
const inputName = $('#input-name')
const inputAuthor = $('#input-author')
const inputTopic = $('#input-topic')
const confirmDelete = $('.btn-delete')
const searchInput = $('.search')
const deleteItem = $('.delete-item')

// console.log(deleteItem)

// Get the modal
const modal = document.getElementsByClassName("modal-add")[0];
// Get the button element that open the modal
const btnOpenAdd = document.getElementsByClassName("btn-add")[0];
// Get the button close the modal
const btnCloseAdd = document.getElementsByClassName("close")[1];

// Get the modal
const modalDelete = document.getElementsByClassName("modal-delete")[0];
var btnOpenDelete = document.querySelectorAll(".delete-click");
// Get the button close the modal
const btnCloseDelete = document.getElementsByClassName("close")[0];
// console.log(btnOpenDelete)

// Get the button cancel
const btnCancel = document.querySelector('.btn-cancel')


const app = {
deleteIndex: 0,
isSearching: false,
books: [
{
name: 'Refactoring',
author: 'Martin Fowler',
topic: 'Programming',
},
{
name: 'Design Data-Intensive Applications',
author: 'Martin Kleppman',
topic: 'Database',
},
{
name: 'The Phoenix Project',
author: 'Gene Kim',
topic: 'DevOps',
},
],

saveStore: function(data) {
localStorage.setItem('books',JSON.stringify(data));
},

getBooks: function() {
const bookList = JSON.parse(localStorage.getItem('books'));
console.log(bookList)
if (bookList)
this.books = bookList
},


render: function(books) {
const lines = books.map((book,index) => {
return `
<tr>
<td>${book.name}</td>
<td>${book.author}</td>
<td>${book.topic}</td>
<td class="delete-click onclick=getIndex(this)">
Delete
</td>
</tr>
`
})
$('tbody').innerHTML = lines.join('\n')
btnOpenDelete = document.querySelectorAll(".delete-click");
if (!this.isSearching){
btnOpenDelete.forEach(element => {
element.onclick = function(e){
app.deleteIndex = e.target.parentNode.rowIndex-1
deleteItem.innerHTML = `Do you want to delete ${books[app.deleteIndex].name} book?`
modalDelete.style.display = "block"
}
});
}

},

handleEvents: function(){

// Handler event add modal

// console.log(btnOpenAdd)

// When the user clicks on the button, open the modal
btnOpenAdd.onclick = function() {
modal.style.display = "block";
}

// When the user clicks on <span> (x), close the modal
btnCloseAdd.onclick = function() {
modal.style.display = "none";
}



// When the user clicks anywhere outside of the modal, close it => under
// Handler event delete modal

// Get the button element that open the modal
// var btnOpenDelete = document.querySelectorAll(".delete-click");
// // Get the button close the modal
// var btnCloseDelete = document.getElementsByClassName("close")[0];
// // console.log(btnOpenDelete)

// // Get the button cancel
// var btnCancel = document.querySelector('.btn-cancel')
// console.log(btnCancel)
// When the user clicks on the button, open the modal
// Click cancel
btnCancel.onclick = () => modalDelete.style.display = "none";

// btnOpenDelete.addEventListener('click', function() {modalDelete.style.display = "block"})
// btnOpenDelete.forEach(element => {
// element.onclick = () => modalDelete.style.display = "block"
// });

// When the user clicks on <span> (x), close the modal
btnCloseDelete.onclick = function() {
modalDelete.style.display = "none";
}

// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modalDelete) {
modalDelete.style.display = "none";
}
if (event.target == modal) {
modal.style.display = "none";
}
}

confirmDelete.onclick = () => {
$('.table__content').deleteRow(app.deleteIndex+1)
modalDelete.style.display = "none";
app.books.splice(app.deleteIndex,1)
console.log(app.books)
app.saveStore(app.books)
}


// Handle create book
createForm.onsubmit = function(e){
e.preventDefault()
console.log('test')
const newBook = {
name: inputName.value,
author: inputAuthor.value,
topic: inputTopic.value
}
inputName.value =''
inputAuthor.value=''
app.books.push(newBook)
app.render(app.books)
app.saveStore(app.books)
// btnOpenDelete = document.querySelectorAll(".delete-click");
}

searchInput.onchange = function(){
const searchValue = searchInput.value
const resultSearch = app.books.filter((book)=> book.name.toLowerCase().includes(searchValue));
if (searchValue != '')
app.isSearching = true
else app.isSearching = false
app.render(resultSearch)
}


},

start: function() {
this.getBooks()
console.log(this.books)
this.render(this.books)
this.handleEvents()
}
}

app.start()


// Your JS code goes here
Loading