@edifice.io/react 2.6.2-develop-b2school.20260807165427 → 2.6.2-develop-pedago.20260807180050
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/dist/components/Alert/Alert.js +1 -1
- package/dist/components/Badge/Badge.d.ts +6 -1
- package/dist/components/Badge/Badge.js +1 -1
- package/dist/components/DatePicker/DatePicker.d.ts +0 -5
- package/dist/components/DatePicker/DatePicker.js +0 -2
- package/dist/components/Layout/components/Header.js +0 -6
- package/dist/components/Layout/hooks/useHeader.js +2 -3
- package/dist/icons.js +338 -340
- package/dist/modules/homepage/components/HomeCard/HomeCard.d.ts +1 -5
- package/dist/modules/homepage/components/HomeCard/HomeCard.js +2 -10
- package/dist/modules/homepage/components/LastInfos/LastInfosList.js +2 -2
- package/dist/modules/homepage/components/Notifications/NotificationList.js +1 -1
- package/dist/modules/homepage/components/SchoolSpace/SchoolSpace.js +11 -20
- package/dist/modules/homepage/components/UserSpace/UserSpace.js +2 -5
- package/dist/modules/icons/components/index.d.ts +0 -1
- package/package.json +6 -6
- package/dist/modules/homepage/components/Communities/Communities.d.ts +0 -10
- package/dist/modules/homepage/components/Communities/CommunitiesContainer.d.ts +0 -9
- package/dist/modules/homepage/components/Communities/CommunitiesSkeleton.d.ts +0 -5
- package/dist/modules/homepage/components/Communities/CommunityItem.d.ts +0 -11
- package/dist/modules/homepage/components/Communities/index.d.ts +0 -8
- package/dist/modules/homepage/components/Communities/useCommunities.d.ts +0 -13
- package/dist/modules/homepage/components/UserSpace/hooks/useChildren.d.ts +0 -14
- package/dist/modules/homepage/components/UserSpace/hooks/useChildren.js +0 -23
- package/dist/modules/homepage/components/UserSpace/hooks/useProfileLinks.d.ts +0 -8
- package/dist/modules/homepage/components/UserSpace/hooks/useProfileLinks.js +0 -65
- package/dist/modules/icons/components/IconClass.d.ts +0 -7
- package/dist/modules/icons/components/IconClass.js +0 -13
|
@@ -64,7 +64,7 @@ const Alert = /* @__PURE__ */ forwardRef(({
|
|
|
64
64
|
}, divContainerClasses = clsx("alert gap-12", mapping[type].classModifier, toastClasses, confirmClasses, position, className);
|
|
65
65
|
return /* @__PURE__ */ jsx(Fragment, { children: isVisible ? /* @__PURE__ */ jsxs("div", { ref: refAlert, className: divContainerClasses, role: "alert", children: [
|
|
66
66
|
!isConfirm && mapping[type].icon,
|
|
67
|
-
/* @__PURE__ */ jsx("div", { className: "alert-content small
|
|
67
|
+
/* @__PURE__ */ jsx("div", { className: "alert-content small", children }),
|
|
68
68
|
button && /* @__PURE__ */ jsxs("div", { className: "ms-12", children: [
|
|
69
69
|
button,
|
|
70
70
|
" ",
|
|
@@ -6,6 +6,11 @@ export type NotificationBadgeVariant = {
|
|
|
6
6
|
type: 'notification';
|
|
7
7
|
level: 'success' | 'warning' | 'danger' | 'info';
|
|
8
8
|
};
|
|
9
|
+
/** Badge variant : status */
|
|
10
|
+
export type StatusBadgeVariant = {
|
|
11
|
+
type: 'status';
|
|
12
|
+
level: 'validate' | 'success' | 'warning' | 'danger' | 'info';
|
|
13
|
+
};
|
|
9
14
|
/** Badge variant : content */
|
|
10
15
|
export type ContentBadgeVariant = {
|
|
11
16
|
type: 'content';
|
|
@@ -49,7 +54,7 @@ export type AppVersionBadgeVariant = {
|
|
|
49
54
|
color?: string;
|
|
50
55
|
app?: IWebApp;
|
|
51
56
|
};
|
|
52
|
-
export type BadgeVariants = NotificationBadgeVariant | ContentBadgeVariant | ProfileBadgeVariant | ChipBadgeVariant | LinkBadgeVariant | AppVersionBadgeVariant;
|
|
57
|
+
export type BadgeVariants = NotificationBadgeVariant | StatusBadgeVariant | ContentBadgeVariant | ProfileBadgeVariant | ChipBadgeVariant | LinkBadgeVariant | AppVersionBadgeVariant;
|
|
53
58
|
export interface BadgeProps extends React.ComponentPropsWithRef<'span'> {
|
|
54
59
|
/**
|
|
55
60
|
* Badge variant : notification, link or profile (Teacher|Student|Relative|Personnel)
|
|
@@ -21,7 +21,7 @@ const Badge = /* @__PURE__ */ forwardRef(({
|
|
|
21
21
|
const colorAppClassName = getIconClass(variant.app), backgroundLightAppClassName = getBackgroundLightIconClass(variant.app), borderAppClassName = getBorderIconClass(variant.app);
|
|
22
22
|
appVersionBadgeColorClassName = `${colorAppClassName} ${backgroundLightAppClassName} ${borderAppClassName}`;
|
|
23
23
|
}
|
|
24
|
-
const classes = clsx("badge rounded-pill", (variant.type === "content" || variant.type === "user") && "background" in variant ? "bg-gray-200" : (variant.type === "content" || variant.type === "user") && !("background" in variant) ? "border border-0" : "", variant.type === "content" && `text-${variant.level}`, variant.type === "notification" && `badge-notification bg-${variant.level} text-light border border-0`, variant.type === "user" && `badge-profile-${variant.profile.toLowerCase()}`, variant.type === "link" && "badge-link border border-0", variant.type === "chip" && "bg-gray-200", variant.type === "appVersion" && appVersionBadgeColorClassName, className);
|
|
24
|
+
const classes = clsx("badge rounded-pill", (variant.type === "content" || variant.type === "user") && "background" in variant ? "bg-gray-200" : (variant.type === "content" || variant.type === "user") && !("background" in variant) ? "border border-0" : "", variant.type === "content" && `text-${variant.level}`, variant.type === "notification" && `badge-notification bg-${variant.level} text-light border border-0`, variant.type === "status" && `badge-status badge-status-${variant.level} caption fw-normal`, variant.type === "user" && `badge-profile-${variant.profile.toLowerCase()}`, variant.type === "link" && "badge-link border border-0", variant.type === "chip" && "bg-gray-200", variant.type === "appVersion" && appVersionBadgeColorClassName, className);
|
|
25
25
|
return /* @__PURE__ */ jsxs("span", { ref, className: classes, ...restProps, children: [
|
|
26
26
|
variant.type === "chip" && /* @__PURE__ */ jsx("div", { className: "d-flex fw-800 align-items-center", children }),
|
|
27
27
|
variant.type === "appVersion" && (children ?? "BÊTA"),
|
|
@@ -28,11 +28,6 @@ export interface DatePickerProps extends Omit<React.HTMLAttributes<HTMLElement>,
|
|
|
28
28
|
* Maximum selectable date
|
|
29
29
|
*/
|
|
30
30
|
maxDate?: Date;
|
|
31
|
-
/**
|
|
32
|
-
* Disables the input and prevents the calendar popup from opening.
|
|
33
|
-
* @default false
|
|
34
|
-
*/
|
|
35
|
-
disabled?: boolean;
|
|
36
31
|
}
|
|
37
32
|
/**
|
|
38
33
|
* Type for DatePicker ref
|
|
@@ -17,7 +17,6 @@ const DatePicker = /* @__PURE__ */ forwardRef(({
|
|
|
17
17
|
dateFormat = "DD / MM / YYYY",
|
|
18
18
|
minDate,
|
|
19
19
|
maxDate,
|
|
20
|
-
disabled,
|
|
21
20
|
...htmlProps
|
|
22
21
|
}, ref) => {
|
|
23
22
|
const handleChange = (date) => {
|
|
@@ -28,7 +27,6 @@ const DatePicker = /* @__PURE__ */ forwardRef(({
|
|
|
28
27
|
format: dateFormat,
|
|
29
28
|
minDate: minDate ? dayjs(minDate) : void 0,
|
|
30
29
|
maxDate: maxDate ? dayjs(maxDate) : void 0,
|
|
31
|
-
disabled,
|
|
32
30
|
ref,
|
|
33
31
|
// Cast necessary because AntDatePicker expects a specific type, but our API exposes only HTMLElement to avoid dependency on Ant Design-specific features.
|
|
34
32
|
...htmlProps
|
|
@@ -5,7 +5,6 @@ import { useEdificeClient } from "../../../providers/EdificeClientProvider/Edifi
|
|
|
5
5
|
import { useEdificeTheme } from "../../../providers/EdificeThemeProvider/EdificeThemeProvider.hook.js";
|
|
6
6
|
import SvgIconRafterDown from "../../../modules/icons/components/IconRafterDown.js";
|
|
7
7
|
import SvgIconCommunities from "../../../modules/icons/components/nav/IconCommunities.js";
|
|
8
|
-
import SvgIconCommunity from "../../../modules/icons/components/nav/IconCommunity.js";
|
|
9
8
|
import SvgIconDisconnect from "../../../modules/icons/components/nav/IconDisconnect.js";
|
|
10
9
|
import SvgIconHome from "../../../modules/icons/components/nav/IconHome.js";
|
|
11
10
|
import SvgIconMyApps from "../../../modules/icons/components/nav/IconMyApps.js";
|
|
@@ -67,7 +66,6 @@ const Header = ({
|
|
|
67
66
|
userAvatar,
|
|
68
67
|
userName,
|
|
69
68
|
welcomeUser,
|
|
70
|
-
communityWorkflow,
|
|
71
69
|
communitiesWorkflow,
|
|
72
70
|
conversationWorflow,
|
|
73
71
|
searchWorkflow,
|
|
@@ -176,10 +174,6 @@ const Header = ({
|
|
|
176
174
|
/* @__PURE__ */ jsx(NavItem, { children: /* @__PURE__ */ jsxs("div", { className: "dropdown", children: [
|
|
177
175
|
/* @__PURE__ */ jsx("button", { className: "nav-link btn btn-naked d-md-none", type: "button", "aria-controls": "dropdown-navbar", "aria-expanded": !isCollapsed, "aria-label": t("navbar.open.menu"), onClick: toggleCollapsedNav, children: /* @__PURE__ */ jsx(SvgIconRafterDown, { className: "icon rafter-down", width: "20", height: "20", color: "#fff" }) }),
|
|
178
176
|
/* @__PURE__ */ jsxs("ul", { className: `dropdown-menu dropdown-menu-end ${isCollapsed ? "" : "show"}`, id: "dropdown-navbar", children: [
|
|
179
|
-
communityWorkflow && /* @__PURE__ */ jsx(NavItem, { children: /* @__PURE__ */ jsxs("a", { href: "/community", className: "nav-link dropdown-item", children: [
|
|
180
|
-
/* @__PURE__ */ jsx(SvgIconCommunity, { className: "icon community" }),
|
|
181
|
-
/* @__PURE__ */ jsx("span", { className: "nav-text", children: t("navbar.community") })
|
|
182
|
-
] }) }),
|
|
183
177
|
communitiesWorkflow && /* @__PURE__ */ jsx(NavItem, { children: /* @__PURE__ */ jsxs("a", { href: "/communities", className: "nav-link dropdown-item", children: [
|
|
184
178
|
/* @__PURE__ */ jsx(SvgIconCommunities, { className: "icon communities" }),
|
|
185
179
|
/* @__PURE__ */ jsx("span", { className: "nav-text", children: t("navbar.community") })
|
|
@@ -14,7 +14,7 @@ function useHeader({
|
|
|
14
14
|
t
|
|
15
15
|
} = useTranslation(), title = t(appCode), [isCollapsed, setIsCollapsed] = useState(!0), [appsRef, isAppsHovered] = useHover(), popoverAppsId = useId(), popoverSearchId = useId(), userAvatar = avatar, userName = user == null ? void 0 : user.username, welcomeUser = t("welcome", {
|
|
16
16
|
username: user == null ? void 0 : user.firstName
|
|
17
|
-
}), bookmarkedApps = useBookmark(),
|
|
17
|
+
}), bookmarkedApps = useBookmark(), communitiesWorkflow = useHasWorkflow("community.access"), conversationWorflow = useHasWorkflow("org.entcore.conversation.controllers.ConversationController|view"), searchWorkflow = useHasWorkflow("fr.openent.searchengine.controllers.SearchEngineController|view"), toggleCollapsedNav = useCallback(() => {
|
|
18
18
|
setIsCollapsed(!isCollapsed);
|
|
19
19
|
}, [isCollapsed]);
|
|
20
20
|
return useMemo(() => ({
|
|
@@ -27,13 +27,12 @@ function useHeader({
|
|
|
27
27
|
userAvatar,
|
|
28
28
|
userName,
|
|
29
29
|
welcomeUser,
|
|
30
|
-
communityWorkflow,
|
|
31
30
|
communitiesWorkflow,
|
|
32
31
|
conversationWorflow,
|
|
33
32
|
searchWorkflow,
|
|
34
33
|
isCollapsed,
|
|
35
34
|
toggleCollapsedNav
|
|
36
|
-
}), [appsRef, bookmarkedApps, communitiesWorkflow,
|
|
35
|
+
}), [appsRef, bookmarkedApps, communitiesWorkflow, conversationWorflow, isAppsHovered, isCollapsed, popoverAppsId, popoverSearchId, searchWorkflow, title, toggleCollapsedNav, userAvatar, userName, welcomeUser]);
|
|
37
36
|
}
|
|
38
37
|
export {
|
|
39
38
|
useHeader as default
|