diff --git a/assets/css/app.scss b/assets/css/app.scss index 6b6e2a3..a564146 100644 --- a/assets/css/app.scss +++ b/assets/css/app.scss @@ -1 +1,40 @@ @import "bulma/bulma.sass"; + +.pointer { + cursor: pointer; +} + +.tasks li { + @extend .py-1, .px-5; + + list-style: none; + border-bottom: 1px solid #eee; + &:last-child { + border-bottom: 0px; + } + .value { + @extend .mb-3; + } +} + +.value { + @extend .pointer; +} + +.doit { + @extend .pointer; + + width: 16px; + height: 16px; + border: 1px solid #888; + background-color: transparent; + padding: 0rem; + + &:hover { + background-color: #eee; + } +} + +.ml-5-5 { + margin-left: 2rem !important; +} diff --git a/lib/planner/tasks.ex b/lib/planner/tasks.ex index 54e0ff3..a1c8407 100644 --- a/lib/planner/tasks.ex +++ b/lib/planner/tasks.ex @@ -63,4 +63,10 @@ defmodule Planner.Tasks do get_task!(id) |> Repo.delete() end + + def finish_task_by_id!(id) do + get_task!(id) + |> Task.finish_task() + |> Repo.update() + end end diff --git a/lib/planner/tasks/task.ex b/lib/planner/tasks/task.ex index 375afe9..33a4e44 100644 --- a/lib/planner/tasks/task.ex +++ b/lib/planner/tasks/task.ex @@ -20,4 +20,11 @@ defmodule Planner.Tasks.Task do |> validate_required([:value]) |> validate_length(:value, min: 3) end + + @doc false + def finish_task(task) do + now = NaiveDateTime.utc_now() |> NaiveDateTime.truncate(:second) + # TODO, this should check if `finished_at` is not nil, first + change(task, finished_at: now) + end end diff --git a/lib/planner_web/controllers/task_controller.ex b/lib/planner_web/controllers/task_controller.ex index 8ededf3..15cf7f2 100644 --- a/lib/planner_web/controllers/task_controller.ex +++ b/lib/planner_web/controllers/task_controller.ex @@ -72,6 +72,17 @@ defmodule PlannerWeb.TaskController do end end + # this is a little bit of a hack, but it'll do for now: + # pattern match on the empty case, we will assume this + # is a "task finished" action + def update(conn, %{"id" => id}) do + {_, task} = Tasks.finish_task_by_id!(id) + + conn + |> put_flash(:info, "task '#{task.value}' finished") + |> redirect(to: Routes.task_path(conn, :index)) + end + def delete(conn, %{"id" => id}) do {:ok, _task} = Tasks.delete_task_by_id!(id) diff --git a/lib/planner_web/live/landing_live.ex b/lib/planner_web/live/landing_live.ex index 2d8c79b..3823051 100644 --- a/lib/planner_web/live/landing_live.ex +++ b/lib/planner_web/live/landing_live.ex @@ -37,7 +37,7 @@ defmodule PlannerWeb.LandingLive do {:noreply, socket |> clear_flash(:info) - |> put_flash(:info, "task '" <> task.value <> "' created") + |> put_flash(:info, "task '#{task.value}' created") |> assign(:new_task_changeset, Tasks.change_task(%Task{}))} {:error, %Ecto.Changeset{} = changeset} -> diff --git a/lib/planner_web/templates/task/index.html.eex b/lib/planner_web/templates/task/index.html.eex index 3970948..bb77a4e 100644 --- a/lib/planner_web/templates/task/index.html.eex +++ b/lib/planner_web/templates/task/index.html.eex @@ -1,29 +1,9 @@ <%= link "new", to: Routes.task_path(@conn, :new), class: "button is-dark" %> -
- - - - - - - - <%= for task <- @tasks do %> - - - - <% end %> - -
task
- <%= if not is_nil(task.due_at) do %> -
- - due: <%= task.due_at %> - -
- <% end %> - <%= link to: Routes.task_path(@conn, :show, task.id), class: "has-text-black" do %> - <%= md_to_html task.value %> - <% end %> -
+
+
diff --git a/lib/planner_web/templates/task/task.html.eex b/lib/planner_web/templates/task/task.html.eex new file mode 100644 index 0000000..b8ebe9a --- /dev/null +++ b/lib/planner_web/templates/task/task.html.eex @@ -0,0 +1,19 @@ +
+
+ <%= link(to: Routes.task_path(@conn, :update, @task.id), method: :patch) do %> + + <% end %> +
+
+
+ <%= md_to_html(@task.value) %> +
+ <%= if not is_nil(@task.due_at) do %> +
+ + due: <%= @task.due_at %> + +
+ <% end %> +
+