project init

pull/258/head
marcelolop 2024-06-25 10:15:38 -05:00
parent d5415b7747
commit 2fc27fa500
1 changed files with 158 additions and 172 deletions

View File

@ -1,13 +1,12 @@
import { $, component$, useStore, useSignal } from "@builder.io/qwik";
import { useCSSTransition } from "qwik-transition";
import Icon from "~/components/core/icon";
import Icon from "~/components/core/icon"; // Verifique se o caminho está correto
import type { Priority, Section, Checklist } from '../../types/PSC';
import { marked } from "marked";
import { useLocalStorage } from "~/hooks/useLocalStorage";
import styles from './psc.module.css';
export default component$((props: { section: Section }) => {
const [completed, setCompleted] = useLocalStorage('PSC_PROGRESS', {});
@ -56,7 +55,6 @@ export default component$((props: { section: Section }) => {
return ignored.value[pointId] || false;
};
const isChecked = (pointId: string) => {
if (isIgnored(pointId)) return false;
return completed.value[pointId] || false;
@ -104,14 +102,14 @@ export default component$((props: { section: Section }) => {
}
};
const handleSort = $((column: string) => {
if (sortState.column === column) { // Reverse direction if same column
sortState.ascending = !sortState.ascending;
} else { // Sort table by column
sortState.column = column;
sortState.ascending = true; // Default to ascending
}
});
// const handleSort = $((column: string) => {
// if (sortState.column === column) { // Reverse direction if same column
// sortState.ascending = !sortState.ascending;
// } else { // Sort table by column
// sortState.column = column;
// sortState.ascending = true; // Default to ascending
// }
// });
const resetFilters = $(() => {
checklist.value = props.section.checklist;
@ -146,7 +144,6 @@ export default component$((props: { section: Section }) => {
return (
<>
<div class="flex flex-wrap justify-between items-center">
<div>
<progress class="progress w-64" value={percent} max="100"></progress>
@ -178,24 +175,24 @@ export default component$((props: { section: Section }) => {
<label onClick$={() => (filterState.show = 'all')}
class="p-2 rounded hover:bg-front transition-all cursor-pointer flex gap-2">
<span class="text-sm">All</span>
<input type="radio" name="show" class="radio radio-sm checked:radio-info" checked />
<input type="radio" name="show" class="radio radio-sm checked:radio-info" checked={filterState.show === 'all'} />
</label>
<label onClick$={() => (filterState.show = 'remaining')}
class="p-2 rounded hover:bg-front transition-all cursor-pointer flex gap-2">
<span class="text-sm">Remaining</span>
<input type="radio" name="show" class="radio radio-sm checked:radio-error" />
<input type="radio" name="show" class="radio radio-sm checked:radio-error" checked={filterState.show === 'remaining'} />
</label>
<label onClick$={() => (filterState.show = 'completed')}
class="p-2 rounded hover:bg-front transition-all cursor-pointer flex gap-2">
<span class="text-sm">Completed</span>
<input type="radio" name="show" class="radio radio-sm checked:radio-success" />
<input type="radio" name="show" class="radio radio-sm checked:radio-success" checked={filterState.show === 'completed'} />
</label>
</div>
{/* Filter by level */}
<div class="flex justify-end items-center gap-1">
<p class="font-bold text-sm">Filter</p>
<label class="p-2 rounded hover:bg-front transition-all cursor-pointer flex gap-2">
<span class="text-sm">Basic</span>
<span class="text-sm">Essential</span>
<input
type="checkbox"
checked={filterState.levels.essential}
@ -226,45 +223,42 @@ export default component$((props: { section: Section }) => {
</div>
)}
<table class="table">
<thead>
<tr>
{ [
{ id: 'done', text: 'Done?'},
{ id: 'advice', text: 'Advice' },
{ id: 'level', text: 'Level' }
].map((item) => (
<th
key={item.id}
class="cursor-pointer"
onClick$={() => handleSort(item.id)}
>
<span class="flex items-center gap-0.5 hover:text-primary transition">
<Icon width={12} height={14} icon="sort" />
{item.text}
</span>
</th>
))}
<th>Details</th>
</tr>
</thead>
<tbody>
<div class="grid grid-cols-1 gap-4">
{filteredChecklist.sort(sortChecklist).map((item, index) => {
const badgeColor = getBadgeClass(item.priority);
const itemId = generateId(item.point);
const isItemCompleted = isChecked(itemId);
const isItemIgnored = isIgnored(itemId);
return (
<tr key={index} class={[
'rounded-sm transition-all',
isItemCompleted ? `bg-${badgeColor} bg-opacity-10` : '',
isItemIgnored? 'bg-neutral bg-opacity-15' : '',
<details
key={index}
class={[
'rounded-lg p-4 shadow transition-all',
isItemCompleted ? `bg-${badgeColor} bg-opacity-10` : 'bg-base-100',
isItemIgnored ? 'opacity-50' : '',
!isItemIgnored && !isItemCompleted ? `hover:bg-opacity-5 hover:bg-${badgeColor}` : '',
]}>
<td class="text-center">
].join(' ')}
>
<summary class="flex justify-between items-center cursor-pointer">
<div class="flex-1 flex items-center gap-2">
<div class="flex flex-col gap-2">
<div class={`badge font-[600] gap-2 badge-${badgeColor}`}>
{item.priority}
</div>
<label for={`done-${itemId}`} class={`text-base font-bold ${isIgnored(itemId) ? 'line-through' : ''}`}>
{item.point}
</label>
</div>
<Icon width={18} height={16} icon="chevron-down" class={`${styles.arrow} ${styles.summaryIcon}`} />
</div>
<div class="flex gap-2 items-center">
<div class="flex items-center gap-1">
<label for={`done-${itemId}`} class="text-xs">Done</label>
<input
type="checkbox"
class={`checkbox checked:checkbox-${badgeColor} hover:checkbox-${badgeColor}`}
type="radio"
name={`status-${itemId}`}
class={`radio radio-${badgeColor}`}
id={`done-${itemId}`}
checked={isChecked(itemId)}
disabled={isIgnored(itemId)}
@ -274,11 +268,14 @@ export default component$((props: { section: Section }) => {
setCompleted(data);
}}
/>
<label for={`ignore-${itemId}`} class="text-small block opacity-50 mt-2">Ignore</label>
</div>
<div class="flex items-center gap-1">
<label for={`ignore-${itemId}`} class="text-xs">Ignore</label>
<input
type="checkbox"
type="radio"
name={`status-${itemId}`}
class={`radio radio-${badgeColor}`}
id={`ignore-${itemId}`}
class={`toggle toggle-xs toggle-${badgeColor}`}
checked={isIgnored(itemId)}
onClick$={() => {
const ignoredData = ignored.value;
@ -290,25 +287,14 @@ export default component$((props: { section: Section }) => {
setCompleted(completedData);
}}
/>
</td>
<td>
<label
for={`done-${itemId}`}
class={`text-base font-bold ${isIgnored(itemId) ? 'line-through' : 'cursor-pointer'}`}>
{item.point}
</label>
</td>
<td>
<div class={`badge gap-2 badge-${badgeColor}`}>
{item.priority}
</div>
</td>
<td class={styles.checklistItemDescription} dangerouslySetInnerHTML={parseMarkdown(item.details)}></td>
</tr>
)}
)}
</tbody>
</table>
</div>
</summary>
<div class={styles.checklistItemDescription} dangerouslySetInnerHTML={parseMarkdown(item.details)}></div>
</details>
)
})}
</div>
</>
);
});