* RN-173 Added support for Markdown images * RN-173 Added proper alt text when image fails to load * Changed (edited) indicator not add itself as a child of an image * RN-173 Removed space between an image and the following text * Made sure MarkdownImage is mounted when setState is called * Fixed images in links having their location overwritten * Made images work in links * Fixed uppercase links not working on Android * Added vertical margin around images * RN-173 Added styling for markdown image error text * RN-173 Added error when image exceeds max dimensions on Android
59 lines
1.5 KiB
JavaScript
59 lines
1.5 KiB
JavaScript
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import React, {PureComponent} from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import {
|
|
StyleSheet,
|
|
Text,
|
|
View
|
|
} from 'react-native';
|
|
|
|
import CustomPropTypes from 'app/constants/custom_prop_types';
|
|
|
|
export default class MarkdownListItem extends PureComponent {
|
|
static propTypes = {
|
|
children: CustomPropTypes.Children.isRequired,
|
|
ordered: PropTypes.bool.isRequired,
|
|
continue: PropTypes.bool,
|
|
index: PropTypes.number.isRequired,
|
|
bulletStyle: CustomPropTypes.Style,
|
|
level: PropTypes.number
|
|
};
|
|
|
|
render() {
|
|
let bullet;
|
|
if (this.props.continue) {
|
|
bullet = '';
|
|
} else if (this.props.ordered) {
|
|
bullet = this.props.index + '. ';
|
|
} else if (this.props.level % 2 === 0) {
|
|
bullet = '◦';
|
|
} else {
|
|
bullet = '•';
|
|
}
|
|
|
|
return (
|
|
<View style={style.container}>
|
|
<View style={style.bullet}>
|
|
<Text style={this.props.bulletStyle}>
|
|
{bullet}
|
|
</Text>
|
|
</View>
|
|
<View>
|
|
{this.props.children}
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const style = StyleSheet.create({
|
|
bullet: {
|
|
width: 15
|
|
},
|
|
container: {
|
|
flexDirection: 'row',
|
|
alignItems: 'flex-start'
|
|
}
|
|
});
|