import { ArchiveIcon, MarkAsReadIcon } from "outline-icons"; import * as React from "react"; import { createAction } from ".."; import { NotificationSection } from "../sections"; export const markNotificationsAsRead = createAction({ name: ({ t }) => t("Mark notifications as read"), analyticsName: "Mark notifications as read", section: NotificationSection, icon: , shortcut: ["Shift+Escape"], perform: ({ stores }) => stores.notifications.markAllAsRead(), visible: ({ stores }) => stores.notifications.approximateUnreadCount > 0, }); export const markNotificationsAsArchived = createAction({ name: ({ t }) => t("Archive all notifications"), analyticsName: "Mark notifications as archived", section: NotificationSection, icon: , iconInContextMenu: false, perform: ({ stores }) => stores.notifications.markAllAsArchived(), visible: ({ stores }) => stores.notifications.orderedData.length > 0, }); export const rootNotificationActions = [ markNotificationsAsRead, markNotificationsAsArchived, ];