mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-13 18:22:44 +03:00
closed #275
This commit is contained in:
parent
ec86d7576f
commit
2a84d7994e
@ -1,7 +1,5 @@
|
||||
import React, { PureComponent, Fragment } from 'react';
|
||||
import {
|
||||
Dimensions, Linking, Alert,
|
||||
} from 'react-native';
|
||||
import { Dimensions, Linking, Alert } from 'react-native';
|
||||
import { withNavigation } from 'react-navigation';
|
||||
import { injectIntl } from 'react-intl';
|
||||
|
||||
@ -16,7 +14,7 @@ import { default as ROUTES } from '../../../../constants/routeNames';
|
||||
const WIDTH = Dimensions.get('window').width;
|
||||
const CUSTOM_RENDERERS = {
|
||||
// example
|
||||
//center: () => <Text style={{ backgroundColor: 'blue', textAlign: 'center'}}>ugur</Text>,
|
||||
// center: () => <Text style={{ backgroundColor: 'blue', textAlign: 'center'}}>ugur</Text>,
|
||||
};
|
||||
const DEFAULT_PROPS = {
|
||||
renderers: CUSTOM_RENDERERS,
|
||||
@ -101,6 +99,26 @@ class PostBody extends PureComponent {
|
||||
if (node.name === 'img') {
|
||||
node.attribs.style = 'text-align: center;';
|
||||
}
|
||||
|
||||
if (node.name === 'div' && node.attribs && node.attribs.class) {
|
||||
const _className = node.attribs.class;
|
||||
|
||||
if (_className === 'pull-right') {
|
||||
node.attribs.style = 'text-align: right;';
|
||||
}
|
||||
|
||||
if (_className === 'pull-left') {
|
||||
node.attribs.style = 'text-align: left;';
|
||||
}
|
||||
|
||||
if (_className === 'text-justify') {
|
||||
node.attribs.style = 'text-align: justify; text-justify: inter-word; letter-spacing: 1.2px;';
|
||||
}
|
||||
|
||||
if (_className === 'phishy') {
|
||||
node.attribs.style = 'color: red';
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
render() {
|
||||
|
Loading…
Reference in New Issue
Block a user