remove the ability to delete tasks (#53)

This commit is contained in:
Matthew Ryan Dillon 2020-11-21 17:22:23 -07:00 committed by GitHub
parent 8201dfbf7a
commit 5be55c7387
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 15 deletions

View file

@ -162,14 +162,7 @@ defmodule TaskDetailsComponent do
to: @route_edit_task.(@socket, @task.id), to: @route_edit_task.(@socket, @task.id),
class: "button is-dark is-small" class: "button is-dark is-small"
) %> ) %>
<a
class="button is-dark is-small"
phx-click="delete-task"
phx-value-task-id="<%= @task.id %>">
delete
</a>
</div> </div>
</div> </div>
""" """
end end

View file

@ -190,14 +190,6 @@ defmodule PlannerWeb.TasksLive do
{:noreply, refresh_tasks_and_flash_msg(socket, "task \"#{task.value}\" completed")} {:noreply, refresh_tasks_and_flash_msg(socket, "task \"#{task.value}\" completed")}
end end
def handle_event("delete-task", %{"task-id" => task_id}, socket) do
{_, task} = Tasks.delete_task_by_id!(task_id)
socket = refresh_tasks_and_flash_msg(socket, "task \"#{task.value}\" deleted")
route = get_index_route(socket)
{:noreply, push_patch(socket, to: route)}
end
def handle_event("new-task", %{"task" => task_params}, socket) do def handle_event("new-task", %{"task" => task_params}, socket) do
add_new_task(task_params, socket.assigns.active_plan, socket) add_new_task(task_params, socket.assigns.active_plan, socket)
end end