@selfcommunity/react-ui 0.7.0-alpha.135 → 0.7.0-alpha.137
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/lib/cjs/components/BottomNavigation/BottomNavigation.d.ts.map +1 -1
- package/lib/cjs/components/BottomNavigation/BottomNavigation.js +4 -4
- package/lib/cjs/components/BottomNavigation/BottomNavigation.js.map +1 -1
- package/lib/cjs/components/Feed/Feed.js +1 -1
- package/lib/cjs/components/Feed/Feed.js.map +1 -1
- package/lib/cjs/components/FeedObject/FeedObject.js +1 -1
- package/lib/cjs/components/FeedObject/FeedObject.js.map +1 -1
- package/lib/cjs/components/NavigationToolbarMobile/NavigationToolbarMobile.d.ts +4 -0
- package/lib/cjs/components/NavigationToolbarMobile/NavigationToolbarMobile.d.ts.map +1 -1
- package/lib/cjs/components/NavigationToolbarMobile/NavigationToolbarMobile.js +2 -2
- package/lib/cjs/components/NavigationToolbarMobile/NavigationToolbarMobile.js.map +1 -1
- package/lib/cjs/components/PrivateMessageComponent/PrivateMessageComponent.d.ts.map +1 -1
- package/lib/cjs/components/PrivateMessageComponent/PrivateMessageComponent.js +11 -265
- package/lib/cjs/components/PrivateMessageComponent/PrivateMessageComponent.js.map +1 -1
- package/lib/cjs/components/PrivateMessageSnippets/PrivateMessageSnippets.d.ts.map +1 -1
- package/lib/cjs/components/PrivateMessageSnippets/PrivateMessageSnippets.js +81 -4
- package/lib/cjs/components/PrivateMessageSnippets/PrivateMessageSnippets.js.map +1 -1
- package/lib/cjs/components/PrivateMessageThread/PrivateMessageThread.d.ts +11 -27
- package/lib/cjs/components/PrivateMessageThread/PrivateMessageThread.d.ts.map +1 -1
- package/lib/cjs/components/PrivateMessageThread/PrivateMessageThread.js +198 -9
- package/lib/cjs/components/PrivateMessageThread/PrivateMessageThread.js.map +1 -1
- package/lib/cjs/components/UserProfileEdit/Section/Settings.d.ts.map +1 -1
- package/lib/cjs/components/UserProfileEdit/Section/Settings.js +8 -25
- package/lib/cjs/components/UserProfileEdit/Section/Settings.js.map +1 -1
- package/lib/esm/components/BottomNavigation/BottomNavigation.d.ts.map +1 -1
- package/lib/esm/components/BottomNavigation/BottomNavigation.js +4 -4
- package/lib/esm/components/BottomNavigation/BottomNavigation.js.map +1 -1
- package/lib/esm/components/Feed/Feed.js +1 -1
- package/lib/esm/components/Feed/Feed.js.map +1 -1
- package/lib/esm/components/FeedObject/FeedObject.js +1 -1
- package/lib/esm/components/FeedObject/FeedObject.js.map +1 -1
- package/lib/esm/components/NavigationToolbarMobile/NavigationToolbarMobile.d.ts +4 -0
- package/lib/esm/components/NavigationToolbarMobile/NavigationToolbarMobile.d.ts.map +1 -1
- package/lib/esm/components/NavigationToolbarMobile/NavigationToolbarMobile.js +2 -2
- package/lib/esm/components/NavigationToolbarMobile/NavigationToolbarMobile.js.map +1 -1
- package/lib/esm/components/PrivateMessageComponent/PrivateMessageComponent.d.ts.map +1 -1
- package/lib/esm/components/PrivateMessageComponent/PrivateMessageComponent.js +15 -269
- package/lib/esm/components/PrivateMessageComponent/PrivateMessageComponent.js.map +1 -1
- package/lib/esm/components/PrivateMessageSnippets/PrivateMessageSnippets.d.ts.map +1 -1
- package/lib/esm/components/PrivateMessageSnippets/PrivateMessageSnippets.js +84 -7
- package/lib/esm/components/PrivateMessageSnippets/PrivateMessageSnippets.js.map +1 -1
- package/lib/esm/components/PrivateMessageThread/PrivateMessageThread.d.ts +11 -27
- package/lib/esm/components/PrivateMessageThread/PrivateMessageThread.d.ts.map +1 -1
- package/lib/esm/components/PrivateMessageThread/PrivateMessageThread.js +201 -12
- package/lib/esm/components/PrivateMessageThread/PrivateMessageThread.js.map +1 -1
- package/lib/esm/components/UserProfileEdit/Section/Settings.d.ts.map +1 -1
- package/lib/esm/components/UserProfileEdit/Section/Settings.js +9 -26
- package/lib/esm/components/UserProfileEdit/Section/Settings.js.map +1 -1
- package/lib/umd/react-ui.js +1 -1
- package/lib/umd/react-ui.js.map +1 -1
- package/package.json +3 -3
|
@@ -13,8 +13,7 @@ import React, { useEffect, useState } from 'react';
|
|
|
13
13
|
import { styled } from '@mui/material/styles';
|
|
14
14
|
import { Box, FormControl, FormControlLabel, FormLabel, Radio, RadioGroup, Typography } from '@mui/material';
|
|
15
15
|
import { FormattedMessage } from 'react-intl';
|
|
16
|
-
import {
|
|
17
|
-
import { useSCUser } from '@selfcommunity/react-core';
|
|
16
|
+
import { SCNotification, useSCUser } from '@selfcommunity/react-core';
|
|
18
17
|
import classNames from 'classnames';
|
|
19
18
|
import SettingsSkeleton from './SettingsSkeleton';
|
|
20
19
|
import { useSnackbar } from 'notistack';
|
|
@@ -54,31 +53,15 @@ export default function Settings(inProps) {
|
|
|
54
53
|
// EFFECTS
|
|
55
54
|
useEffect(() => {
|
|
56
55
|
if (scUserContext.user) {
|
|
57
|
-
|
|
58
|
-
.request({
|
|
59
|
-
url: Endpoints.UserSettings.url({ id: scUserContext.user.id }),
|
|
60
|
-
method: Endpoints.UserSettings.method
|
|
61
|
-
})
|
|
62
|
-
.then((res) => {
|
|
63
|
-
setSetting(res.data);
|
|
64
|
-
})
|
|
65
|
-
.catch((error) => {
|
|
66
|
-
console.log(error);
|
|
67
|
-
});
|
|
56
|
+
setSetting(scUserContext.managers.settings.all());
|
|
68
57
|
}
|
|
69
|
-
}, [scUserContext.user]);
|
|
58
|
+
}, [scUserContext.user, scUserContext.managers.settings.all]);
|
|
70
59
|
// HANDLERS
|
|
71
60
|
const handleChange = (event) => {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
.request({
|
|
75
|
-
url: Endpoints.UserSettingsPatch.url({ id: scUserContext.user.id }),
|
|
76
|
-
method: Endpoints.UserSettingsPatch.method,
|
|
77
|
-
data: { [event.target.name]: parseInt(event.target.value, 10) }
|
|
78
|
-
})
|
|
61
|
+
scUserContext.managers.settings
|
|
62
|
+
.update(event.target.name, parseInt(event.target.value, 10))
|
|
79
63
|
.then((res) => {
|
|
80
|
-
setSetting(res
|
|
81
|
-
scUserContext.managers.settings.update(event.target.name, parseInt(event.target.value, 10));
|
|
64
|
+
setSetting(res);
|
|
82
65
|
if (onEditSuccess) {
|
|
83
66
|
onEditSuccess();
|
|
84
67
|
}
|
|
@@ -110,7 +93,7 @@ export default function Settings(inProps) {
|
|
|
110
93
|
React.createElement(FormControl, null,
|
|
111
94
|
React.createElement(FormLabel, null,
|
|
112
95
|
React.createElement(FormattedMessage, { id: "ui.userProfileEditSettings.notification.label", defaultMessage: "ui.userProfileEditSettings.notification.label" })),
|
|
113
|
-
React.createElement(RadioGroup, { "aria-labelledby": "notification settings", value: _settings.show_toast_notifications, name:
|
|
96
|
+
React.createElement(RadioGroup, { "aria-labelledby": "notification settings", value: _settings.show_toast_notifications, name: SCNotification.NOTIFICATIONS_SETTINGS_SHOW_TOAST, onChange: handleChange },
|
|
114
97
|
React.createElement(FormControlLabel, { value: 1, control: React.createElement(Radio, { size: "small" }), label: React.createElement(FormattedMessage, { id: "ui.common.yes", defaultMessage: "ui.common.yes" }) }),
|
|
115
98
|
React.createElement(FormControlLabel, { value: 0, control: React.createElement(Radio, { size: "small" }), label: React.createElement(FormattedMessage, { id: "ui.common.no", defaultMessage: "ui.common.no" }) }))))));
|
|
116
99
|
case SCUserProfileSettings.INTERACTION:
|
|
@@ -121,7 +104,7 @@ export default function Settings(inProps) {
|
|
|
121
104
|
React.createElement(FormControl, null,
|
|
122
105
|
React.createElement(FormLabel, null,
|
|
123
106
|
React.createElement(FormattedMessage, { id: "ui.userProfileEditSettings.interaction.label", defaultMessage: "ui.userProfileEditSettings.interaction.label" })),
|
|
124
|
-
React.createElement(RadioGroup, { "aria-labelledby": "email notification settings", value: _settings.qa_frequency, name:
|
|
107
|
+
React.createElement(RadioGroup, { "aria-labelledby": "email notification settings", value: _settings.qa_frequency, name: SCNotification.NOTIFICATIONS_SETTINGS_QA_FREQUENCY, onChange: handleChange },
|
|
125
108
|
React.createElement(FormControlLabel, { value: -1, control: React.createElement(Radio, { size: "small" }), label: React.createElement(FormattedMessage, { id: "ui.userProfileEditSettings.interaction.immediatly", defaultMessage: "ui.userProfileEditSettings.interaction.immediatly" }) }),
|
|
126
109
|
React.createElement(FormControlLabel, { value: 1, control: React.createElement(Radio, { size: "small" }), label: React.createElement(FormattedMessage, { id: "ui.userProfileEditSettings.interaction.daily", defaultMessage: "ui.userProfileEditSettings.interaction.daily" }) }),
|
|
127
110
|
React.createElement(FormControlLabel, { value: 0, control: React.createElement(Radio, { size: "small" }), label: React.createElement(FormattedMessage, { id: "ui.userProfileEditSettings.interaction.never", defaultMessage: "ui.userProfileEditSettings.interaction.never" }) }))))));
|
|
@@ -133,7 +116,7 @@ export default function Settings(inProps) {
|
|
|
133
116
|
React.createElement(FormControl, null,
|
|
134
117
|
React.createElement(FormLabel, null,
|
|
135
118
|
React.createElement(FormattedMessage, { id: "ui.userProfileEditSettings.privateMessage.label", defaultMessage: "ui.userProfileEditSettings.privateMessage.label" })),
|
|
136
|
-
React.createElement(RadioGroup, { "aria-labelledby": "email notification settings", value: _settings.email_notification_not_qa, name:
|
|
119
|
+
React.createElement(RadioGroup, { "aria-labelledby": "email notification settings", value: _settings.email_notification_not_qa, name: SCNotification.NOTIFICATIONS_SETTINGS_EMAIL_NOT_QA, onChange: handleChange },
|
|
137
120
|
React.createElement(FormControlLabel, { value: 1, control: React.createElement(Radio, { size: "small" }), label: React.createElement(FormattedMessage, { id: "ui.userProfileEditSettings.privateMessage.email", defaultMessage: "ui.userProfileEditSettings.privateMessage.email" }) }),
|
|
138
121
|
React.createElement(FormControlLabel, { value: 0, control: React.createElement(Radio, { size: "small" }), label: React.createElement(FormattedMessage, { id: "ui.userProfileEditSettings.privateMessage.frontend", defaultMessage: "ui.userProfileEditSettings.privateMessage.frontend" }) }))))));
|
|
139
122
|
default:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Settings.js","sourceRoot":"","sources":["../../../../../src/components/UserProfileEdit/Section/Settings.tsx"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,KAAK,EAAE,EAAc,SAAS,EAAE,QAAQ,EAAC,MAAM,OAAO,CAAC;AAC9D,OAAO,EAAC,MAAM,EAAC,MAAM,sBAAsB,CAAC;AAC5C,OAAO,EAAC,GAAG,EAAE,WAAW,EAAE,gBAAgB,EAAE,SAAS,EAAE,KAAK,EAAE,UAAU,EAAE,UAAU,EAAC,MAAM,eAAe,CAAC;AAC3G,OAAO,EAAC,gBAAgB,EAAC,MAAM,YAAY,CAAC;AAC5C,OAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"Settings.js","sourceRoot":"","sources":["../../../../../src/components/UserProfileEdit/Section/Settings.tsx"],"names":[],"mappings":"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"}
|