@churchapps/apphelper 0.7.3 → 0.7.4
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DroppableArea.d.ts","sourceRoot":"","sources":["../../../../src/website/components/admin/DroppableArea.tsx"],"names":[],"mappings":"AAGA,OAAO,KAA6C,MAAM,OAAO,CAAC;AAGlE,KAAK,KAAK,GAAG;IACX,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,MAAM,EAAE,GAAG,CAAC;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI,CAAC;IAC5B,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,gBAAgB,CAAC,EAAE,CAAC,UAAU,EAAE,OAAO,KAAK,IAAI,CAAA;IAChD,gBAAgB,CAAC,EAAE,OAAO,CAAA;CAC3B,CAAC;
|
|
1
|
+
{"version":3,"file":"DroppableArea.d.ts","sourceRoot":"","sources":["../../../../src/website/components/admin/DroppableArea.tsx"],"names":[],"mappings":"AAGA,OAAO,KAA6C,MAAM,OAAO,CAAC;AAGlE,KAAK,KAAK,GAAG;IACX,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,MAAM,EAAE,GAAG,CAAC;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI,CAAC;IAC5B,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,gBAAgB,CAAC,EAAE,CAAC,UAAU,EAAE,OAAO,KAAK,IAAI,CAAA;IAChD,gBAAgB,CAAC,EAAE,OAAO,CAAA;CAC3B,CAAC;AA+FF,wBAAgB,aAAa,CAAC,KAAK,EAAE,KAAK,2CAmEzC"}
|
|
@@ -3,110 +3,146 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
3
3
|
import { Icon } from "@mui/material";
|
|
4
4
|
import { useEffect, useState } from "react";
|
|
5
5
|
import { useDrop } from "react-dnd";
|
|
6
|
+
const FLOW_HEIGHT = 20; // fixed flow size, never changes (no layout shift)
|
|
7
|
+
const HIT_OVERSHOOT = 16; // how far the visible/hit pill extends beyond the gap during drag
|
|
8
|
+
const WRAPPER_IDLE = {
|
|
9
|
+
position: "relative",
|
|
10
|
+
width: "100%",
|
|
11
|
+
height: `${FLOW_HEIGHT}px`,
|
|
12
|
+
pointerEvents: "none",
|
|
13
|
+
boxSizing: "border-box"
|
|
14
|
+
};
|
|
15
|
+
const WRAPPER_ACTIVE = {
|
|
16
|
+
...WRAPPER_IDLE,
|
|
17
|
+
pointerEvents: "auto"
|
|
18
|
+
};
|
|
19
|
+
const PILL_BASE = {
|
|
20
|
+
position: "absolute",
|
|
21
|
+
left: 0,
|
|
22
|
+
right: 0,
|
|
23
|
+
borderRadius: "8px",
|
|
24
|
+
alignItems: "center",
|
|
25
|
+
justifyContent: "center",
|
|
26
|
+
overflow: "hidden",
|
|
27
|
+
boxSizing: "border-box",
|
|
28
|
+
transition: "all 0.15s ease-out",
|
|
29
|
+
zIndex: 5
|
|
30
|
+
};
|
|
31
|
+
const PILL_HIDDEN = {
|
|
32
|
+
...PILL_BASE,
|
|
33
|
+
top: 0,
|
|
34
|
+
bottom: 0,
|
|
35
|
+
display: "none"
|
|
36
|
+
};
|
|
37
|
+
const PILL_VISIBLE = {
|
|
38
|
+
...PILL_BASE,
|
|
39
|
+
top: -HIT_OVERSHOOT,
|
|
40
|
+
bottom: -HIT_OVERSHOOT,
|
|
41
|
+
display: "flex"
|
|
42
|
+
};
|
|
43
|
+
const VARIANT_STYLES = {
|
|
44
|
+
justDropped: {
|
|
45
|
+
border: "2px solid rgba(76, 175, 80, 1)",
|
|
46
|
+
backgroundColor: "rgba(76, 175, 80, 0.95)",
|
|
47
|
+
boxShadow: "0 4px 16px rgba(76, 175, 80, 0.5)"
|
|
48
|
+
},
|
|
49
|
+
isOver: {
|
|
50
|
+
border: "2px solid rgba(25, 118, 210, 1)",
|
|
51
|
+
backgroundColor: "rgba(25, 118, 210, 0.95)",
|
|
52
|
+
boxShadow: "0 4px 20px rgba(25, 118, 210, 0.55)"
|
|
53
|
+
},
|
|
54
|
+
active: {
|
|
55
|
+
border: "2px dashed rgba(25, 118, 210, 0.9)",
|
|
56
|
+
backgroundColor: "rgba(25, 118, 210, 0.55)"
|
|
57
|
+
}
|
|
58
|
+
};
|
|
59
|
+
const LEGACY_HIDDEN = {
|
|
60
|
+
position: "absolute",
|
|
61
|
+
top: 0,
|
|
62
|
+
left: 0,
|
|
63
|
+
width: "100%",
|
|
64
|
+
height: "4px",
|
|
65
|
+
zIndex: 1,
|
|
66
|
+
border: "none",
|
|
67
|
+
backgroundColor: "transparent"
|
|
68
|
+
};
|
|
69
|
+
const LEGACY_ACTIVE_BASE = {
|
|
70
|
+
width: "100%",
|
|
71
|
+
height: `${FLOW_HEIGHT}px`,
|
|
72
|
+
padding: "0 10px",
|
|
73
|
+
borderRadius: "6px",
|
|
74
|
+
display: "flex",
|
|
75
|
+
alignItems: "center",
|
|
76
|
+
justifyContent: "center",
|
|
77
|
+
overflow: "hidden",
|
|
78
|
+
boxSizing: "border-box",
|
|
79
|
+
transition: "all 0.15s ease-out"
|
|
80
|
+
};
|
|
81
|
+
function getVariant(justDropped, isOver, canDrop) {
|
|
82
|
+
if (justDropped)
|
|
83
|
+
return "justDropped";
|
|
84
|
+
if (isOver)
|
|
85
|
+
return "isOver";
|
|
86
|
+
if (canDrop)
|
|
87
|
+
return "active";
|
|
88
|
+
return null;
|
|
89
|
+
}
|
|
6
90
|
export function DroppableArea(props) {
|
|
7
91
|
const { accept, onDrop, text, updateIsDragging, dndDeps, hideWhenInactive = true } = props;
|
|
8
|
-
const [isDragging, setIsDragging] = useState(false);
|
|
9
92
|
const [justDropped, setJustDropped] = useState(false);
|
|
10
93
|
const [{ isOver, canDrop }, drop] = useDrop(() => ({
|
|
11
94
|
accept,
|
|
12
95
|
drop: (data) => {
|
|
13
96
|
onDrop(data);
|
|
14
97
|
setJustDropped(true);
|
|
15
|
-
setTimeout(() => setJustDropped(false), 600);
|
|
16
98
|
},
|
|
17
99
|
collect: (monitor) => ({
|
|
18
100
|
isOver: !!monitor.isOver(),
|
|
19
101
|
canDrop: !!monitor.canDrop()
|
|
20
102
|
})
|
|
21
103
|
}), [dndDeps, onDrop]);
|
|
22
|
-
// Update dragging state via effect to avoid state updates during render
|
|
23
|
-
useEffect(() => {
|
|
24
|
-
setIsDragging(canDrop);
|
|
25
|
-
}, [canDrop]);
|
|
26
104
|
useEffect(() => {
|
|
27
105
|
if (updateIsDragging)
|
|
28
|
-
updateIsDragging(
|
|
29
|
-
}, [
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
if (hideWhenInactive && !canDrop) {
|
|
37
|
-
return {
|
|
38
|
-
width: "100%",
|
|
39
|
-
height: fixedHeight,
|
|
40
|
-
border: "none",
|
|
41
|
-
backgroundColor: "transparent",
|
|
42
|
-
pointerEvents: "none",
|
|
43
|
-
boxSizing: "border-box"
|
|
44
|
-
};
|
|
45
|
-
}
|
|
46
|
-
// Legacy behavior (when hideWhenInactive is false) - absolute positioning
|
|
47
|
-
if (!hideWhenInactive && !canDrop) {
|
|
48
|
-
return {
|
|
49
|
-
position: "absolute",
|
|
50
|
-
top: 0,
|
|
51
|
-
left: 0,
|
|
52
|
-
width: "100%",
|
|
53
|
-
height: "4px",
|
|
54
|
-
zIndex: 1,
|
|
55
|
-
border: "none",
|
|
56
|
-
backgroundColor: "transparent"
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
// When dragging - same height, just show the styling
|
|
60
|
-
const baseStyle = {
|
|
61
|
-
width: "100%",
|
|
62
|
-
height: fixedHeight,
|
|
63
|
-
padding: "0 10px",
|
|
64
|
-
borderRadius: "6px",
|
|
65
|
-
display: "flex",
|
|
66
|
-
alignItems: "center",
|
|
67
|
-
justifyContent: "center",
|
|
68
|
-
overflow: "hidden",
|
|
69
|
-
boxSizing: "border-box",
|
|
70
|
-
transition: "all 0.15s ease-out"
|
|
71
|
-
};
|
|
72
|
-
if (justDropped) {
|
|
73
|
-
return {
|
|
74
|
-
...baseStyle,
|
|
75
|
-
border: "2px solid rgba(76, 175, 80, 1)",
|
|
76
|
-
backgroundColor: "rgba(76, 175, 80, 1)",
|
|
77
|
-
boxShadow: "0 4px 12px rgba(76, 175, 80, 0.6)"
|
|
78
|
-
};
|
|
79
|
-
}
|
|
80
|
-
if (isOver) {
|
|
81
|
-
return {
|
|
82
|
-
...baseStyle,
|
|
83
|
-
border: "3px solid rgba(25, 118, 210, 1)",
|
|
84
|
-
backgroundColor: "rgba(25, 118, 210, 1)",
|
|
85
|
-
boxShadow: "0 0 20px rgba(25, 118, 210, 0.9), 0 0 40px rgba(25, 118, 210, 0.5)",
|
|
86
|
-
transform: "scaleY(1.3)",
|
|
87
|
-
transition: "all 0.15s ease-out"
|
|
88
|
-
};
|
|
89
|
-
}
|
|
90
|
-
return {
|
|
91
|
-
...baseStyle,
|
|
92
|
-
border: "2px dashed rgba(25, 118, 210, 1)",
|
|
93
|
-
backgroundColor: "rgba(25, 118, 210, 0.7)"
|
|
94
|
-
};
|
|
95
|
-
};
|
|
96
|
-
// Display text based on state
|
|
106
|
+
updateIsDragging(canDrop);
|
|
107
|
+
}, [canDrop, updateIsDragging]);
|
|
108
|
+
useEffect(() => {
|
|
109
|
+
if (!justDropped)
|
|
110
|
+
return;
|
|
111
|
+
const t = setTimeout(() => setJustDropped(false), 600);
|
|
112
|
+
return () => clearTimeout(t);
|
|
113
|
+
}, [justDropped]);
|
|
97
114
|
const displayText = text || "Drop here to add";
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
115
|
+
const variant = getVariant(justDropped, isOver, canDrop);
|
|
116
|
+
if (!hideWhenInactive) {
|
|
117
|
+
const legacyStyle = variant
|
|
118
|
+
? { ...LEGACY_ACTIVE_BASE, ...VARIANT_STYLES[variant] }
|
|
119
|
+
: LEGACY_HIDDEN;
|
|
120
|
+
return (_jsx("div", { ref: drop, style: legacyStyle, "data-testid": "droppable-area", "aria-label": canDrop ? `Drop zone: ${displayText}` : "", role: canDrop ? "region" : undefined, children: canDrop && _jsx(PillContents, { isOver: isOver, displayText: displayText }) }));
|
|
121
|
+
}
|
|
122
|
+
const pillStyle = variant
|
|
123
|
+
? { ...PILL_VISIBLE, ...VARIANT_STYLES[variant] }
|
|
124
|
+
: PILL_HIDDEN;
|
|
125
|
+
return (_jsx("div", { style: canDrop ? WRAPPER_ACTIVE : WRAPPER_IDLE, children: _jsx("div", { ref: drop, style: pillStyle, "data-testid": "droppable-area", "aria-label": canDrop ? `Drop zone: ${displayText}` : "", role: canDrop ? "region" : undefined, children: canDrop && _jsx(PillContents, { isOver: isOver, displayText: displayText }) }) }));
|
|
126
|
+
}
|
|
127
|
+
const PILL_CONTENTS_STYLE = {
|
|
128
|
+
display: "flex",
|
|
129
|
+
alignItems: "center",
|
|
130
|
+
justifyContent: "center",
|
|
131
|
+
gap: "8px",
|
|
132
|
+
color: "#fff",
|
|
133
|
+
fontSize: "0.85rem",
|
|
134
|
+
fontWeight: 600,
|
|
135
|
+
textShadow: "0 1px 2px rgba(0, 0, 0, 0.15)"
|
|
136
|
+
};
|
|
137
|
+
const ICON_BASE_STYLE = {
|
|
138
|
+
fontSize: "1.25rem",
|
|
139
|
+
transition: "transform 0.2s ease"
|
|
140
|
+
};
|
|
141
|
+
const ICON_SCALED_STYLE = {
|
|
142
|
+
...ICON_BASE_STYLE,
|
|
143
|
+
transform: "scale(1.15)"
|
|
144
|
+
};
|
|
145
|
+
function PillContents({ isOver, displayText }) {
|
|
146
|
+
return (_jsxs("div", { style: PILL_CONTENTS_STYLE, children: [_jsx(Icon, { style: isOver ? ICON_SCALED_STYLE : ICON_BASE_STYLE, children: isOver ? "add_circle" : "add_circle_outline" }), _jsx("span", { children: displayText })] }));
|
|
111
147
|
}
|
|
112
148
|
//# sourceMappingURL=DroppableArea.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DroppableArea.js","sourceRoot":"","sources":["../../../../src/website/components/admin/DroppableArea.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAc,EAAiB,SAAS,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAClE,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAYpC,MAAM,
|
|
1
|
+
{"version":3,"file":"DroppableArea.js","sourceRoot":"","sources":["../../../../src/website/components/admin/DroppableArea.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@churchapps/apphelper",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.4",
|
|
4
4
|
"description": "Library of helper functions, components, and feature modules (donations/forms/login/markdown/website) for React and NextJS ChurchApps",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|