Skip to content

Commit

Permalink
[Mobile]Fix placeholder position of block appender (#14386)
Browse files Browse the repository at this point in the history
* Fix placeholder position of block appender

* Remove unused import

* Change import position

* Remove unused import in css file

* Remove extra container view

* Update travis.yml from master branch to fix CI issues
  • Loading branch information
pinarol authored Mar 12, 2019
1 parent ea8d9d7 commit 38377fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 27 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
/**
* External dependencies
*/
import { TextInput, TouchableWithoutFeedback, View } from 'react-native';
import { TouchableWithoutFeedback, View } from 'react-native';

/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import { RichText } from '@wordpress/editor';
import { compose } from '@wordpress/compose';
import { decodeEntities } from '@wordpress/html-entities';
import { withSelect, withDispatch } from '@wordpress/data';
Expand All @@ -21,6 +22,7 @@ export function DefaultBlockAppender( {
isVisible,
onAppend,
placeholder,
containerStyle,
} ) {
if ( isLocked || ! isVisible ) {
return null;
Expand All @@ -32,16 +34,10 @@ export function DefaultBlockAppender( {
<TouchableWithoutFeedback
onPress={ onAppend }
>
<View style={ styles.blockHolder } pointerEvents="box-only">
<View style={ styles.blockContainer }>
<TextInput
style={ styles.textView }
textAlignVertical="top"
multiline
numberOfLines={ 0 }
value={ value }
/>
</View>
<View style={ [ styles.blockHolder, containerStyle ] } pointerEvents="box-only">
<RichText
placeholder={ value }
/>
</View>
</TouchableWithoutFeedback>
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,21 +1,5 @@
// @format

@import "variables.scss";
@import "colors.scss";

.blockHolder {
flex: 1 1 auto;
}

.blockContainer {
background-color: $white;
padding-top: 0;
padding-left: 16px;
padding-right: 16px;
}

.textView {
color: $gray;
font-size: 16px;
font-family: $default-regular-font;
}

0 comments on commit 38377fe

Please sign in to comment.