forked from openedx/frontend-app-authoring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathItemHierarchy.tsx
More file actions
215 lines (199 loc) · 6.23 KB
/
ItemHierarchy.tsx
File metadata and controls
215 lines (199 loc) · 6.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
import type { MessageDescriptor } from 'react-intl';
import classNames from 'classnames';
import { FormattedMessage, useIntl } from '@edx/frontend-platform/i18n';
import { Container, Icon, Stack } from '@openedx/paragon';
import { ArrowDownward, Check, Description } from '@openedx/paragon/icons';
import { getItemIcon } from '@src/generic/block-type-utils';
import { ContainerType } from '@src/generic/key-utils';
import Loading from '@src/generic/Loading';
import type { ItemHierarchyMember } from '../data/api';
import messages from './messages';
import { useSidebarContext } from '../common/context/SidebarContext';
import { useLibraryItemHierarchy } from '../data/apiHooks';
const HierarchyRow = ({
containerType,
text,
selected,
showArrow,
willPublish = false,
publishMessage = undefined,
}: {
containerType: ContainerType;
text: string;
selected: boolean;
showArrow: boolean;
willPublish?: boolean;
publishMessage?: MessageDescriptor;
}) => (
<Stack>
<Container
className={classNames('hierarchy-row', { selected })}
>
<Stack
direction="horizontal"
gap={2}
>
<div className="icon">
<Icon
src={getItemIcon(containerType)}
screenReaderText={containerType}
title={containerType}
/>
</div>
<div className="text text-truncate">
{text}
</div>
{publishMessage && (
<Stack
direction="horizontal"
gap={2}
className="publish-status"
>
<Icon src={willPublish ? Check : Description} />
<FormattedMessage {...(willPublish ? messages.willPublishChipText : publishMessage)} />
</Stack>
)}
</Stack>
</Container>
{showArrow && (
<div
className={classNames('hierarchy-arrow', { selected })}
>
<Icon
src={ArrowDownward}
screenReaderText={' '}
/>
</div>
)}
</Stack>
);
export const ItemHierarchy = ({
showPublishStatus = false,
}: {
showPublishStatus?: boolean;
}) => {
const intl = useIntl();
const { sidebarItemInfo } = useSidebarContext();
const itemId = sidebarItemInfo?.id;
// istanbul ignore if: this should never happen
if (!itemId) {
throw new Error('itemId is required');
}
const {
data,
isPending,
isError,
} = useLibraryItemHierarchy(itemId);
if (isPending) {
return <Loading />;
}
// istanbul ignore if: this should never happen
if (isError) {
return null;
}
const {
sections,
subsections,
units,
components,
} = data;
// Returns a message describing the publish status of the given hierarchy row.
const publishMessage = (
contents: ItemHierarchyMember[],
isParentOfSelectedRow = false,
) => {
// If we're not showing publish status, then we don't need a publish message
if (!showPublishStatus || isParentOfSelectedRow) {
return undefined;
}
// If any item has unpublished changes, mark this row as Draft.
// Skip Draft for parent rows of currently selected row.
if (contents.some((item) => item.hasUnpublishedChanges)) {
return messages.draftChipText;
}
// Otherwise, it's Published
return messages.publishedChipText;
};
// Returns True if any of the items in the list match the currently selected item.
const selected = (contents: ItemHierarchyMember[]): boolean => (
contents.some((item) => item.id === itemId)
);
// Use the "selected" status to determine the selected row.
// If showPublishStatus, that row and its children will be marked "willPublish".
const selectedSections = selected(sections);
const selectedSubsections = selected(subsections);
const selectedUnits = selected(units);
const selectedComponents = selected(components);
const showSections = sections && sections.length > 0;
const showSubsections = subsections && subsections.length > 0;
const showUnits = units && units.length > 0;
const showComponents = components && components.length > 0;
return (
<Stack className="content-hierarchy">
{showSections && (
<HierarchyRow
containerType={ContainerType.Section}
text={intl.formatMessage(
messages.hierarchySections,
{
displayName: sections[0].displayName,
count: sections.length,
},
)}
showArrow={showSubsections}
selected={selectedSections}
willPublish={selectedSections}
publishMessage={publishMessage(sections, selectedSubsections || selectedUnits || selectedComponents)}
/>
)}
{showSubsections && (
<HierarchyRow
containerType={ContainerType.Subsection}
text={intl.formatMessage(
messages.hierarchySubsections,
{
displayName: subsections[0].displayName,
count: subsections.length,
},
)}
showArrow={showUnits}
selected={selectedSubsections}
willPublish={selectedSubsections || selectedSections}
publishMessage={publishMessage(subsections, selectedUnits || selectedComponents)}
/>
)}
{showUnits && (
<HierarchyRow
containerType={ContainerType.Unit}
text={intl.formatMessage(
messages.hierarchyUnits,
{
displayName: units[0].displayName,
count: units.length,
},
)}
showArrow={showComponents}
selected={selectedUnits}
willPublish={selectedUnits || selectedSubsections || selectedSections}
publishMessage={publishMessage(units, selectedComponents)}
/>
)}
{showComponents && (
<HierarchyRow
containerType={ContainerType.Components}
text={intl.formatMessage(
messages.hierarchyComponents,
{
displayName: components[0].displayName,
count: components.length,
},
)}
showArrow={false}
selected={selectedComponents}
willPublish={selectedComponents || selectedUnits || selectedSubsections || selectedSections}
publishMessage={publishMessage(components)}
/>
)}
</Stack>
);
};