summaryrefslogtreecommitdiff
path: root/app/views/dashboard/todos/_todo.html.haml
blob: 47bc8f5c95b44fd6afbc162bb46dc1349113cf04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
%li.todo.gl-hover-border-blue-200.gl-hover-bg-blue-50.gl-hover-cursor-pointer{ class: "todo-#{todo.done? ? 'done' : 'pending'}", id: dom_id(todo), data: { url: todo_target_path(todo) } }
  .gl-display-flex.gl-flex-direction-row
    .todo-avatar.gl-display-none.gl-sm-display-inline-block
      = author_avatar(todo, size: 40)

    .todo-item.flex-fill.gl-overflow-hidden.gl-overflow-x-auto.gl-align-self-center{ data: { qa_selector: "todo_item_container" } }
      .todo-title.gl-mb-3.gl-md-mb-0
        - if todo_author_display?(todo)
          = todo_target_state_pill(todo)

          %span.title-item.author-name.bold
            - if todo.author
              = link_to_author(todo, self_added: todo.self_added?)
            - else
              = _('(removed)')

        %span.title-item.action-name{ data: { qa_selector: "todo_action_name_content" } }
          = todo_action_name(todo)

        %span.title-item.todo-label.todo-target-link
          - if todo.target
            = todo_target_link(todo)
          - else
            = _("(removed)")

        %span.title-item.todo-target-title{ data: { qa_selector: "todo_target_title_content" } }
          = todo_target_title(todo)

        %span.title-item.todo-project.todo-label
          = s_('Todo|at %{todo_parent_path}').html_safe % { todo_parent_path: todo_parent_path(todo) }

        - if todo.self_assigned?
          %span.title-item.action-name
            = todo_self_addressing(todo)

        %span.title-item
          ·

        %span.title-item.todo-timestamp
          #{time_ago_with_tooltip(todo.created_at)}
          = todo_due_date(todo)

      - if todo.note.present?
        .todo-body
          .todo-note.break-word
            .md
              = first_line_in_markdown(todo, :body, 150, project: todo.project, group: todo.group)

    .todo-actions.gl-ml-3
      - if todo.pending?
        = link_to dashboard_todo_path(todo), method: :delete, class: 'gl-button gl-bg-gray-50 btn btn-default btn-loading d-flex align-items-center js-done-todo', data: { href: dashboard_todo_path(todo) } do
          = gl_loading_icon(inline: true)
          = _('Done')
        = link_to restore_dashboard_todo_path(todo), method: :patch, class: 'gl-button gl-bg-gray-50 btn btn-default btn-loading d-flex align-items-center js-undo-todo hidden', data: { href: restore_dashboard_todo_path(todo) } do
          = gl_loading_icon(inline: true)
          = _('Undo')
      - else
        = link_to restore_dashboard_todo_path(todo), method: :patch, class: 'gl-button gl-bg-gray-50 btn btn-default btn-loading d-flex align-items-center js-add-todo', data: { href: restore_dashboard_todo_path(todo) } do
          = gl_loading_icon(inline: true)
          = _('Add a to do')