Fix I1 inline panel task row layout
This commit is contained in:
@@ -175,7 +175,7 @@
|
||||
|
||||
<details class="relative">
|
||||
<summary class="list-none cursor-pointer rounded-xl border border-amber-200 bg-amber-50 px-3 py-2 text-sm font-bold text-amber-700 hover:bg-amber-100">! Blocked</summary>
|
||||
<form method="post" action="/employee/work/engagements/{{ board.engagement_id }}/tasks/{{ task.id }}/quick-action" class="absolute right-0 z-30 mt-2 w-80 rounded-xl border border-amber-200 bg-white p-3 shadow-xl">
|
||||
<form method="post" action="/employee/work/engagements/{{ board.engagement_id }}/tasks/{{ task.id }}/quick-action" class="absolute right-0 z-20 mt-2 w-80 rounded-xl border border-amber-200 bg-white p-3 shadow-xl">
|
||||
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
|
||||
<input type="hidden" name="action" value="blocked">
|
||||
<label class="mb-1 block text-xs font-semibold uppercase tracking-wide text-slate-500">Reason</label>
|
||||
@@ -189,7 +189,7 @@
|
||||
|
||||
<details class="relative">
|
||||
<summary class="list-none cursor-pointer rounded-xl border border-red-200 bg-red-50 px-3 py-2 text-sm font-bold text-red-700 hover:bg-red-100">✕ N/A</summary>
|
||||
<form method="post" action="/employee/work/engagements/{{ board.engagement_id }}/tasks/{{ task.id }}/quick-action" class="absolute right-0 z-30 mt-2 w-80 rounded-xl border border-red-200 bg-white p-3 shadow-xl">
|
||||
<form method="post" action="/employee/work/engagements/{{ board.engagement_id }}/tasks/{{ task.id }}/quick-action" class="absolute right-0 z-20 mt-2 w-80 rounded-xl border border-red-200 bg-white p-3 shadow-xl">
|
||||
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
|
||||
<input type="hidden" name="action" value="na">
|
||||
<label class="mb-1 block text-xs font-semibold uppercase tracking-wide text-slate-500">Short reason</label>
|
||||
@@ -205,21 +205,21 @@
|
||||
<button type="button"
|
||||
data-i1-panel-trigger="documents"
|
||||
data-i1-task-id="{{ task.id }}"
|
||||
class="rounded-xl border border-violet-200 bg-violet-50 px-3 py-2 text-sm font-semibold text-violet-700 hover:bg-violet-100">
|
||||
class="rounded-xl border border-violet-200 bg-violet-50 text-violet-700 hover:bg-violet-100 px-3 py-2 text-sm font-semibold">
|
||||
Documents{% if task.i1_documents %} · {{ task.i1_documents|length }}{% endif %}
|
||||
</button>
|
||||
|
||||
<button type="button"
|
||||
data-i1-panel-trigger="messages"
|
||||
data-i1-task-id="{{ task.id }}"
|
||||
class="rounded-xl border border-sky-200 bg-sky-50 px-3 py-2 text-sm font-semibold text-sky-700 hover:bg-sky-100">
|
||||
class="rounded-xl border border-sky-200 bg-sky-50 text-sky-700 hover:bg-sky-100 px-3 py-2 text-sm font-semibold">
|
||||
Message / Clarification{% if task.i1_communications %} · {{ task.i1_communications|length }}{% endif %}
|
||||
</button>
|
||||
|
||||
<button type="button"
|
||||
data-i1-panel-trigger="details"
|
||||
data-i1-task-id="{{ task.id }}"
|
||||
class="rounded-xl border border-slate-300 bg-white px-3 py-2 text-sm font-semibold text-slate-700 hover:bg-slate-50">
|
||||
class="rounded-xl border border-slate-300 bg-white text-slate-700 hover:bg-slate-50 px-3 py-2 text-sm font-semibold">
|
||||
Details
|
||||
</button>
|
||||
</div>
|
||||
@@ -236,7 +236,7 @@
|
||||
</div>
|
||||
|
||||
{% if task.i1_documents %}
|
||||
<div class="mt-3 divide-y divide-slate-100 rounded-xl border border-slate-200 bg-white">
|
||||
<div class="mt-3 divide-y divide-slate-100 rounded-xl border border-slate-200">
|
||||
{% for doc in task.i1_documents[:5] %}
|
||||
{% set latest = doc.versions[0] if doc.versions else none %}
|
||||
<div class="flex flex-wrap items-center justify-between gap-2 px-3 py-2 text-sm">
|
||||
@@ -249,7 +249,7 @@
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% else %}
|
||||
<div class="mt-3 rounded-xl border border-dashed border-slate-300 bg-white px-4 py-3 text-sm text-slate-500">No document attached yet.</div>
|
||||
<div class="mt-3 rounded-xl border border-dashed border-slate-300 px-4 py-3 text-sm text-slate-500">No document attached yet.</div>
|
||||
{% endif %}
|
||||
|
||||
<form method="post" action="/documents/tasks/{{ task.id }}/upload" enctype="multipart/form-data" class="mt-3 flex flex-col gap-2 sm:flex-row sm:items-end">
|
||||
@@ -263,7 +263,6 @@
|
||||
<button type="submit" class="rounded-lg bg-violet-600 px-4 py-2 text-sm font-semibold text-white hover:bg-violet-700">Upload</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div data-i1-panel="messages" class="hidden w-full rounded-2xl border border-sky-200 bg-sky-50/40 p-4">
|
||||
<div class="flex flex-wrap items-start justify-between gap-3">
|
||||
<div>
|
||||
@@ -274,7 +273,7 @@
|
||||
</div>
|
||||
|
||||
{% if task.i1_communications %}
|
||||
<div class="mt-3 max-h-52 divide-y divide-slate-100 overflow-y-auto rounded-xl border border-slate-200 bg-white">
|
||||
<div class="mt-3 max-h-52 divide-y divide-slate-100 overflow-y-auto rounded-xl border border-slate-200">
|
||||
{% for item in task.i1_communications[:5] %}
|
||||
<div class="px-3 py-2">
|
||||
<div class="flex flex-wrap items-center justify-between gap-2 text-[11px] text-slate-500">
|
||||
@@ -287,25 +286,22 @@
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% else %}
|
||||
<div class="mt-3 rounded-xl border border-dashed border-slate-300 bg-white px-4 py-3 text-sm text-slate-500">No message or clarification yet.</div>
|
||||
<div class="mt-3 rounded-xl border border-dashed border-slate-300 px-4 py-3 text-sm text-slate-500">No message or clarification yet.</div>
|
||||
{% endif %}
|
||||
|
||||
<form method="post" action="/employee/work/tasks/{{ task.id }}/communication" class="mt-3 grid gap-2 sm:grid-cols-2">
|
||||
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
|
||||
<input type="hidden" name="return_to" value="/employee/work/engagements/{{ board.engagement_id }}?task_id={{ task.id }}#task-{{ task.id }}">
|
||||
<select name="comment_type" class="rounded-lg border border-slate-300 bg-white px-3 py-2 text-sm">
|
||||
<select name="comment_type" class="rounded-lg border border-slate-300 px-3 py-2 text-sm">
|
||||
{% for code, label in board.communication_types %}<option value="{{ code }}">{{ label }}</option>{% endfor %}
|
||||
</select>
|
||||
<select name="visibility" class="rounded-lg border border-slate-300 bg-white px-3 py-2 text-sm">
|
||||
<select name="visibility" class="rounded-lg border border-slate-300 px-3 py-2 text-sm">
|
||||
{% for code, label in board.communication_visibilities %}<option value="{{ code }}">{{ label }}</option>{% endfor %}
|
||||
</select>
|
||||
<textarea name="message" rows="2" required class="sm:col-span-2 w-full rounded-lg border border-slate-300 bg-white px-3 py-2 text-sm" placeholder="Type message or clarification"></textarea>
|
||||
<div class="sm:col-span-2 flex justify-end">
|
||||
<button type="submit" class="rounded-lg bg-sky-600 px-4 py-2 text-sm font-semibold text-white hover:bg-sky-700">Send</button>
|
||||
</div>
|
||||
<textarea name="message" rows="2" required class="sm:col-span-2 w-full rounded-lg border border-slate-300 px-3 py-2 text-sm" placeholder="Type message or clarification"></textarea>
|
||||
<div class="sm:col-span-2 flex justify-end"><button type="submit" class="rounded-lg bg-sky-600 px-4 py-2 text-sm font-semibold text-white hover:bg-sky-700">Send</button></div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div data-i1-panel="details" class="hidden w-full rounded-2xl border border-slate-200 bg-slate-50 p-4">
|
||||
<form method="post" action="/employee/work/engagements/{{ board.engagement_id }}/tasks/{{ task.id }}/save" class="space-y-4">
|
||||
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
|
||||
@@ -344,15 +340,14 @@
|
||||
<input type="text" name="remarks" value="{{ task.remarks or '' }}" class="w-full rounded-lg border border-slate-300 px-3 py-2 text-sm" placeholder="Optional">
|
||||
</div>
|
||||
|
||||
<div class="flex justify-end">
|
||||
<div class="flex flex-wrap items-center justify-between gap-2">
|
||||
<div class="text-xs text-slate-500">Documents and messages can be added directly from this checklist row.</div>
|
||||
<button type="submit" class="rounded-lg bg-brand-600 px-4 py-2 text-sm font-semibold text-white">Save Details</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
@@ -399,13 +394,13 @@ document.addEventListener("click", function (event) {
|
||||
if (!requested) return;
|
||||
|
||||
const wasOpen = !requested.classList.contains("hidden");
|
||||
|
||||
container.querySelectorAll("[data-i1-panel]").forEach(function (panel) {
|
||||
panel.classList.add("hidden");
|
||||
});
|
||||
|
||||
if (!wasOpen) {
|
||||
requested.classList.remove("hidden");
|
||||
requested.scrollIntoView({ behavior: "smooth", block: "nearest" });
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user