| 123456789101112131415161718192021222324252627282930313233343536373839 |
- import type { FC } from 'react';
- import React from 'react';
- import type { HasObjectId } from '@growi/core';
- import { PagePathLabel } from '@growi/ui/dist/components';
- import type { IInAppNotification } from '~/interfaces/in-app-notification';
- import FormattedDistanceDate from '../../FormattedDistanceDate';
- type Props = {
- notification: IInAppNotification & HasObjectId
- actionMsg: string
- actionIcon: string
- actionUsers: string
- };
- export const ModelNotification: FC<Props> = (props) => {
- const {
- notification, actionMsg, actionIcon, actionUsers,
- } = props;
- return (
- <div className="p-2 overflow-hidden">
- <div className="text-truncate">
- <b>{actionUsers}</b>
- {actionMsg}
- <PagePathLabel path={notification.parsedSnapshot?.path ?? ''} />
- </div>
- <span className="material-symbols-outlined me-2">{actionIcon}</span>
- <FormattedDistanceDate
- id={notification._id}
- date={notification.createdAt}
- isShowTooltip={false}
- differenceForAvoidingFormat={Number.POSITIVE_INFINITY}
- />
- </div>
- );
- };
|