80 lines
2.2 KiB
JavaScript
80 lines
2.2 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {PureComponent} from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import {Image, Text, View} from 'react-native';
|
|
import IonIcon from 'react-native-vector-icons/Ionicons';
|
|
|
|
import {changeOpacity, makeStyleSheetFromTheme} from 'app/utils/theme';
|
|
|
|
export default class NoResults extends PureComponent {
|
|
static propTypes = {
|
|
description: PropTypes.string,
|
|
iconName: PropTypes.string,
|
|
image: PropTypes.number,
|
|
theme: PropTypes.object.isRequired,
|
|
title: PropTypes.string.isRequired,
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
description,
|
|
iconName,
|
|
image,
|
|
theme,
|
|
title,
|
|
} = this.props;
|
|
const style = getStyleFromTheme(theme);
|
|
|
|
let icon;
|
|
if (image) {
|
|
icon = (
|
|
<Image
|
|
source={image}
|
|
style={{width: 37, height: 37, tintColor: changeOpacity(theme.centerChannelColor, 0.5)}}
|
|
/>
|
|
);
|
|
} else if (iconName) {
|
|
icon = (
|
|
<IonIcon
|
|
size={44}
|
|
color={changeOpacity(theme.centerChannelColor, 0.4)}
|
|
name={iconName}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<View style={style.container}>
|
|
{icon}
|
|
<Text style={style.title}>{title}</Text>
|
|
{description &&
|
|
<Text style={style.description}>{description}</Text>
|
|
}
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const getStyleFromTheme = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
container: {
|
|
alignItems: 'center',
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
paddingHorizontal: 15,
|
|
},
|
|
title: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.4),
|
|
fontSize: 20,
|
|
fontWeight: '600',
|
|
marginVertical: 15,
|
|
},
|
|
description: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.4),
|
|
fontSize: 17,
|
|
textAlign: 'center',
|
|
},
|
|
};
|
|
});
|