Skip to content

Commit

Permalink
feat: save discussion alert dismissal
Browse files Browse the repository at this point in the history
  • Loading branch information
CefBoud committed Aug 23, 2024
1 parent 9e49a74 commit 0aebc09
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/course-outline/page-alerts/PageAlerts.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,11 @@ const PageAlerts = ({
const intl = useIntl();
const dispatch = useDispatch();
const studioBaseUrl = getConfig().STUDIO_BASE_URL;
const discussionAlertDismissKey = `discussionAlertDismissed-${courseId}`;
const [showConfigAlert, setShowConfigAlert] = useState(true);
const [showDiscussionAlert, setShowDiscussionAlert] = useState(true);
const [showDiscussionAlert, setShowDiscussionAlert] = useState(
localStorage.getItem(discussionAlertDismissKey) === null

Check failure on line 47 in src/course-outline/page-alerts/PageAlerts.jsx

View workflow job for this annotation

GitHub Actions / tests

Missing trailing comma
);
const { newFiles, conflictingFiles, errorFiles } = useSelector(getPasteFileNotices);

const getAssetsUrl = () => {
Expand Down Expand Up @@ -83,6 +86,7 @@ const PageAlerts = ({

const onDismiss = () => {
setShowDiscussionAlert(false);
localStorage.setItem(discussionAlertDismissKey, 'true');
};

return (
Expand Down Expand Up @@ -386,9 +390,9 @@ const PageAlerts = ({
key={msgObj.key}
>
{msgObj.title
&& (
<Alert.Heading>{msgObj.title}</Alert.Heading>
)}
&& (
<Alert.Heading>{msgObj.title}</Alert.Heading>
)}
{msgObj.desc && <Truncate lines={2}>{msgObj.desc}</Truncate>}
</Alert>
)
Expand Down

0 comments on commit 0aebc09

Please sign in to comment.