@selfcommunity/react-templates 0.3.50-events.53 → 0.3.50-events.55
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.
|
@@ -57,6 +57,6 @@ function Event(inProps) {
|
|
|
57
57
|
if (!scEvent) {
|
|
58
58
|
return (0, jsx_runtime_1.jsx)(Skeleton_1.default, {});
|
|
59
59
|
}
|
|
60
|
-
return ((0, jsx_runtime_1.jsxs)(Root, Object.assign({ id: id, className: (0, classnames_1.default)(classes.root, className) }, { children: [(0, jsx_runtime_1.jsx)(react_ui_1.EventHeader, {
|
|
60
|
+
return ((0, jsx_runtime_1.jsxs)(Root, Object.assign({ id: id, className: (0, classnames_1.default)(classes.root, className) }, { children: [(0, jsx_runtime_1.jsx)(react_ui_1.EventHeader, { event: scEvent }), (0, jsx_runtime_1.jsx)(EventFeed_1.default, Object.assign({ className: classes.feed, event: scEvent, widgets: widgets, FeedObjectProps: FeedObjectProps, FeedSidebarProps: FeedSidebarProps }, EventFeedProps))] })));
|
|
61
61
|
}
|
|
62
62
|
exports.default = Event;
|
|
@@ -116,7 +116,10 @@ function EventFeed(inProps) {
|
|
|
116
116
|
});
|
|
117
117
|
}, itemIdGenerator: (item) => item[item.type].id, ItemProps: FeedObjectProps, ItemSkeleton: react_ui_1.FeedObjectSkeleton, ItemSkeletonProps: {
|
|
118
118
|
template: react_ui_1.SCFeedObjectTemplateType.PREVIEW
|
|
119
|
-
}, FeedSidebarProps: FeedSidebarProps, HeaderComponent: (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(react_ui_1.EventInfoWidget, { className: classes.root, event: scEvent }), scEvent &&
|
|
119
|
+
}, FeedSidebarProps: FeedSidebarProps, HeaderComponent: (0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(react_ui_1.EventInfoWidget, { className: classes.root, event: scEvent }), Boolean(scEvent &&
|
|
120
|
+
(scEvent.subscription_status === types_1.SCEventSubscriptionStatusType.SUBSCRIBED ||
|
|
121
|
+
scEvent.subscription_status === types_1.SCEventSubscriptionStatusType.GOING ||
|
|
122
|
+
scEvent.subscription_status === types_1.SCEventSubscriptionStatusType.NOT_GOING)) && ((0, jsx_runtime_1.jsx)(react_ui_1.InlineComposerWidget, { onSuccess: handleComposerSuccess, defaultValue: { event: scEvent }, label: (0, jsx_runtime_1.jsx)(react_intl_1.FormattedMessage, { id: "templates.eventFeed.composer.label", defaultMessage: "templates.eventFeed.composer.label" }), feedType: types_1.SCFeedTypologyType.EVENT }))] }), CustomAdvProps: { position: types_1.SCCustomAdvPosition.POSITION_FEED, groupsId: [scEvent.id] }, enabledCustomAdvPositions: [
|
|
120
123
|
types_1.SCCustomAdvPosition.POSITION_FEED_SIDEBAR,
|
|
121
124
|
types_1.SCCustomAdvPosition.POSITION_FEED,
|
|
122
125
|
types_1.SCCustomAdvPosition.POSITION_BELOW_TOPBAR
|
|
@@ -54,5 +54,5 @@ export default function Event(inProps) {
|
|
|
54
54
|
if (!scEvent) {
|
|
55
55
|
return _jsx(EventSkeletonTemplate, {});
|
|
56
56
|
}
|
|
57
|
-
return (_jsxs(Root, Object.assign({ id: id, className: classNames(classes.root, className) }, { children: [_jsx(EventHeader, {
|
|
57
|
+
return (_jsxs(Root, Object.assign({ id: id, className: classNames(classes.root, className) }, { children: [_jsx(EventHeader, { event: scEvent }), _jsx(EventFeed, Object.assign({ className: classes.feed, event: scEvent, widgets: widgets, FeedObjectProps: FeedObjectProps, FeedSidebarProps: FeedSidebarProps }, EventFeedProps))] })));
|
|
58
58
|
}
|
|
@@ -113,7 +113,10 @@ export default function EventFeed(inProps) {
|
|
|
113
113
|
});
|
|
114
114
|
}, itemIdGenerator: (item) => item[item.type].id, ItemProps: FeedObjectProps, ItemSkeleton: FeedObjectSkeleton, ItemSkeletonProps: {
|
|
115
115
|
template: SCFeedObjectTemplateType.PREVIEW
|
|
116
|
-
}, FeedSidebarProps: FeedSidebarProps, HeaderComponent: _jsxs(_Fragment, { children: [_jsx(EventInfoWidget, { className: classes.root, event: scEvent }), scEvent &&
|
|
116
|
+
}, FeedSidebarProps: FeedSidebarProps, HeaderComponent: _jsxs(_Fragment, { children: [_jsx(EventInfoWidget, { className: classes.root, event: scEvent }), Boolean(scEvent &&
|
|
117
|
+
(scEvent.subscription_status === SCEventSubscriptionStatusType.SUBSCRIBED ||
|
|
118
|
+
scEvent.subscription_status === SCEventSubscriptionStatusType.GOING ||
|
|
119
|
+
scEvent.subscription_status === SCEventSubscriptionStatusType.NOT_GOING)) && (_jsx(InlineComposerWidget, { onSuccess: handleComposerSuccess, defaultValue: { event: scEvent }, label: _jsx(FormattedMessage, { id: "templates.eventFeed.composer.label", defaultMessage: "templates.eventFeed.composer.label" }), feedType: SCFeedTypologyType.EVENT }))] }), CustomAdvProps: { position: SCCustomAdvPosition.POSITION_FEED, groupsId: [scEvent.id] }, enabledCustomAdvPositions: [
|
|
117
120
|
SCCustomAdvPosition.POSITION_FEED_SIDEBAR,
|
|
118
121
|
SCCustomAdvPosition.POSITION_FEED,
|
|
119
122
|
SCCustomAdvPosition.POSITION_BELOW_TOPBAR
|