@object-ui/plugin-kanban 0.3.1 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +20 -0
- package/CHANGELOG.md +14 -0
- package/dist/KanbanEnhanced-BMreTWOT.js +894 -0
- package/dist/KanbanImpl--kTNN_B8.js +144 -0
- package/dist/index-a4_RI-v7.js +579 -0
- package/dist/index.js +6 -3
- package/dist/index.umd.cjs +6 -3
- package/dist/{KanbanImpl-CUWM-JC-.js → sortable.esm-ZHwgFQIO.js} +1053 -1183
- package/dist/src/KanbanEnhanced.d.ts +36 -0
- package/dist/src/KanbanEnhanced.d.ts.map +1 -0
- package/dist/src/ObjectKanban.d.ts +10 -0
- package/dist/src/ObjectKanban.d.ts.map +1 -0
- package/dist/src/index.d.ts +9 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/types.d.ts +21 -1
- package/dist/src/types.d.ts.map +1 -1
- package/package.json +11 -8
- package/src/KanbanEnhanced.tsx +394 -0
- package/src/ObjectKanban.msw.test.tsx +91 -0
- package/src/ObjectKanban.tsx +188 -0
- package/src/__tests__/KanbanEnhanced.test.tsx +259 -0
- package/src/index.test.ts +9 -9
- package/src/index.tsx +111 -5
- package/src/registration.test.tsx +26 -0
- package/src/types.ts +25 -0
- package/vite.config.ts +13 -0
- package/vitest.config.ts +12 -0
- package/vitest.setup.ts +1 -0
- package/dist/index-BV3FWhCb.js +0 -395
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import { j as e } from "./index-a4_RI-v7.js";
|
|
2
|
+
import * as x from "react";
|
|
3
|
+
import { u as L, a as P, D as T, c as F, b as H, d as M, P as $, e as k, S as q, v as z, C as G } from "./sortable.esm-ZHwgFQIO.js";
|
|
4
|
+
import { Badge as B, ScrollArea as J, Card as Q, CardHeader as U, CardTitle as V, CardDescription as W, CardContent as X } from "@object-ui/components";
|
|
5
|
+
const E = (...s) => s.filter(Boolean).join(" ");
|
|
6
|
+
function R({ card: s }) {
|
|
7
|
+
const {
|
|
8
|
+
attributes: f,
|
|
9
|
+
listeners: d,
|
|
10
|
+
setNodeRef: u,
|
|
11
|
+
transform: p,
|
|
12
|
+
transition: t,
|
|
13
|
+
isDragging: n
|
|
14
|
+
} = k({ id: s.id }), b = {
|
|
15
|
+
transform: G.Transform.toString(p),
|
|
16
|
+
transition: t,
|
|
17
|
+
opacity: n ? 0.5 : void 0
|
|
18
|
+
};
|
|
19
|
+
return /* @__PURE__ */ e.jsx("div", { ref: u, style: b, ...f, ...d, children: /* @__PURE__ */ e.jsxs(Q, { className: "mb-2 cursor-grab active:cursor-grabbing border-border bg-card/60 hover:border-primary/40 hover:shadow-lg hover:shadow-primary/10 transition-all duration-300 group", children: [
|
|
20
|
+
/* @__PURE__ */ e.jsxs(U, { className: "p-4", children: [
|
|
21
|
+
/* @__PURE__ */ e.jsx(V, { className: "text-sm font-medium font-mono tracking-tight text-foreground group-hover:text-primary transition-colors", children: s.title }),
|
|
22
|
+
s.description && /* @__PURE__ */ e.jsx(W, { className: "text-xs text-muted-foreground font-mono", children: s.description })
|
|
23
|
+
] }),
|
|
24
|
+
s.badges && s.badges.length > 0 && /* @__PURE__ */ e.jsx(X, { className: "p-4 pt-0", children: /* @__PURE__ */ e.jsx("div", { className: "flex flex-wrap gap-1", children: s.badges.map((S, y) => /* @__PURE__ */ e.jsx(B, { variant: S.variant || "default", className: "text-xs", children: S.label }, y)) }) })
|
|
25
|
+
] }) });
|
|
26
|
+
}
|
|
27
|
+
function Y({
|
|
28
|
+
column: s,
|
|
29
|
+
cards: f
|
|
30
|
+
}) {
|
|
31
|
+
const d = f || [], { setNodeRef: u } = k({
|
|
32
|
+
id: s.id,
|
|
33
|
+
data: {
|
|
34
|
+
type: "column"
|
|
35
|
+
}
|
|
36
|
+
}), p = s.limit && d.length >= s.limit;
|
|
37
|
+
return /* @__PURE__ */ e.jsxs(
|
|
38
|
+
"div",
|
|
39
|
+
{
|
|
40
|
+
ref: u,
|
|
41
|
+
className: E(
|
|
42
|
+
"flex flex-col w-80 flex-shrink-0 rounded-lg border border-border bg-card/20 backdrop-blur-sm shadow-xl",
|
|
43
|
+
s.className
|
|
44
|
+
),
|
|
45
|
+
children: [
|
|
46
|
+
/* @__PURE__ */ e.jsx("div", { className: "p-4 border-b border-border/50 bg-muted/20", children: /* @__PURE__ */ e.jsxs("div", { className: "flex items-center justify-between", children: [
|
|
47
|
+
/* @__PURE__ */ e.jsx("h3", { className: "font-mono text-sm font-semibold tracking-wider text-primary/90 uppercase", children: s.title }),
|
|
48
|
+
/* @__PURE__ */ e.jsxs("div", { className: "flex items-center gap-2", children: [
|
|
49
|
+
/* @__PURE__ */ e.jsxs("span", { className: "font-mono text-xs text-muted-foreground", children: [
|
|
50
|
+
d.length,
|
|
51
|
+
s.limit && ` / ${s.limit}`
|
|
52
|
+
] }),
|
|
53
|
+
p && /* @__PURE__ */ e.jsx(B, { variant: "destructive", className: "text-xs", children: "Full" })
|
|
54
|
+
] })
|
|
55
|
+
] }) }),
|
|
56
|
+
/* @__PURE__ */ e.jsx(J, { className: "flex-1 p-4", children: /* @__PURE__ */ e.jsx(
|
|
57
|
+
q,
|
|
58
|
+
{
|
|
59
|
+
items: d.map((t) => t.id),
|
|
60
|
+
strategy: z,
|
|
61
|
+
children: /* @__PURE__ */ e.jsx("div", { className: "space-y-2", children: d.map((t) => /* @__PURE__ */ e.jsx(R, { card: t }, t.id)) })
|
|
62
|
+
}
|
|
63
|
+
) })
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
function se({ columns: s, onCardMove: f, className: d }) {
|
|
69
|
+
const [u, p] = x.useState(null), t = x.useMemo(() => (s || []).map((r) => ({
|
|
70
|
+
...r,
|
|
71
|
+
cards: r.cards || []
|
|
72
|
+
})), [s]), [n, b] = x.useState(t);
|
|
73
|
+
x.useEffect(() => {
|
|
74
|
+
b(t);
|
|
75
|
+
}, [t]);
|
|
76
|
+
const S = L(
|
|
77
|
+
P($, {
|
|
78
|
+
activationConstraint: {
|
|
79
|
+
distance: 8
|
|
80
|
+
}
|
|
81
|
+
})
|
|
82
|
+
), y = (r) => {
|
|
83
|
+
const { active: a } = r, i = A(a.id);
|
|
84
|
+
p(i);
|
|
85
|
+
}, O = (r) => {
|
|
86
|
+
const { active: a, over: i } = r;
|
|
87
|
+
if (p(null), !i) return;
|
|
88
|
+
const c = a.id, g = i.id;
|
|
89
|
+
if (c === g) return;
|
|
90
|
+
const l = I(c), h = I(g) || K(g);
|
|
91
|
+
if (!(!l || !h))
|
|
92
|
+
if (l.id === h.id) {
|
|
93
|
+
const m = [...l.cards], v = m.findIndex((o) => o.id === c), D = m.findIndex((o) => o.id === g), w = M(m, v, D);
|
|
94
|
+
b(
|
|
95
|
+
(o) => o.map(
|
|
96
|
+
(C) => C.id === l.id ? { ...C, cards: w } : C
|
|
97
|
+
)
|
|
98
|
+
);
|
|
99
|
+
} else {
|
|
100
|
+
const m = [...l.cards], v = [...h.cards], D = m.findIndex((j) => j.id === c), o = g === h.id ? v.length : v.findIndex((j) => j.id === g), [C] = m.splice(D, 1);
|
|
101
|
+
v.splice(o, 0, C), b(
|
|
102
|
+
(j) => j.map((N) => N.id === l.id ? { ...N, cards: m } : N.id === h.id ? { ...N, cards: v } : N)
|
|
103
|
+
), f && f(c, l.id, h.id, o);
|
|
104
|
+
}
|
|
105
|
+
}, A = x.useCallback(
|
|
106
|
+
(r) => {
|
|
107
|
+
for (const a of n) {
|
|
108
|
+
const i = a.cards.find((c) => c.id === r);
|
|
109
|
+
if (i) return i;
|
|
110
|
+
}
|
|
111
|
+
return null;
|
|
112
|
+
},
|
|
113
|
+
[n]
|
|
114
|
+
), I = x.useCallback(
|
|
115
|
+
(r) => n.find((a) => a.cards.some((i) => i.id === r)) || null,
|
|
116
|
+
[n]
|
|
117
|
+
), K = x.useCallback(
|
|
118
|
+
(r) => n.find((a) => a.id === r) || null,
|
|
119
|
+
[n]
|
|
120
|
+
);
|
|
121
|
+
return /* @__PURE__ */ e.jsxs(
|
|
122
|
+
T,
|
|
123
|
+
{
|
|
124
|
+
sensors: S,
|
|
125
|
+
collisionDetection: F,
|
|
126
|
+
onDragStart: y,
|
|
127
|
+
onDragEnd: O,
|
|
128
|
+
children: [
|
|
129
|
+
/* @__PURE__ */ e.jsx("div", { className: E("flex gap-4 overflow-x-auto p-4", d), children: n.map((r) => /* @__PURE__ */ e.jsx(
|
|
130
|
+
Y,
|
|
131
|
+
{
|
|
132
|
+
column: r,
|
|
133
|
+
cards: r.cards
|
|
134
|
+
},
|
|
135
|
+
r.id
|
|
136
|
+
)) }),
|
|
137
|
+
/* @__PURE__ */ e.jsx(H, { children: u ? /* @__PURE__ */ e.jsx(R, { card: u }) : null })
|
|
138
|
+
]
|
|
139
|
+
}
|
|
140
|
+
);
|
|
141
|
+
}
|
|
142
|
+
export {
|
|
143
|
+
se as default
|
|
144
|
+
};
|