coinsperformance 0.0.5 → 0.0.6

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.
Files changed (58) hide show
  1. package/dist/components/Molecules/ExperientialComponents/NewActivityBanner.d.ts +18 -0
  2. package/dist/components/Molecules/ExperientialComponents/NewActivityBanner.js +78 -0
  3. package/dist/components/Molecules/ExperientialComponents/NewActivityBanner.js.map +1 -0
  4. package/dist/components/Molecules/ExperientialComponents/NewActivityCard.d.ts +25 -0
  5. package/dist/components/Molecules/ExperientialComponents/NewActivityCard.js +72 -0
  6. package/dist/components/Molecules/ExperientialComponents/NewActivityCard.js.map +1 -0
  7. package/dist/components/Molecules/ExperientialComponents/NewAddPostCard.d.ts +9 -0
  8. package/dist/components/Molecules/ExperientialComponents/NewAddPostCard.js +29 -0
  9. package/dist/components/Molecules/ExperientialComponents/NewAddPostCard.js.map +1 -0
  10. package/dist/components/Molecules/ExperientialComponents/NewPostCard.d.ts +27 -0
  11. package/dist/components/Molecules/ExperientialComponents/NewPostCard.js +89 -0
  12. package/dist/components/Molecules/ExperientialComponents/NewPostCard.js.map +1 -0
  13. package/dist/components/Molecules/ExperientialComponents/NewPostInfo.d.ts +29 -0
  14. package/dist/components/Molecules/ExperientialComponents/NewPostInfo.js +217 -0
  15. package/dist/components/Molecules/ExperientialComponents/NewPostInfo.js.map +1 -0
  16. package/dist/components/Molecules/ExperientialComponents/NewPostInfoStyles.d.ts +441 -0
  17. package/dist/components/Molecules/ExperientialComponents/NewPostInfoStyles.js +416 -0
  18. package/dist/components/Molecules/ExperientialComponents/NewPostInfoStyles.js.map +1 -0
  19. package/dist/components/Molecules/ExperientialComponents/NewPostList.d.ts +51 -0
  20. package/dist/components/Molecules/ExperientialComponents/NewPostList.js +79 -0
  21. package/dist/components/Molecules/ExperientialComponents/NewPostList.js.map +1 -0
  22. package/dist/components/Molecules/ExperientialComponents/newActivityBannerStyles.d.ts +120 -0
  23. package/dist/components/Molecules/ExperientialComponents/newActivityBannerStyles.js +124 -0
  24. package/dist/components/Molecules/ExperientialComponents/newActivityBannerStyles.js.map +1 -0
  25. package/dist/components/Molecules/ExperientialComponents/newActivityCardStyles.d.ts +86 -0
  26. package/dist/components/Molecules/ExperientialComponents/newActivityCardStyles.js +91 -0
  27. package/dist/components/Molecules/ExperientialComponents/newActivityCardStyles.js.map +1 -0
  28. package/dist/components/Molecules/ExperientialComponents/newAddPostCardStyles.d.ts +107 -0
  29. package/dist/components/Molecules/ExperientialComponents/newAddPostCardStyles.js +110 -0
  30. package/dist/components/Molecules/ExperientialComponents/newAddPostCardStyles.js.map +1 -0
  31. package/dist/components/Molecules/ExperientialComponents/newPostCardStyles.d.ts +197 -0
  32. package/dist/components/Molecules/ExperientialComponents/newPostCardStyles.js +201 -0
  33. package/dist/components/Molecules/ExperientialComponents/newPostCardStyles.js.map +1 -0
  34. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.d.ts +1 -1
  35. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.js +2 -2
  36. package/dist/components/Molecules/PerformanceScreen/PreformanceResultScreen.js.map +1 -1
  37. package/dist/components/Molecules/SLI/SLIChart.d.ts +4 -0
  38. package/dist/components/Molecules/SLI/SLIChart.js +254 -0
  39. package/dist/components/Molecules/SLI/SLIChart.js.map +1 -0
  40. package/dist/components/Molecules/SLI/data.d.ts +14 -0
  41. package/dist/components/Molecules/SLI/data.js +236 -0
  42. package/dist/components/Molecules/SLI/data.js.map +1 -0
  43. package/dist/components/Molecules/SLI/sliUtils.d.ts +44 -0
  44. package/dist/components/Molecules/SLI/sliUtils.js +59 -0
  45. package/dist/components/Molecules/SLI/sliUtils.js.map +1 -0
  46. package/dist/components/Organisms/NewActivityList/NewActivityList.d.ts +10 -0
  47. package/dist/components/Organisms/NewActivityList/NewActivityList.js +35 -0
  48. package/dist/components/Organisms/NewActivityList/NewActivityList.js.map +1 -0
  49. package/dist/components/Organisms/PostDetails/ImageGallery.d.ts +1 -1
  50. package/dist/components/Organisms/PostDetails/ImageGallery.js +15 -5
  51. package/dist/components/Organisms/PostDetails/ImageGallery.js.map +1 -1
  52. package/dist/index.d.ts +7 -0
  53. package/dist/index.js +15 -1
  54. package/dist/index.js.map +1 -1
  55. package/dist/utils/common-utils.d.ts +2 -0
  56. package/dist/utils/common-utils.js +151 -1
  57. package/dist/utils/common-utils.js.map +1 -1
  58. package/package.json +1 -1
@@ -0,0 +1,217 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const jsx_runtime_1 = require("react/jsx-runtime");
7
+ const react_1 = require("@chakra-ui/react");
8
+ const react_2 = require("react");
9
+ const ImageGallery_1 = __importDefault(require("../../Organisms/PostDetails/ImageGallery"));
10
+ const customTheme_1 = require("../../../utils/customTheme");
11
+ const react_3 = require("react");
12
+ const NewPostInfoStyles_1 = require("./NewPostInfoStyles");
13
+ const LatexRenderView_1 = __importDefault(require("../../Atoms/LatexRenderView/LatexRenderView"));
14
+ // Shared utility function
15
+ const getAttachmentType = (mimeType) => {
16
+ if (mimeType.startsWith("image/"))
17
+ return "image";
18
+ if (mimeType.startsWith("video/"))
19
+ return "video";
20
+ if (mimeType === "application/pdf")
21
+ return "pdf";
22
+ if (mimeType.includes("excel") ||
23
+ mimeType.includes("spreadsheet") ||
24
+ mimeType === "application/vnd.ms-excel" ||
25
+ mimeType ===
26
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
27
+ return "excel";
28
+ if (mimeType.includes("word") ||
29
+ mimeType.includes("document") ||
30
+ mimeType === "application/msword" ||
31
+ mimeType ===
32
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.document")
33
+ return "doc";
34
+ return "doc"; // default fallback
35
+ };
36
+ // Function to get initials from name
37
+ const getInitials = (name) => {
38
+ if (!name)
39
+ return "";
40
+ const names = name.trim().split(" ");
41
+ if (names.length >= 2) {
42
+ return (names[0].charAt(0) + names[names.length - 1].charAt(0)).toUpperCase();
43
+ }
44
+ return name.charAt(0).toUpperCase();
45
+ };
46
+ const ImageTiles = ({ mediaAttachments, styles, onTileClick, }) => {
47
+ return ((0, jsx_runtime_1.jsx)(react_1.Flex, { sx: styles?.imageTilesContainer, children: mediaAttachments.map((attachment, index) => ((0, jsx_runtime_1.jsx)(react_1.Box, { sx: styles?.imageTileFrame, cursor: "pointer", onClick: () => onTileClick(index), children: (0, jsx_runtime_1.jsx)(react_1.Image, { src: attachment.url, alt: attachment.fileName || `Tile ${index + 1}`, sx: styles?.imageTileImage }) }, index))) }));
48
+ };
49
+ const CommentItem = ({ comment, styles, icons, }) => {
50
+ const containerStyles = comment.isSubjectTeacher
51
+ ? { ...styles?.commentItem, ...styles?.commentItemSubjectTeacher }
52
+ : styles?.commentItem;
53
+ return ((0, jsx_runtime_1.jsxs)(react_1.Flex, { sx: containerStyles, children: [(0, jsx_runtime_1.jsx)(react_1.Box, { sx: styles?.commentAvatar, children: comment.authorAvatar ? ((0, jsx_runtime_1.jsx)(react_1.Image, { src: comment.authorAvatar, alt: comment.authorName, sx: styles?.commentAvatarImage })) : ((0, jsx_runtime_1.jsx)(react_1.Box, { sx: styles?.commentAvatar, display: "flex", alignItems: "center", justifyContent: "center", backgroundColor: "#ccd1e8", children: (0, jsx_runtime_1.jsx)(react_1.Text, { color: "white", fontFamily: "Poppins", fontWeight: "600", fontSize: "12px", children: getInitials(comment.authorName) }) })) }), (0, jsx_runtime_1.jsxs)(react_1.Box, { sx: styles?.commentContent, children: [(0, jsx_runtime_1.jsxs)(react_1.Flex, { sx: styles?.commentHeader, children: [(0, jsx_runtime_1.jsx)(react_1.Text, { sx: styles?.commentAuthorName, children: comment.authorName }), comment.isSubjectTeacher && comment.authorRole && ((0, jsx_runtime_1.jsxs)(react_1.Flex, { sx: styles?.commentAuthorRole, children: [icons?.star && ((0, jsx_runtime_1.jsx)(react_1.Image, { src: icons.star, alt: "Star icon", width: "24px", height: "24px" })), (0, jsx_runtime_1.jsx)(react_1.Text, { sx: styles?.commentRoleText, children: comment.authorRole })] }))] }), (0, jsx_runtime_1.jsx)(react_1.Text, { sx: styles?.commentText, children: (0, jsx_runtime_1.jsx)(LatexRenderView_1.default, { math: comment.content }) })] }), (0, jsx_runtime_1.jsx)(react_1.Flex, { sx: styles?.commentMeta, children: (0, jsx_runtime_1.jsx)(react_1.Text, { sx: styles?.commentTimestamp, children: comment.timestamp }) })] }));
54
+ };
55
+ const CommentsList = ({ comments, styles, icons, }) => {
56
+ if (!comments || comments.length === 0) {
57
+ return (0, jsx_runtime_1.jsx)(react_1.Text, { sx: styles?.postContent, children: "No Comments Yet" });
58
+ }
59
+ // Sort comments to show subject teacher comments first
60
+ const sortedComments = [...comments].sort((a, b) => {
61
+ // If both are subject teachers or both are not, maintain original order
62
+ if (a.isSubjectTeacher === b.isSubjectTeacher) {
63
+ return 0;
64
+ }
65
+ // Subject teacher comments come first
66
+ return a.isSubjectTeacher ? -1 : 1;
67
+ });
68
+ return ((0, jsx_runtime_1.jsxs)(react_1.Box, { sx: styles?.commentsContainer, children: [(0, jsx_runtime_1.jsx)(react_1.Box, { sx: styles?.commentsDivider }), sortedComments.map((comment, index) => ((0, jsx_runtime_1.jsx)(react_1.Box, { children: (0, jsx_runtime_1.jsx)(CommentItem, { comment: comment, styles: styles, icons: icons }) }, comment.id || index)))] }));
69
+ };
70
+ const CommentInput = ({ styles, icons, onCommentSubmit, commentSuggestions, }) => {
71
+ const [commentText, setCommentText] = (0, react_2.useState)("");
72
+ const [showSuggestions, setShowSuggestions] = (0, react_2.useState)(false);
73
+ // Check if input is empty
74
+ const isInputEmpty = !commentText.trim();
75
+ const handleSubmit = () => {
76
+ if (!isInputEmpty && onCommentSubmit) {
77
+ onCommentSubmit(commentText.trim());
78
+ setCommentText("");
79
+ setShowSuggestions(false);
80
+ }
81
+ };
82
+ const handleKeyDown = (e) => {
83
+ if (e.key === "Enter" && !e.shiftKey) {
84
+ e.preventDefault();
85
+ handleSubmit();
86
+ }
87
+ else if (e.key === "Escape") {
88
+ setShowSuggestions(false);
89
+ }
90
+ };
91
+ const handleInputFocus = () => {
92
+ if (commentSuggestions && commentSuggestions.length > 0) {
93
+ setShowSuggestions(true);
94
+ }
95
+ };
96
+ const handleInputBlur = () => {
97
+ // Small delay to allow suggestion click to register
98
+ setTimeout(() => {
99
+ setShowSuggestions(false);
100
+ }, 150);
101
+ };
102
+ const handleSuggestionClick = (suggestion) => {
103
+ // Directly submit the suggestion without setting input text
104
+ if (onCommentSubmit && suggestion.trim()) {
105
+ onCommentSubmit(suggestion.trim());
106
+ }
107
+ setCommentText("");
108
+ setShowSuggestions(false);
109
+ };
110
+ return ((0, jsx_runtime_1.jsxs)(react_1.Box, { sx: { ...styles?.commentInputContainer, position: "relative" }, children: [showSuggestions && commentSuggestions && ((0, jsx_runtime_1.jsx)(CommentSuggestions, { suggestions: commentSuggestions, onSuggestionClick: handleSuggestionClick, styles: styles })), (0, jsx_runtime_1.jsx)(react_1.Flex, { sx: styles?.commentInputBox, children: (0, jsx_runtime_1.jsx)("input", { style: {
111
+ ...styles?.commentInputField,
112
+ fontSize: '12px' // Smaller font size for both input and placeholder
113
+ }, type: "text", placeholder: "Choose and share your feedback", value: commentText, readOnly: true, onKeyDown: handleKeyDown, onFocus: handleInputFocus, onBlur: handleInputBlur }) })] }));
114
+ };
115
+ const CommentSuggestions = ({ suggestions, onSuggestionClick, styles, }) => {
116
+ if (!suggestions || suggestions.length === 0) {
117
+ return null;
118
+ }
119
+ return ((0, jsx_runtime_1.jsx)(react_1.Box, { sx: styles?.commentSuggestionsContainer, children: suggestions.map((suggestion, index) => ((0, jsx_runtime_1.jsxs)(react_1.Box, { children: [(0, jsx_runtime_1.jsx)(react_1.Box, { sx: styles?.commentSuggestionItem, onClick: () => onSuggestionClick(suggestion), children: (0, jsx_runtime_1.jsx)(react_1.Text, { sx: styles?.commentSuggestionText, children: suggestion }) }), index < suggestions.length - 1 && ((0, jsx_runtime_1.jsx)(react_1.Box, { sx: styles?.commentSuggestionDivider }))] }, index))) }));
120
+ };
121
+ const LeftSection = ({ postAttachments, icons, styles, }) => {
122
+ const [galleryIndex, setGalleryIndex] = (0, react_2.useState)(0);
123
+ if (!postAttachments || postAttachments.length === 0) {
124
+ return null; // Don't render anything if no attachments
125
+ }
126
+ // Filter to get only image and video attachments for left section
127
+ const mediaAttachments = postAttachments.filter((attachment) => {
128
+ const attachmentType = getAttachmentType(attachment.mimeType);
129
+ return attachmentType === "image" || attachmentType === "video";
130
+ });
131
+ // Don't render if no media attachments
132
+ if (mediaAttachments.length === 0) {
133
+ return null;
134
+ }
135
+ // Map icons for ImageGallery
136
+ const galleryIcons = {
137
+ leftArrow: icons?.left_arrow,
138
+ rightArrow: icons?.right_arrow,
139
+ videoIcon: icons?.video_icon,
140
+ pdf: icons?.pdf,
141
+ doc: icons?.doc,
142
+ ppt: icons?.ppt,
143
+ excel: icons?.excel, // Using doc icon as fallback for excel
144
+ };
145
+ const handleTileClick = (tileIndex) => {
146
+ setGalleryIndex(tileIndex);
147
+ };
148
+ return ((0, jsx_runtime_1.jsxs)(react_1.Box, { sx: styles?.leftSection, children: [(0, jsx_runtime_1.jsx)(react_1.Box, { sx: { flex: 1, marginBottom: "24px" }, children: (0, jsx_runtime_1.jsx)(ImageGallery_1.default, { attachments: mediaAttachments, icons: galleryIcons, initialIndex: galleryIndex, onIndexChange: setGalleryIndex }) }), (0, jsx_runtime_1.jsx)(react_1.Box, { sx: styles?.leftSectionBottom, children: (0, jsx_runtime_1.jsx)(ImageTiles, { mediaAttachments: mediaAttachments, styles: styles, onTileClick: handleTileClick }) })] }));
149
+ };
150
+ const TabSection = ({ commentCount = 0, styles, icons, activeTab, setActiveTab, allowCommentsandInteractions, }) => {
151
+ // Dynamic icon selection based on active tab
152
+ const getPostIcon = () => {
153
+ if (activeTab === "post") {
154
+ return icons?.postActive || icons?.post;
155
+ }
156
+ else {
157
+ return icons?.postInactive || icons?.post;
158
+ }
159
+ };
160
+ const getCommentIcon = () => {
161
+ if (activeTab === "comments") {
162
+ return icons?.commentActive || icons?.comments;
163
+ }
164
+ else {
165
+ return icons?.commentInactive || icons?.comments;
166
+ }
167
+ };
168
+ return ((0, jsx_runtime_1.jsxs)(react_1.Flex, { sx: styles?.tabsContainer, children: [(0, jsx_runtime_1.jsxs)(react_1.Flex, { sx: {
169
+ ...styles?.tab,
170
+ ...(activeTab === "post" ? styles?.activeTab : styles?.inactiveTab),
171
+ }, onClick: () => setActiveTab("post"), children: [(0, jsx_runtime_1.jsx)(react_1.Box, { sx: styles?.tabIcon, children: (0, jsx_runtime_1.jsx)(react_1.Image, { src: getPostIcon(), alt: "Post icon", width: { base: "20px", md: "22px", lg: "24px" }, height: { base: "20px", md: "22px", lg: "24px" } }) }), (0, jsx_runtime_1.jsx)(react_1.Text, { sx: styles?.tabText, children: "Post" })] }), (0, jsx_runtime_1.jsxs)(react_1.Flex, { sx: {
172
+ ...styles?.tab,
173
+ ...(activeTab === "comments"
174
+ ? styles?.activeTab
175
+ : styles?.inactiveTab),
176
+ }, onClick: () => setActiveTab("comments"), children: [(0, jsx_runtime_1.jsx)(react_1.Box, { sx: styles?.tabIcon, children: (0, jsx_runtime_1.jsx)(react_1.Image, { src: getCommentIcon(), alt: "Comments icon", width: { base: "20px", md: "22px", lg: "24px" }, height: { base: "20px", md: "22px", lg: "24px" } }) }), (0, jsx_runtime_1.jsxs)(react_1.Text, { sx: styles?.tabText, children: ["Comments (", commentCount, ")"] })] })] }));
177
+ };
178
+ const RightSection = ({ author, subject, topic, activityTitle, postContent, icons, commentCount, emojiCount, postAttachments, onAttachmentClick, styles, allowCommentsandInteractions, comments, onCommentSubmit, commentSuggestions, }) => {
179
+ // Implementation for right section
180
+ const [activeTab, setActiveTab] = (0, react_2.useState)("post");
181
+ const handleAttachmentClick = (attachment, e) => {
182
+ e.stopPropagation(); // Prevent triggering onCardClick
183
+ if (onAttachmentClick) {
184
+ onAttachmentClick(attachment);
185
+ }
186
+ };
187
+ return ((0, jsx_runtime_1.jsxs)(react_1.Flex, { sx: styles?.rightSection, children: [(0, jsx_runtime_1.jsxs)(react_1.Box, { sx: styles?.rightSectionHeader, children: [(0, jsx_runtime_1.jsxs)(react_1.Flex, { sx: styles?.authorSection, children: [(0, jsx_runtime_1.jsx)(react_1.Box, { sx: {
188
+ ...styles?.authorImage,
189
+ display: "flex",
190
+ alignItems: "center",
191
+ justifyContent: "center",
192
+ }, children: (0, jsx_runtime_1.jsx)(react_1.Text, { color: "white", fontFamily: "Poppins", fontWeight: "600", fontSize: "18px", children: getInitials(author?.name) }) }), (0, jsx_runtime_1.jsx)(react_1.Text, { sx: styles?.authorName, children: author?.name })] }), (0, jsx_runtime_1.jsxs)(react_1.Flex, { sx: styles?.subjectSection, children: [(0, jsx_runtime_1.jsxs)(react_1.Text, { sx: styles?.subjectName, children: [subject, " ", topic ? ":" : "", " "] }), (0, jsx_runtime_1.jsx)(react_1.Text, { sx: styles?.topicName, children: topic })] }), (0, jsx_runtime_1.jsx)(react_1.Text, { sx: styles?.activityTitle, children: (0, jsx_runtime_1.jsx)(LatexRenderView_1.default, { math: activityTitle }) }), (0, jsx_runtime_1.jsx)(TabSection, { commentCount: commentCount, styles: styles, icons: icons, activeTab: activeTab, setActiveTab: setActiveTab, allowCommentsandInteractions: allowCommentsandInteractions })] }), (0, jsx_runtime_1.jsxs)(react_1.Box, { sx: styles?.rightSectionContent, children: [activeTab === "post" ? ((0, jsx_runtime_1.jsx)(react_1.Text, { sx: styles?.postContent, children: (0, jsx_runtime_1.jsx)(LatexRenderView_1.default, { math: postContent }) })) : ((0, jsx_runtime_1.jsx)(CommentsList, { comments: comments || [], styles: styles, icons: icons })), activeTab === "post" &&
193
+ (() => {
194
+ // Filter non-image and non-video attachments
195
+ const nonMediaAttachments = postAttachments?.filter((attachment) => {
196
+ const attachmentType = getAttachmentType(attachment.mimeType);
197
+ return attachmentType !== "image" && attachmentType !== "video";
198
+ }) || [];
199
+ return nonMediaAttachments.length > 0 ? ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(react_1.Text, { sx: styles?.attachmentHeading, children: "Attachments" }), (0, jsx_runtime_1.jsx)(react_1.Flex, { gap: "8px", flexWrap: "wrap", marginY: "8px", children: nonMediaAttachments.map((attachment, index) => {
200
+ const attachmentType = getAttachmentType(attachment.mimeType);
201
+ const iconSrc = icons?.[attachmentType];
202
+ return ((0, jsx_runtime_1.jsx)(react_1.Image, { src: iconSrc, alt: `${attachmentType} icon`, width: "56px", height: "56px", cursor: "pointer", onClick: (e) => handleAttachmentClick(attachment, e), title: attachment.fileName }, index));
203
+ }) })] })) : null;
204
+ })()] }), activeTab === "post" ? ((0, jsx_runtime_1.jsxs)(react_1.Box, { sx: styles?.rightSectionBottom, children: [(0, jsx_runtime_1.jsx)(react_1.Box, { border: "1px dotted #A0A0A0" }), (0, jsx_runtime_1.jsx)(react_1.Flex, { sx: styles?.emojiSection, children: (0, jsx_runtime_1.jsxs)(react_1.Flex, { gap: "4px", alignItems: "center", children: [(0, jsx_runtime_1.jsx)(react_1.Image, { src: icons?.comment, alt: "Comment icon", width: "20px", height: "20px" }), (0, jsx_runtime_1.jsx)(react_1.Text, { sx: styles?.emojiText, children: commentCount })] }) })] })) : ((0, jsx_runtime_1.jsx)(CommentInput, { styles: styles, icons: icons, onCommentSubmit: onCommentSubmit, commentSuggestions: commentSuggestions }))] }));
205
+ };
206
+ const Component = (props) => {
207
+ const { postAttachments, author, subject, topic, activityTitle, postContent, icons, commentCount, emojiCount, onAttachmentClick, cardColor, allowCommentsandInteractions, comments, onCommentSubmit, commentSuggestions, } = props;
208
+ const styles = (0, react_3.useMemo)(() => {
209
+ return NewPostInfoStyles_1.NewPostInfoStyles;
210
+ }, []);
211
+ return ((0, jsx_runtime_1.jsxs)(react_1.Box, { sx: styles.mainContainer, bgColor: cardColor, children: [(0, jsx_runtime_1.jsx)(LeftSection, { postAttachments: postAttachments, icons: icons, styles: styles }), (0, jsx_runtime_1.jsx)(RightSection, { author: author, subject: subject, topic: topic, activityTitle: activityTitle, postContent: postContent, icons: icons, commentCount: commentCount, emojiCount: emojiCount, postAttachments: postAttachments, onAttachmentClick: onAttachmentClick, styles: styles, allowCommentsandInteractions: allowCommentsandInteractions, comments: comments, onCommentSubmit: onCommentSubmit, commentSuggestions: commentSuggestions })] }));
212
+ };
213
+ const NewPostInfo = (props) => {
214
+ return ((0, jsx_runtime_1.jsx)(react_1.ChakraProvider, { theme: customTheme_1.customTheme, children: (0, jsx_runtime_1.jsx)(Component, { ...props }) }));
215
+ };
216
+ exports.default = NewPostInfo;
217
+ //# sourceMappingURL=NewPostInfo.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NewPostInfo.js","sourceRoot":"","sources":["../../../../src/components/Molecules/ExperientialComponents/NewPostInfo.tsx"],"names":[],"mappings":"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"}