livestream notification styling
This commit is contained in:
parent
166d2f9049
commit
fdeea30a4a
2 changed files with 11 additions and 6 deletions
|
@ -74,6 +74,9 @@ export default function Notification(props: Props) {
|
|||
case NOTIFICATIONS.NEW_CONTENT:
|
||||
icon = <ChannelThumbnail small uri={notification_parameters.dynamic.channel_url} />;
|
||||
break;
|
||||
case NOTIFICATIONS.NEW_LIVESTREAM:
|
||||
icon = <ChannelThumbnail small uri={notification_parameters.dynamic.channel_url} />;
|
||||
break;
|
||||
case NOTIFICATIONS.DAILY_WATCH_AVAILABLE:
|
||||
case NOTIFICATIONS.DAILY_WATCH_REMIND:
|
||||
icon = <Icon icon={ICONS.LBC} sectionIcon />;
|
||||
|
@ -147,12 +150,13 @@ export default function Notification(props: Props) {
|
|||
</div>
|
||||
|
||||
{notification_rule === NOTIFICATIONS.NEW_CONTENT && (
|
||||
<>
|
||||
<FileThumbnail
|
||||
uri={notification_parameters.device.target}
|
||||
className="notification__content-thumbnail"
|
||||
/>
|
||||
</>
|
||||
<FileThumbnail uri={notification_parameters.device.target} className="notification__content-thumbnail" />
|
||||
)}
|
||||
{notification_rule === NOTIFICATIONS.NEW_LIVESTREAM && (
|
||||
<FileThumbnail
|
||||
thumbnail={notification_parameters.device.image_url}
|
||||
className="notification__content-thumbnail"
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ export const NOTIFICATION_REPLY = 'comment-reply';
|
|||
export const DAILY_WATCH_AVAILABLE = 'daily_watch_available';
|
||||
export const DAILY_WATCH_REMIND = 'daily_watch_remind';
|
||||
export const NEW_CONTENT = 'new_content';
|
||||
export const NEW_LIVESTREAM = 'new_livestream';
|
||||
|
||||
export const NOTIFICATION_RULE_NONE = '';
|
||||
export const NOTIFICATION_RULE_COMMENTS = 'comments';
|
||||
|
|
Loading…
Reference in a new issue