remove the ability to delete tasks (#53)
This commit is contained in:
parent
8201dfbf7a
commit
5be55c7387
2 changed files with 0 additions and 15 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue