Updated Composer for mobile
• Updated: - Composer for mobile. Using Textarea instead of Composer component for mobile.
This commit is contained in:
parent
429bb277e9
commit
b9bf84994f
app/javascript/gabsocial
@ -3,9 +3,13 @@ import ImmutablePropTypes from 'react-immutable-proptypes'
|
|||||||
import isObject from 'lodash.isobject'
|
import isObject from 'lodash.isobject'
|
||||||
import ImmutablePureComponent from 'react-immutable-pure-component'
|
import ImmutablePureComponent from 'react-immutable-pure-component'
|
||||||
import Textarea from 'react-textarea-autosize'
|
import Textarea from 'react-textarea-autosize'
|
||||||
import { CX } from '../constants'
|
import {
|
||||||
|
CX,
|
||||||
|
BREAKPOINT_EXTRA_SMALL,
|
||||||
|
} from '../constants'
|
||||||
import { isRtl } from '../utils/rtl'
|
import { isRtl } from '../utils/rtl'
|
||||||
import { textAtCursorMatchesToken } from '../utils/cursor_token_match'
|
import { textAtCursorMatchesToken } from '../utils/cursor_token_match'
|
||||||
|
import Responsive from '../features/ui/util/responsive_component'
|
||||||
import AutosuggestAccount from './autosuggest_account'
|
import AutosuggestAccount from './autosuggest_account'
|
||||||
import AutosuggestEmoji from './autosuggest_emoji'
|
import AutosuggestEmoji from './autosuggest_emoji'
|
||||||
import Input from './input'
|
import Input from './input'
|
||||||
@ -219,6 +223,27 @@ export default class AutosuggestTextbox extends ImmutablePureComponent {
|
|||||||
py5: small,
|
py5: small,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const textareaClasses = CX({
|
||||||
|
default: 1,
|
||||||
|
font: 1,
|
||||||
|
wrap: 1,
|
||||||
|
resizeNone: 1,
|
||||||
|
bgTransparent: 1,
|
||||||
|
outlineNone: 1,
|
||||||
|
lineHeight125: 1,
|
||||||
|
colorPrimary: 1,
|
||||||
|
width100PC: !small,
|
||||||
|
pt15: !small,
|
||||||
|
px15: !small,
|
||||||
|
px10: small,
|
||||||
|
pb10: !small,
|
||||||
|
fs16PX: !small,
|
||||||
|
fs14PX: small,
|
||||||
|
heightMax200PX: small,
|
||||||
|
heightMax80VH: !small,
|
||||||
|
heightMin80PX: !small,
|
||||||
|
})
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
<div className={textareaContainerClasses}>
|
<div className={textareaContainerClasses}>
|
||||||
@ -226,6 +251,26 @@ export default class AutosuggestTextbox extends ImmutablePureComponent {
|
|||||||
{placeholder}
|
{placeholder}
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
|
<Responsive max={BREAKPOINT_EXTRA_SMALL}>
|
||||||
|
<Textarea
|
||||||
|
id={id}
|
||||||
|
inputRef={this.setTextbox}
|
||||||
|
className={textareaClasses}
|
||||||
|
disabled={disabled}
|
||||||
|
placeholder={placeholder}
|
||||||
|
autoFocus={false}
|
||||||
|
value={value}
|
||||||
|
onChange={this.onChange}
|
||||||
|
onKeyDown={this.onKeyDown}
|
||||||
|
onKeyUp={onKeyUp}
|
||||||
|
onFocus={this.onFocus}
|
||||||
|
onBlur={this.onBlur}
|
||||||
|
onPaste={this.onPaste}
|
||||||
|
aria-autocomplete='list'
|
||||||
|
/>
|
||||||
|
</Responsive>
|
||||||
|
|
||||||
|
<Responsive min={BREAKPOINT_EXTRA_SMALL}>
|
||||||
<Composer
|
<Composer
|
||||||
inputRef={this.setTextbox}
|
inputRef={this.setTextbox}
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
@ -240,6 +285,7 @@ export default class AutosuggestTextbox extends ImmutablePureComponent {
|
|||||||
onPaste={this.onPaste}
|
onPaste={this.onPaste}
|
||||||
small={small}
|
small={small}
|
||||||
/>
|
/>
|
||||||
|
</Responsive>
|
||||||
|
|
||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
|
@ -34,12 +34,11 @@ const mapStateToProps = (state, props) => {
|
|||||||
|
|
||||||
if (isModalOpen) isMatch = true
|
if (isModalOpen) isMatch = true
|
||||||
if (isModalOpen && shouldCondense) isMatch = false
|
if (isModalOpen && shouldCondense) isMatch = false
|
||||||
if (isModalOpen && !modal) isMatch = false
|
if (isModalOpen && (!modal && !isStandalone)) isMatch = false
|
||||||
|
|
||||||
// console.log("isMatch:", isMatch, reduxReplyToId, replyToId, state.getIn(['compose', 'text']))
|
// console.log("isMatch:", isMatch, modal, isModalOpen, state.getIn(['compose', 'text']))
|
||||||
// console.log("reduxReplyToId:", reduxReplyToId, isModalOpen, isStandalone)
|
// console.log("reduxReplyToId:", reduxReplyToId, isModalOpen, isStandalone)
|
||||||
|
// const edit = state.getIn(['compose', 'id'])
|
||||||
const edit = state.getIn(['compose', 'id'])
|
|
||||||
|
|
||||||
if (!isMatch) {
|
if (!isMatch) {
|
||||||
return {
|
return {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user