* Add the channel options to get into playbooks (#8750) * Add the channel options to get into playbooks * Use playbook run id instead of playbook id * i18n * Fix issues and move playbooks to the products folder * Address some tests * Fix test * Address design issues * Add requested comment --------- Co-authored-by: Elias Nahum <nahumhbl@gmail.com> * Playbooks database (#8802) * Add lastPlaybookFetchAt to channel table (#8916) * Add lastPlaybookFetchAt to channel table * Add missing commit * Use my_channel table instead * Fix test * Address feedback * First implementation of playbooks API (#8897) * First implementation of playbooks API * Add version check * Address feedback * Fix test * Add last fetch at usage and other improvements * Simplify test * Add sort_order, update_at and previousReminder columns (#8927) * Add sort_order, update_at and previousReminder columns * Remove order from the schema * Fix tests * Add tests * Add websockets for playbooks (#8947) * Add websocket events for playbooks * Fix typo * Add playbook run list (#8761) * Add the channel options to get into playbooks * Use playbook run id instead of playbook id * i18n * Fix issues and move playbooks to the products folder * Address some tests * Fix test * Add playbook run list * Add missing texts * Add back button support and item size to flash list * Address design issues * Add requested comment * Standardize tag and use it in the card * Fix merge * Add API related functionality --------- Co-authored-by: Elias Nahum <nahumhbl@gmail.com> * Add playbooks run details (#8872) * Add the channel options to get into playbooks * Use playbook run id instead of playbook id * i18n * Fix issues and move playbooks to the products folder * Address some tests * Fix test * Add playbook run list * Add missing texts * Add back button support and item size to flash list * Address design issues * Add requested comment * Standardize tag and use it in the card * Add playbooks run details * Fix merge * Add API related functionality * Add API related changes * Order fixes * Several fixes * Add error state on playbook run * i18n-extract * Fix tests * Fix test * Several fixes * Fixes and add missing UI elements * i18n-extract * Fix tests * Remove files from bad merge --------- Co-authored-by: Elias Nahum <nahumhbl@gmail.com> * Add missing tests for playbooks (#8976) * Add the channel options to get into playbooks * Use playbook run id instead of playbook id * i18n * Fix issues and move playbooks to the products folder * Address some tests * Fix test * Add playbook run list * Add missing texts * Add back button support and item size to flash list * Address design issues * Add requested comment * Standardize tag and use it in the card * Add playbooks run details * Fix merge * Add API related functionality * Add API related changes * Order fixes * Several fixes * Add error state on playbook run * i18n-extract * Fix tests * Fix test * Several fixes * Fixes and add missing UI elements * i18n-extract * Fix tests * Remove files from bad merge * Add tests * Fix typo * Add missing strings * Fix tests and skip some * Fix test * Fix typo --------- Co-authored-by: Elias Nahum <nahumhbl@gmail.com> * Address feedback * Address feedback and fix tests * Address comments and fix tests * Address feedback * Address plugin changes and fix bugs --------- Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
107 lines
3.1 KiB
TypeScript
107 lines
3.1 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {Image as ExpoImage, type ImageSource} from 'expo-image';
|
|
import React, {useMemo} from 'react';
|
|
import Animated from 'react-native-reanimated';
|
|
|
|
import {buildAbsoluteUrl} from '@actions/remote/file';
|
|
import {buildProfileImageUrlFromUser} from '@actions/remote/user';
|
|
import CompassIcon from '@components/compass_icon';
|
|
import {ACCOUNT_OUTLINE_IMAGE} from '@constants/profile';
|
|
import {useServerUrl} from '@context/server';
|
|
import {useTheme} from '@context/theme';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {getLastPictureUpdate} from '@utils/user';
|
|
|
|
import type UserModel from '@typings/database/models/servers/user';
|
|
|
|
type Props = {
|
|
author?: UserModel | UserProfile;
|
|
forwardRef?: React.RefObject<any>;
|
|
iconSize?: number;
|
|
size: number;
|
|
source?: ImageSource | string;
|
|
url?: string;
|
|
};
|
|
|
|
const AnimatedImage = Animated.createAnimatedComponent(ExpoImage);
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => {
|
|
return {
|
|
icon: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.48),
|
|
},
|
|
};
|
|
});
|
|
|
|
const Image = ({author, forwardRef, iconSize, size, source, url}: Props) => {
|
|
const theme = useTheme();
|
|
let serverUrl = useServerUrl();
|
|
serverUrl = url || serverUrl;
|
|
|
|
const style = getStyleSheet(theme);
|
|
const lastPictureUpdateAt = author ? getLastPictureUpdate(author) : 0;
|
|
const fIStyle = useMemo(() => ({
|
|
borderRadius: size / 2,
|
|
backgroundColor: theme.centerChannelBg,
|
|
height: size,
|
|
width: size,
|
|
}), [size, theme.centerChannelBg]);
|
|
|
|
const imgSource = useMemo(() => {
|
|
if (!author || typeof source === 'string') {
|
|
return undefined;
|
|
}
|
|
|
|
const pictureUrl = buildProfileImageUrlFromUser(serverUrl, author);
|
|
return source ?? {uri: buildAbsoluteUrl(serverUrl, pictureUrl)};
|
|
|
|
// We need to pass the lastPictureUpdateAt, because changes in this
|
|
// value are used internally, and may not be followed by a change
|
|
// in the containing object (author).
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [author, serverUrl, source, lastPictureUpdateAt]);
|
|
|
|
if (typeof source === 'string') {
|
|
return (
|
|
<CompassIcon
|
|
name={source}
|
|
size={iconSize || size}
|
|
style={style.icon}
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (imgSource?.uri?.startsWith('file://')) {
|
|
return (
|
|
<AnimatedImage
|
|
key={imgSource.uri}
|
|
ref={forwardRef}
|
|
style={fIStyle}
|
|
source={{uri: imgSource.uri}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (imgSource) {
|
|
return (
|
|
<AnimatedImage
|
|
key={imgSource.uri}
|
|
ref={forwardRef}
|
|
style={fIStyle}
|
|
source={imgSource}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<CompassIcon
|
|
name={ACCOUNT_OUTLINE_IMAGE}
|
|
size={iconSize || size}
|
|
style={style.icon}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default Image;
|