1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

added new flow presets

This commit is contained in:
Fedor Katurov 2022-03-15 12:09:00 +07:00
parent 4e5a6d727a
commit 5cd1064140
18 changed files with 64 additions and 45 deletions

View file

@ -3,7 +3,7 @@ import React, { FC } from 'react';
import classNames from 'classnames';
import { Group } from '~/components/containers/Group';
import { PRESETS } from '~/constants/urls';
import { ImagePresets } from '~/constants/urls';
import markdown from '~/styles/common/markdown.module.scss';
import { IMessage } from '~/types';
import { formatText, getPrettyDate, getURL } from '~/utils/dom';
@ -27,7 +27,7 @@ const Message: FC<IProps> = ({ message, incoming }) => {
<div
className={styles.avatar}
style={{ backgroundImage: `url("${getURL(message.from.photo, PRESETS.avatar)}")` }}
style={{ backgroundImage: `url("${getURL(message.from.photo, ImagePresets.avatar)}")` }}
/>
<div className={styles.stamp}>{getPrettyDate(message.created_at)}</div>

View file

@ -1,7 +1,7 @@
import React, { ChangeEvent, FC, useCallback } from 'react';
import { Button } from '~/components/input/Button';
import { PRESETS } from '~/constants/urls';
import { ImagePresets } from '~/constants/urls';
import { IFile } from '~/types';
import { getURL } from '~/utils/dom';
@ -26,7 +26,7 @@ const ProfileAvatar: FC<ProfileAvatarProps> = ({ photo, onChangePhoto, canEdit,
[onChangePhoto]
);
const backgroundImage = photo ? `url("${getURL(photo, PRESETS.avatar)}")` : undefined;
const backgroundImage = photo ? `url("${getURL(photo, ImagePresets.avatar)}")` : undefined;
return (
<div