mirror of
https://github.com/supanadit/todo.git
synced 2024-11-10 01:42:20 +00:00
748 lines
31 KiB
PHP
Executable File
748 lines
31 KiB
PHP
Executable File
@extends('layout.admin')
|
|
|
|
@section('title')
|
|
Welcome
|
|
@endsection
|
|
|
|
@section('subtitle')
|
|
Do you have any task today ?
|
|
@endsection
|
|
|
|
@section('top-button')
|
|
<button class="btn btn-info btn-sm" data-toggle="modal" data-target="#todo-create-modal">
|
|
Create Todo
|
|
</button>
|
|
@endsection
|
|
|
|
@section('css')
|
|
<style>
|
|
.widget-user {
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<input type="text" class="form-control" placeholder="Search" id="search-todo"/>
|
|
<br/>
|
|
|
|
<div class="row" id="todo-list">
|
|
<div style="text-align: center;height: 200px;position: relative;">
|
|
<i class="fa fa-spinner fa-spin" style="position: absolute;top:50%;left:50%;"></i>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal fade" id="todo-create-modal">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<form action="/" method="post" id="todo-create-modal-form">
|
|
<div class="modal-header">
|
|
<h4 class="modal-title">Create Todo</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label>Name</label>
|
|
<input type="text" class="form-control" placeholder="Insert todo name or title"
|
|
id="todo-create-field-name">
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Description</label>
|
|
<textarea class="form-control"
|
|
id="todo-create-field-description"
|
|
rows="3"
|
|
style="resize:vertical;max-height: 200px;min-height:100px;"
|
|
placeholder="Describe what this todo really is"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default pull-left" data-dismiss="modal">Cancel</button>
|
|
<button type="submit" class="btn btn-primary">
|
|
<i class="fa fa-spinner fa-spin" id="todo-create-modal-save-loading-indicator"></i>
|
|
<span id="todo-create-modal-save-button-label">Save</span>
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<!-- /.modal-content -->
|
|
</div>
|
|
<!-- /.modal-dialog -->
|
|
</div>
|
|
|
|
<div class="modal fade" id="todo-edit-modal">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<form action="/" method="post" id="todo-edit-modal-form">
|
|
<div class="modal-header">
|
|
<h4 class="modal-title">Edit Todo</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label>Name</label>
|
|
<input type="text" class="form-control" placeholder="Insert todo name or title"
|
|
id="todo-edit-modal-field-name">
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Description</label>
|
|
<textarea class="form-control"
|
|
id="todo-edit-modal-field-description"
|
|
rows="3"
|
|
style="resize:vertical;max-height: 200px;min-height:100px;"
|
|
placeholder="Describe what this todo really is"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default pull-left" id="todo-edit-modal-cancel-button">
|
|
Cancel
|
|
</button>
|
|
<button type="submit" class="btn btn-primary">
|
|
<i class="fa fa-spinner fa-spin" id="todo-edit-modal-save-loading-indicator"></i>
|
|
<span id="todo-edit-modal-save-button-label">Save</span>
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<!-- /.modal-content -->
|
|
</div>
|
|
<!-- /.modal-dialog -->
|
|
</div>
|
|
|
|
<div class="modal fade" id="todo-view-modal">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h4 class="modal-title" id="todo-view-modal-title"></h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<b>Description</b>
|
|
<p id="todo-view-modal-description" style="width:100%;word-wrap: break-word;"></p>
|
|
<div>
|
|
<b>Todo Item List</b>
|
|
<div class="pull-right">
|
|
<button class="btn btn-info btn-xs" id="todo-view-modal-add-todo-item-button">
|
|
Add Todo Item
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<br/>
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 65%;">Name</th>
|
|
<th style="text-align:center;">Status</th>
|
|
<th style="text-align:center;">Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="todo-view-modal-table-body"></tbody>
|
|
</table>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default pull-left" data-dismiss="modal">Close</button>
|
|
<button type="button" class="btn btn-info" id="todo-view-modal-edit-button">Edit Todo</button>
|
|
<button type="button" class="btn btn-danger" id="todo-view-modal-delete-button">Delete Todo</button>
|
|
</div>
|
|
</div>
|
|
<!-- /.modal-content -->
|
|
</div>
|
|
<!-- /.modal-dialog -->
|
|
</div>
|
|
|
|
<div class="modal fade" id="todo-item-create-modal">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<form action="/" method="post" id="todo-item-create-modal-form">
|
|
<div class="modal-header">
|
|
<h4 class="modal-title">Create Todo Item</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label>Name</label>
|
|
<textarea class="form-control"
|
|
placeholder="Insert todo item name here"
|
|
id="todo-item-create-modal-field-name"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default pull-left"
|
|
id="todo-item-create-modal-cancel-button">
|
|
Cancel
|
|
</button>
|
|
<button type="submit" class="btn btn-primary">
|
|
<i class="fa fa-spinner fa-spin" id="todo-item-create-modal-save-loading-indicator"></i>
|
|
<span id="todo-item-create-modal-save-button">Save</span>
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<!-- /.modal-content -->
|
|
</div>
|
|
<!-- /.modal-dialog -->
|
|
</div>
|
|
|
|
<div class="modal fade" id="todo-item-edit-modal">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<form action="/" method="post" id="todo-item-edit-modal-form">
|
|
<div class="modal-header">
|
|
<h4 class="modal-title">Edit Todo Item</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label>Name</label>
|
|
<textarea class="form-control"
|
|
placeholder="Edit todo item name here"
|
|
id="todo-item-edit-modal-field-name"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default pull-left"
|
|
id="todo-item-edit-modal-cancel-button">
|
|
Cancel
|
|
</button>
|
|
<button type="submit" class="btn btn-primary">
|
|
<i class="fa fa-spinner fa-spin" id="todo-item-edit-modal-save-loading-indicator"></i>
|
|
<span id="todo-item-edit-modal-save-button">Save</span>
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<!-- /.modal-content -->
|
|
</div>
|
|
<!-- /.modal-dialog -->
|
|
</div>
|
|
@endsection
|
|
|
|
@section('js')
|
|
<script type="application/javascript">
|
|
let todo = null;
|
|
let todoItem = null;
|
|
|
|
let todoModalIsShown = false;
|
|
|
|
// Untuk Keyboard Shortcut
|
|
$(document).bind('keydown', function (e) {
|
|
// ESC Key
|
|
if (e.key === "Escape") {
|
|
// Ketika Todo View Modal terbuka
|
|
const statusTodoViewModal = ($("#todo-view-modal").data('bs.modal') || {}).isShown;
|
|
if (statusTodoViewModal !== "undefined" && statusTodoViewModal) {
|
|
$("#todo-view-modal").modal('hide');
|
|
}
|
|
|
|
// Ketika Todo Create Modal terbuka
|
|
const statusTodoCreateModal = ($("#todo-create-modal").data('bs.modal') || {}).isShown;
|
|
if (statusTodoCreateModal !== "undefined" && statusTodoCreateModal) {
|
|
$("#todo-create-modal").modal('hide');
|
|
}
|
|
|
|
// Ketika Todo Edit Modal terbuka
|
|
const statusTodoEditModal = ($("#todo-edit-modal").data('bs.modal') || {}).isShown;
|
|
if (statusTodoEditModal !== "undefined" && statusTodoEditModal) {
|
|
$("#todo-edit-modal").modal('hide');
|
|
$("#todo-view-modal").modal('show');
|
|
}
|
|
|
|
// Ketika Todo Item Create Modal terbuka
|
|
const statusTodoItemCreateModal = ($("#todo-item-create-modal").data('bs.modal') || {}).isShown;
|
|
if (statusTodoItemCreateModal !== "undefined" && statusTodoItemCreateModal) {
|
|
$("#todo-item-create-modal").modal('hide');
|
|
$("#todo-view-modal").modal('show');
|
|
}
|
|
|
|
// Ketika Todo Item Edit Modal terbuka
|
|
const statusTodoItemEditModal = ($("#todo-item-edit-modal").data('bs.modal') || {}).isShown;
|
|
if (statusTodoItemEditModal !== "undefined" && statusTodoItemEditModal) {
|
|
$("#todo-item-edit-modal").modal('hide');
|
|
$("#todo-view-modal").modal('show');
|
|
}
|
|
}
|
|
// CTRL + S
|
|
if (e.ctrlKey && e.which === 83) {
|
|
toastr.error("Prevented");
|
|
return false;
|
|
}
|
|
|
|
// CTRL + F
|
|
if (e.ctrlKey && e.which === 70) {
|
|
$("#search-todo").focus();
|
|
return false;
|
|
}
|
|
|
|
// ALT + N
|
|
if (e.altKey && e.which === 78) {
|
|
if (!todoModalIsShown) {
|
|
$("#todo-create-modal").modal('show');
|
|
} else {
|
|
openAddTodoItemModal();
|
|
}
|
|
return false;
|
|
}
|
|
});
|
|
|
|
const loadTodoList = function () {
|
|
$.ajax({
|
|
type: "GET",
|
|
url: "/web/todo",
|
|
headers: {
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
|
|
},
|
|
data: {
|
|
"search": $("#search-todo").val(),
|
|
},
|
|
contentType: "application/json",
|
|
async: true,
|
|
beforeSend: function () {
|
|
$("#todo-list").html("<div style=\"text-align: center;height: 200px;position: relative;\">\n" +
|
|
" <i class=\"fa fa-spinner fa-spin\" style=\"position: absolute;top:50%;left:50%;\"></i>\n" +
|
|
" </div>");
|
|
},
|
|
success: function (result) {
|
|
if (result.length !== 0) {
|
|
$("#todo-list").html(result.map(m => todoComponent(m)));
|
|
} else {
|
|
if ($("#search-todo").val() != null && $("#search-todo").val() != "") {
|
|
$("#todo-list").html("<div style=\"text-align: center;height: 200px;position: relative;\">\n" +
|
|
" <p style=\"position: absolute;top:50%;left:50%;color:#777;\"><i class='fa fa-calendar-times-o'></i> Not found</p>\n" +
|
|
" </div>");
|
|
} else {
|
|
$("#todo-list").html("<div style=\"text-align: center;height: 200px;position: relative;\">\n" +
|
|
" <p style=\"position: absolute;top:50%;left:45%;color:#777;\"><i class='fa fa-calendar-times-o'></i> Create new one <span class=\"label label-default\">ALT + N</span></p>\n" +
|
|
" </div>");
|
|
}
|
|
}
|
|
},
|
|
error: function (result) {
|
|
toastr.error(result.responseJSON.message);
|
|
}
|
|
});
|
|
}
|
|
|
|
const todoComponent = function (t) {
|
|
const todoData = "<div class=\"col-md-4 col-sm-6 col-xs-12\">\n" +
|
|
" <div class=\"box box-widget widget-user\">\n" +
|
|
" <!-- Add the bg color to the header using any of the bg-* classes -->\n" +
|
|
" <div class=\"widget-user-header bg-aqua-active\">\n" +
|
|
" <h3 class=\"widget-user-username\">" + t.name + "</h3>\n" +
|
|
" </div>\n" +
|
|
" </div>\n" +
|
|
" </div>";
|
|
return $(todoData).click(function () {
|
|
todo = t;
|
|
|
|
loadTodoItemList();
|
|
|
|
$("#todo-view-modal-title").html(t.name);
|
|
$("#todo-view-modal-description").html((t.description != null && t.description != "") ? todo.description : "<i>No Description</i>");
|
|
|
|
$("#todo-view-modal").modal('show');
|
|
});
|
|
}
|
|
|
|
const todoItemTableRowComponent = function (todoItem) {
|
|
const buttonToggleMark = "<button type=\"button\" class=\"btn btn-xs " + (!todoItem.complete ? "btn-danger" : "btn-success") + " btn-todo-toggle-mark\"><i class=\"fa " + (!todoItem.complete ? "fa-toggle-off" : "fa-toggle-on") + "\"></i></button>";
|
|
const buttonEdit = "<button class=\"btn btn-xs btn-info btn-todo-edit\"><i class=\"fa fa-edit\"></i></button>";
|
|
const buttonDelete = "<button class=\"btn btn-xs btn-danger btn-todo-delete\"><i class=\"fa fa-trash\"></i></button>";
|
|
const row = "<tr>\n" +
|
|
" <td>" + todoItem.name + "</td>\n" +
|
|
" <td align=\"center\"><label class=\"label " + (!todoItem.complete ? "label-danger" : "label-success") + "\">" + (!todoItem.complete ? "Not complete" : "Complete") + "</label></td>\n" +
|
|
" <td align=\"center\">\n" +
|
|
" " + buttonToggleMark + "\n" +
|
|
" " + buttonEdit + "\n" +
|
|
" " + buttonDelete + "\n" +
|
|
" </td>\n" +
|
|
" </tr>";
|
|
return $(row).on('click', 'button.btn-todo-toggle-mark', function () {
|
|
toggleTodoItem(todoItem);
|
|
}).on('click', 'button.btn-todo-edit', function () {
|
|
editTodoItem(todoItem);
|
|
}).on('click', 'button.btn-todo-delete', function () {
|
|
deleteTodoItem(todoItem);
|
|
});
|
|
}
|
|
|
|
const toggleTodoItem = function (todoItem) {
|
|
$.ajax({
|
|
type: "GET",
|
|
url: "/web/todo/item/" + (todoItem.complete ? "unmark" : "mark") + "/" + todoItem.id,
|
|
headers: {
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
|
|
},
|
|
contentType: "application/json",
|
|
async: true,
|
|
success: function (result) {
|
|
loadTodoItemList();
|
|
},
|
|
error: function (result) {
|
|
toastr.error(result.responseJSON.message);
|
|
}
|
|
});
|
|
}
|
|
|
|
const editTodoItem = function (t) {
|
|
todoItem = t;
|
|
$("#todo-item-edit-modal-field-name").val(todoItem.name);
|
|
|
|
$("#todo-view-modal").modal('hide');
|
|
$("#todo-item-edit-modal").modal('show');
|
|
}
|
|
|
|
const deleteTodoItem = function (todoItem) {
|
|
$.ajax({
|
|
type: "DELETE",
|
|
url: "/web/todo/item/" + todoItem.id,
|
|
headers: {
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
|
|
},
|
|
contentType: "application/json",
|
|
async: true,
|
|
success: function (result) {
|
|
loadTodoItemList();
|
|
},
|
|
error: function (result) {
|
|
toastr.error(result.responseJSON.message);
|
|
}
|
|
});
|
|
}
|
|
|
|
const loadTodoItemList = function () {
|
|
$("#todo-view-modal-table-body").html("<tr>\n" +
|
|
" <td colspan=\"4\" style=\"text-align:center;color:#777;\">\n" +
|
|
" <i class=\"fa fa-spinner fa-spin\"></i>\n" +
|
|
" </td>\n" +
|
|
" </tr>");
|
|
$.ajax({
|
|
type: "GET",
|
|
url: "/web/todo/item/" + todo.id,
|
|
headers: {
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
|
|
},
|
|
contentType: "application/json",
|
|
async: true,
|
|
success: function (result) {
|
|
if (result.length !== 0) {
|
|
$("#todo-view-modal-table-body").html(result.map(m => todoItemTableRowComponent(m)));
|
|
} else {
|
|
$("#todo-view-modal-table-body").html("<tr>\n" +
|
|
" <td colspan=\"4\" style=\"text-align:center;color:#777;\">\n" +
|
|
" No Todo Item\n" +
|
|
" </td>\n" +
|
|
" </tr>");
|
|
}
|
|
},
|
|
error: function (result) {
|
|
toastr.error(result.responseJSON.message);
|
|
}
|
|
});
|
|
}
|
|
|
|
// Create New Todo Function
|
|
const createNewTodo = function (e = null) {
|
|
if (e != null) {
|
|
e.preventDefault();
|
|
}
|
|
|
|
const name = $("#todo-create-field-name");
|
|
const description = $("#todo-create-field-description");
|
|
|
|
$.ajax({
|
|
type: "POST",
|
|
url: "/web/todo",
|
|
headers: {
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
|
|
},
|
|
data: JSON.stringify({
|
|
"name": name.val(),
|
|
"description": description.val(),
|
|
}),
|
|
contentType: "application/json",
|
|
dataType: "json",
|
|
async: true,
|
|
beforeSend: function () {
|
|
$("#todo-create-modal-save-loading-indicator").show();
|
|
$("#todo-create-modal-save-button-label").hide();
|
|
},
|
|
success: function (result) {
|
|
$("#todo-create-modal-save-loading-indicator").hide();
|
|
$("#todo-create-modal-save-button-label").show();
|
|
|
|
name.val(null);
|
|
description.val(null);
|
|
|
|
toastr.success(result.message);
|
|
|
|
$("#todo-create-modal").modal('hide');
|
|
|
|
loadTodoList();
|
|
},
|
|
error: function (result) {
|
|
$("#todo-create-modal-save-loading-indicator").hide();
|
|
$("#todo-create-modal-save-button-label").show();
|
|
|
|
toastr.error(result.responseJSON.message);
|
|
}
|
|
});
|
|
}
|
|
|
|
// Edit Todo
|
|
const editTodo = function (e = null) {
|
|
if (e != null) {
|
|
e.preventDefault();
|
|
}
|
|
|
|
const name = $("#todo-edit-modal-field-name");
|
|
const description = $("#todo-edit-modal-field-description");
|
|
|
|
$.ajax({
|
|
type: "PUT",
|
|
url: "/web/todo",
|
|
headers: {
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
|
|
},
|
|
data: JSON.stringify({
|
|
"id": todo.id,
|
|
"name": name.val(),
|
|
"description": description.val(),
|
|
}),
|
|
contentType: "application/json",
|
|
dataType: "json",
|
|
async: true,
|
|
beforeSend: function () {
|
|
$("#todo-edit-modal-save-loading-indicator").show();
|
|
$("#todo-edit-modal-save-button-label").hide();
|
|
},
|
|
success: function (result) {
|
|
$("#todo-edit-modal-save-loading-indicator").hide();
|
|
$("#todo-edit-modal-save-button-label").show();
|
|
|
|
todo.name = name.val();
|
|
todo.description = description.val();
|
|
|
|
name.val(null);
|
|
description.val(null);
|
|
|
|
toastr.success(result.message);
|
|
|
|
$("#todo-view-modal-title").html(todo.name);
|
|
$("#todo-view-modal-description").html(todo.description);
|
|
|
|
$("#todo-edit-modal").modal('hide');
|
|
$("#todo-view-modal").modal('show');
|
|
|
|
loadTodoList();
|
|
},
|
|
error: function (result) {
|
|
$("#todo-edit-modal-save-loading-indicator").hide();
|
|
$("#todo-edit-modal-save-button-label").show();
|
|
|
|
toastr.error(result.responseJSON.message);
|
|
}
|
|
});
|
|
}
|
|
|
|
// Open Add Todo Item Modal
|
|
const openAddTodoItemModal = function () {
|
|
$("#todo-view-modal").modal('hide');
|
|
$("#todo-item-create-modal-field-name").focus();
|
|
$("#todo-item-create-modal").modal('show');
|
|
}
|
|
|
|
$(document).ready(function () {
|
|
const todoViewModal = $("#todo-view-modal");
|
|
todoViewModal.on("shown.bs.modal", function (e) {
|
|
todoModalIsShown = true;
|
|
})
|
|
todoViewModal.on("hide.bs.modal", function (e) {
|
|
todoModalIsShown = false;
|
|
})
|
|
// Prepare Data From Backend
|
|
loadTodoList();
|
|
|
|
// Component Initialization
|
|
$("#todo-create-modal-save-loading-indicator").hide();
|
|
$("#todo-edit-modal-save-loading-indicator").hide();
|
|
$("#todo-item-create-modal-save-loading-indicator").hide();
|
|
$("#todo-item-edit-modal-save-loading-indicator").hide();
|
|
|
|
// Create Todo Submit Action
|
|
$("#todo-create-modal-form").on("submit", createNewTodo);
|
|
|
|
// Create Todo by CTRL + ENTER at Todo Description
|
|
$("#todo-create-field-description").keydown(function (e) {
|
|
if (e.ctrlKey && e.keyCode === 13) {
|
|
$("#todo-create-modal-form").submit();
|
|
}
|
|
});
|
|
|
|
// Create Todo Item by CTRL + ENTER at Todo Description
|
|
$("#todo-item-create-modal-field-name").keydown(function (e) {
|
|
if (e.ctrlKey && e.keyCode === 13) {
|
|
$("#todo-item-create-modal-form").submit();
|
|
}
|
|
});
|
|
|
|
// Edit Todo Item by CTRL + ENTER at Todo Description
|
|
$("#todo-item-edit-modal-field-name").keydown(function (e) {
|
|
if (e.ctrlKey && e.keyCode === 13) {
|
|
$("#todo-item-edit-modal-form").submit();
|
|
}
|
|
});
|
|
|
|
// Delete Todo Button
|
|
$("#todo-view-modal-delete-button").on("click", function (e) {
|
|
$.ajax({
|
|
type: "DELETE",
|
|
url: "/web/todo/" + todo.id,
|
|
headers: {
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
|
|
},
|
|
contentType: "application/json",
|
|
async: true,
|
|
success: function (result) {
|
|
$("#todo-view-modal").modal('hide');
|
|
loadTodoList();
|
|
},
|
|
error: function (result) {
|
|
toastr.error(result.responseJSON.message);
|
|
}
|
|
});
|
|
});
|
|
|
|
// Edit Button for Todo
|
|
$("#todo-edit-modal-form").on("submit", editTodo);
|
|
|
|
// Edit Todo by CTRL + ENTER at Todo Description
|
|
$("#todo-edit-modal-field-description").keydown(function (e) {
|
|
if (e.ctrlKey && e.keyCode == 13) {
|
|
editTodo();
|
|
}
|
|
});
|
|
|
|
// Edit Button for Show Edit Modal
|
|
$("#todo-view-modal-edit-button").on("click", function () {
|
|
$("#todo-view-modal").modal('hide');
|
|
$("#todo-edit-modal").modal('show');
|
|
|
|
$("#todo-edit-modal-field-name").val(todo.name);
|
|
$("#todo-edit-modal-field-description").val(todo.description);
|
|
});
|
|
|
|
// Cancel Edit Todo
|
|
$("#todo-edit-modal-cancel-button").on("click", function () {
|
|
$("#todo-edit-modal").modal('hide');
|
|
$("#todo-view-modal").modal('show');
|
|
});
|
|
|
|
// Create Todo Item Submit Action
|
|
$("#todo-item-create-modal-form").on("submit", function (e) {
|
|
e.preventDefault();
|
|
|
|
const name = $("#todo-item-create-modal-field-name");
|
|
|
|
$.ajax({
|
|
type: "POST",
|
|
url: "/web/todo/item",
|
|
headers: {
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
|
|
},
|
|
data: JSON.stringify({
|
|
"name": name.val(),
|
|
"todo_id": todo.id,
|
|
}),
|
|
contentType: "application/json",
|
|
dataType: "json",
|
|
async: true,
|
|
beforeSend: function () {
|
|
$("#todo-item-create-modal-save-loading-indicator").show();
|
|
$("#todo-item-create-modal-save-button-label").hide();
|
|
},
|
|
success: function (result) {
|
|
$("#todo-item-create-modal-save-loading-indicator").hide();
|
|
$("#todo-item-create-modal-save-button-label").show();
|
|
|
|
name.val(null);
|
|
|
|
toastr.success(result.message);
|
|
|
|
$("#todo-view-modal").modal('show');
|
|
$("#todo-item-create-modal").modal('hide');
|
|
|
|
loadTodoItemList();
|
|
},
|
|
error: function (result) {
|
|
$("#todo-item-create-modal-save-loading-indicator").hide();
|
|
$("#todo-item-create-modal-save-button-label").show();
|
|
|
|
toastr.error(result.responseJSON.message);
|
|
}
|
|
});
|
|
});
|
|
|
|
// Edit Todo Item Submit Action
|
|
$("#todo-item-edit-modal-form").on("submit", function (e) {
|
|
e.preventDefault();
|
|
|
|
const name = $("#todo-item-edit-modal-field-name");
|
|
|
|
$.ajax({
|
|
type: "PUT",
|
|
url: "/web/todo/item",
|
|
headers: {
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content'),
|
|
},
|
|
data: JSON.stringify({
|
|
"name": name.val(),
|
|
"id": todoItem.id,
|
|
"todo_id": todoItem.todo_id,
|
|
"complete": todoItem.complete,
|
|
}),
|
|
contentType: "application/json",
|
|
dataType: "json",
|
|
async: true,
|
|
beforeSend: function () {
|
|
$("#todo-item-edit-modal-save-loading-indicator").show();
|
|
$("#todo-item-edit-modal-save-button-label").hide();
|
|
},
|
|
success: function (result) {
|
|
$("#todo-item-edit-modal-save-loading-indicator").hide();
|
|
$("#todo-item-edit-modal-save-button-label").show();
|
|
|
|
name.val(null);
|
|
|
|
toastr.success(result.message);
|
|
|
|
$("#todo-view-modal").modal('show');
|
|
$("#todo-item-edit-modal").modal('hide');
|
|
|
|
loadTodoItemList();
|
|
},
|
|
error: function (result) {
|
|
$("#todo-item-edit-modal-save-loading-indicator").hide();
|
|
$("#todo-item-edit-modal-save-button-label").show();
|
|
|
|
toastr.error(result.responseJSON.message);
|
|
}
|
|
});
|
|
});
|
|
|
|
// Search
|
|
$("input#search-todo").on('keyup', function () {
|
|
loadTodoList();
|
|
});
|
|
|
|
// Button Add Todo Item
|
|
$("#todo-view-modal-add-todo-item-button").click(openAddTodoItemModal);
|
|
|
|
// Button Cancel On Create Todo Item Modal
|
|
$("#todo-item-create-modal-cancel-button").click(function () {
|
|
$("#todo-view-modal").modal('show');
|
|
$("#todo-item-create-modal").modal('hide');
|
|
});
|
|
|
|
// Button Cancel On Edit Todo Item Modal
|
|
$("#todo-item-edit-modal-cancel-button").click(function () {
|
|
$("#todo-view-modal").modal('show');
|
|
$("#todo-item-edit-modal").modal('hide');
|
|
});
|
|
});
|
|
</script>
|
|
@endsection
|