rm mattermost pasteinput
This commit is contained in:
@@ -96,7 +96,6 @@
|
|||||||
"@haileyok/bluesky-video": "0.3.2",
|
"@haileyok/bluesky-video": "0.3.2",
|
||||||
"@ipld/dag-cbor": "^9.2.0",
|
"@ipld/dag-cbor": "^9.2.0",
|
||||||
"@lingui/react": "^4.14.1",
|
"@lingui/react": "^4.14.1",
|
||||||
"@mattermost/react-native-paste-input": "mattermost/react-native-paste-input",
|
|
||||||
"@miblanchard/react-native-slider": "^2.6.0",
|
"@miblanchard/react-native-slider": "^2.6.0",
|
||||||
"@mozzius/expo-dynamic-app-icon": "^1.8.0",
|
"@mozzius/expo-dynamic-app-icon": "^1.8.0",
|
||||||
"@react-native-async-storage/async-storage": "2.2.0",
|
"@react-native-async-storage/async-storage": "2.2.0",
|
||||||
|
|||||||
@@ -1,13 +0,0 @@
|
|||||||
diff --git a/node_modules/@mattermost/react-native-paste-input/android/src/main/java/com/mattermost/pasteinputtext/PasteTextInputManager.kt b/node_modules/@mattermost/react-native-paste-input/android/src/main/java/com/mattermost/pasteinputtext/PasteTextInputManager.kt
|
|
||||||
index 4ed2307..ede1181 100644
|
|
||||||
--- a/node_modules/@mattermost/react-native-paste-input/android/src/main/java/com/mattermost/pasteinputtext/PasteTextInputManager.kt
|
|
||||||
+++ b/node_modules/@mattermost/react-native-paste-input/android/src/main/java/com/mattermost/pasteinputtext/PasteTextInputManager.kt
|
|
||||||
@@ -54,7 +54,7 @@ class PasteTextInputManager(context: ReactApplicationContext) : ReactTextInputMa
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getExportedCustomBubblingEventTypeConstants(): MutableMap<String, Any> {
|
|
||||||
- val map = super.getExportedCustomBubblingEventTypeConstants()!!
|
|
||||||
+ val map = super.getExportedCustomBubblingEventTypeConstants().toMutableMap()
|
|
||||||
map["onPaste"] = MapBuilder.of(
|
|
||||||
"phasedRegistrationNames",
|
|
||||||
MapBuilder.of("bubbled", "onPaste")
|
|
||||||
@@ -1,264 +0,0 @@
|
|||||||
diff --git a/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m b/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m
|
|
||||||
index e916023..5049c33 100644
|
|
||||||
--- a/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m
|
|
||||||
+++ b/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m
|
|
||||||
@@ -4,6 +4,7 @@
|
|
||||||
//
|
|
||||||
// Created by Elias Nahum on 04-11-20.
|
|
||||||
// Copyright © 2020 Facebook. All rights reserved.
|
|
||||||
+// Updated to remove parent’s default text view
|
|
||||||
//
|
|
||||||
|
|
||||||
#import "PasteInputView.h"
|
|
||||||
@@ -12,49 +13,78 @@
|
|
||||||
|
|
||||||
@implementation PasteInputView
|
|
||||||
{
|
|
||||||
- PasteInputTextView *_backedTextInputView;
|
|
||||||
+ // We'll store the custom text view in this ivar
|
|
||||||
+ PasteInputTextView *_customBackedTextView;
|
|
||||||
}
|
|
||||||
|
|
||||||
- (instancetype)initWithBridge:(RCTBridge *)bridge
|
|
||||||
{
|
|
||||||
+ // Must call the super’s designated initializer
|
|
||||||
if (self = [super initWithBridge:bridge]) {
|
|
||||||
- _backedTextInputView = [[PasteInputTextView alloc] initWithFrame:self.bounds];
|
|
||||||
- _backedTextInputView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
|
|
||||||
- _backedTextInputView.textInputDelegate = self;
|
|
||||||
+ // 1. The parent (RCTMultilineTextInputView) has already created
|
|
||||||
+ // its own _backedTextInputView = [RCTUITextView new] in super init.
|
|
||||||
+ // We can remove that subview:
|
|
||||||
|
|
||||||
- [self addSubview:_backedTextInputView];
|
|
||||||
- }
|
|
||||||
+ id<RCTBackedTextInputViewProtocol> parentInputView = super.backedTextInputView;
|
|
||||||
+ if ([parentInputView isKindOfClass:[UIView class]]) {
|
|
||||||
+ UIView *parentSubview = (UIView *)parentInputView;
|
|
||||||
+ if (parentSubview.superview == self) {
|
|
||||||
+ [parentSubview removeFromSuperview];
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
|
|
||||||
+ // 2. Now create our custom PasteInputTextView
|
|
||||||
+ _customBackedTextView = [[PasteInputTextView alloc] initWithFrame:self.bounds];
|
|
||||||
+ _customBackedTextView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
|
|
||||||
+ _customBackedTextView.textInputDelegate = self;
|
|
||||||
+
|
|
||||||
+ // Optional: disable inline predictions for iOS 17+
|
|
||||||
+ if (@available(iOS 17.0, *)) {
|
|
||||||
+ _customBackedTextView.inlinePredictionType = UITextInlinePredictionTypeNo;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ // 3. Add your custom text view as the only subview
|
|
||||||
+ [self addSubview:_customBackedTextView];
|
|
||||||
+ }
|
|
||||||
return self;
|
|
||||||
}
|
|
||||||
|
|
||||||
+/**
|
|
||||||
+ * Override the parent's accessor so that anywhere in RN that calls
|
|
||||||
+ * `self.backedTextInputView` will get the custom PasteInputTextView.
|
|
||||||
+ */
|
|
||||||
- (id<RCTBackedTextInputViewProtocol>)backedTextInputView
|
|
||||||
{
|
|
||||||
- return _backedTextInputView;
|
|
||||||
+ return _customBackedTextView;
|
|
||||||
}
|
|
||||||
|
|
||||||
-- (void)setDisableCopyPaste:(BOOL)disableCopyPaste {
|
|
||||||
- _backedTextInputView.disableCopyPaste = disableCopyPaste;
|
|
||||||
+#pragma mark - Setters for React Props
|
|
||||||
+
|
|
||||||
+- (void)setDisableCopyPaste:(BOOL)disableCopyPaste
|
|
||||||
+{
|
|
||||||
+ _customBackedTextView.disableCopyPaste = disableCopyPaste;
|
|
||||||
}
|
|
||||||
|
|
||||||
-- (void)setOnPaste:(RCTDirectEventBlock)onPaste {
|
|
||||||
- _backedTextInputView.onPaste = onPaste;
|
|
||||||
+- (void)setOnPaste:(RCTDirectEventBlock)onPaste
|
|
||||||
+{
|
|
||||||
+ _customBackedTextView.onPaste = onPaste;
|
|
||||||
}
|
|
||||||
|
|
||||||
-- (void)setSmartPunctuation:(NSString *)smartPunctuation {
|
|
||||||
- if ([smartPunctuation isEqualToString:@"enable"]) {
|
|
||||||
- [_backedTextInputView setSmartDashesType:UITextSmartDashesTypeYes];
|
|
||||||
- [_backedTextInputView setSmartQuotesType:UITextSmartQuotesTypeYes];
|
|
||||||
- [_backedTextInputView setSmartInsertDeleteType:UITextSmartInsertDeleteTypeYes];
|
|
||||||
- } else if ([smartPunctuation isEqualToString:@"disable"]) {
|
|
||||||
- [_backedTextInputView setSmartDashesType:UITextSmartDashesTypeNo];
|
|
||||||
- [_backedTextInputView setSmartQuotesType:UITextSmartQuotesTypeNo];
|
|
||||||
- [_backedTextInputView setSmartInsertDeleteType:UITextSmartInsertDeleteTypeNo];
|
|
||||||
- } else {
|
|
||||||
- [_backedTextInputView setSmartDashesType:UITextSmartDashesTypeDefault];
|
|
||||||
- [_backedTextInputView setSmartQuotesType:UITextSmartQuotesTypeDefault];
|
|
||||||
- [_backedTextInputView setSmartInsertDeleteType:UITextSmartInsertDeleteTypeDefault];
|
|
||||||
- }
|
|
||||||
+- (void)setSmartPunctuation:(NSString *)smartPunctuation
|
|
||||||
+{
|
|
||||||
+ if ([smartPunctuation isEqualToString:@"enable"]) {
|
|
||||||
+ [_customBackedTextView setSmartDashesType:UITextSmartDashesTypeYes];
|
|
||||||
+ [_customBackedTextView setSmartQuotesType:UITextSmartQuotesTypeYes];
|
|
||||||
+ [_customBackedTextView setSmartInsertDeleteType:UITextSmartInsertDeleteTypeYes];
|
|
||||||
+ } else if ([smartPunctuation isEqualToString:@"disable"]) {
|
|
||||||
+ [_customBackedTextView setSmartDashesType:UITextSmartDashesTypeNo];
|
|
||||||
+ [_customBackedTextView setSmartQuotesType:UITextSmartQuotesTypeNo];
|
|
||||||
+ [_customBackedTextView setSmartInsertDeleteType:UITextSmartInsertDeleteTypeNo];
|
|
||||||
+ } else {
|
|
||||||
+ [_customBackedTextView setSmartDashesType:UITextSmartDashesTypeDefault];
|
|
||||||
+ [_customBackedTextView setSmartQuotesType:UITextSmartQuotesTypeDefault];
|
|
||||||
+ [_customBackedTextView setSmartInsertDeleteType:UITextSmartInsertDeleteTypeDefault];
|
|
||||||
+ }
|
|
||||||
}
|
|
||||||
|
|
||||||
#pragma mark - UIScrollViewDelegate
|
|
||||||
@@ -62,7 +92,6 @@ - (void)setSmartPunctuation:(NSString *)smartPunctuation {
|
|
||||||
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
|
|
||||||
{
|
|
||||||
RCTDirectEventBlock onScroll = self.onScroll;
|
|
||||||
-
|
|
||||||
if (onScroll) {
|
|
||||||
CGPoint contentOffset = scrollView.contentOffset;
|
|
||||||
CGSize contentSize = scrollView.contentSize;
|
|
||||||
@@ -71,22 +100,22 @@ - (void)scrollViewDidScroll:(UIScrollView *)scrollView
|
|
||||||
|
|
||||||
onScroll(@{
|
|
||||||
@"contentOffset": @{
|
|
||||||
- @"x": @(contentOffset.x),
|
|
||||||
- @"y": @(contentOffset.y)
|
|
||||||
+ @"x": @(contentOffset.x),
|
|
||||||
+ @"y": @(contentOffset.y)
|
|
||||||
},
|
|
||||||
@"contentInset": @{
|
|
||||||
- @"top": @(contentInset.top),
|
|
||||||
- @"left": @(contentInset.left),
|
|
||||||
- @"bottom": @(contentInset.bottom),
|
|
||||||
- @"right": @(contentInset.right)
|
|
||||||
+ @"top": @(contentInset.top),
|
|
||||||
+ @"left": @(contentInset.left),
|
|
||||||
+ @"bottom": @(contentInset.bottom),
|
|
||||||
+ @"right": @(contentInset.right)
|
|
||||||
},
|
|
||||||
@"contentSize": @{
|
|
||||||
- @"width": @(contentSize.width),
|
|
||||||
- @"height": @(contentSize.height)
|
|
||||||
+ @"width": @(contentSize.width),
|
|
||||||
+ @"height": @(contentSize.height)
|
|
||||||
},
|
|
||||||
@"layoutMeasurement": @{
|
|
||||||
- @"width": @(size.width),
|
|
||||||
- @"height": @(size.height)
|
|
||||||
+ @"width": @(size.width),
|
|
||||||
+ @"height": @(size.height)
|
|
||||||
},
|
|
||||||
@"zoomScale": @(scrollView.zoomScale ?: 1),
|
|
||||||
});
|
|
||||||
diff --git a/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInput.mm b/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInput.mm
|
|
||||||
index dd50053..2ed7017 100644
|
|
||||||
--- a/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInput.mm
|
|
||||||
+++ b/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInput.mm
|
|
||||||
@@ -122,8 +122,8 @@ - (void)updateProps:(const Props::Shared &)props oldProps:(const Props::Shared &
|
|
||||||
const auto &newTextInputProps = static_cast<const PasteTextInputProps &>(*props);
|
|
||||||
|
|
||||||
// Traits:
|
|
||||||
- if (newTextInputProps.traits.multiline != oldTextInputProps.traits.multiline) {
|
|
||||||
- [self _setMultiline:newTextInputProps.traits.multiline];
|
|
||||||
+ if (newTextInputProps.multiline != oldTextInputProps.multiline) {
|
|
||||||
+ [self _setMultiline:newTextInputProps.multiline];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (newTextInputProps.traits.autocapitalizationType != oldTextInputProps.traits.autocapitalizationType) {
|
|
||||||
@@ -421,7 +421,7 @@ - (void)textInputDidChangeSelection
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const auto &props = static_cast<const PasteTextInputProps &>(*_props);
|
|
||||||
- if (props.traits.multiline && ![_lastStringStateWasUpdatedWith isEqual:_backedTextInputView.attributedText]) {
|
|
||||||
+ if (props.multiline && ![_lastStringStateWasUpdatedWith isEqual:_backedTextInputView.attributedText]) {
|
|
||||||
[self textInputDidChange];
|
|
||||||
_ignoreNextTextInputCall = YES;
|
|
||||||
}
|
|
||||||
@@ -708,11 +708,11 @@ - (BOOL)_textOf:(NSAttributedString *)newText equals:(NSAttributedString *)oldTe
|
|
||||||
- (SubmitBehavior)getSubmitBehavior
|
|
||||||
{
|
|
||||||
const auto &props = static_cast<const PasteTextInputProps &>(*_props);
|
|
||||||
- const SubmitBehavior submitBehaviorDefaultable = props.traits.submitBehavior;
|
|
||||||
+ const SubmitBehavior submitBehaviorDefaultable = props.submitBehavior;
|
|
||||||
|
|
||||||
// We should always have a non-default `submitBehavior`, but in case we don't, set it based on multiline.
|
|
||||||
if (submitBehaviorDefaultable == SubmitBehavior::Default) {
|
|
||||||
- return props.traits.multiline ? SubmitBehavior::Newline : SubmitBehavior::BlurAndSubmit;
|
|
||||||
+ return props.multiline ? SubmitBehavior::Newline : SubmitBehavior::BlurAndSubmit;
|
|
||||||
}
|
|
||||||
|
|
||||||
return submitBehaviorDefaultable;
|
|
||||||
diff --git a/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInputSpecs/Props.cpp b/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInputSpecs/Props.cpp
|
|
||||||
index 29e094f..7ef519a 100644
|
|
||||||
--- a/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInputSpecs/Props.cpp
|
|
||||||
+++ b/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInputSpecs/Props.cpp
|
|
||||||
@@ -22,8 +22,7 @@ PasteTextInputProps::PasteTextInputProps(
|
|
||||||
const PropsParserContext &context,
|
|
||||||
const PasteTextInputProps &sourceProps,
|
|
||||||
const RawProps& rawProps)
|
|
||||||
- : ViewProps(context, sourceProps, rawProps),
|
|
||||||
- BaseTextProps(context, sourceProps, rawProps),
|
|
||||||
+ : BaseTextInputProps(context, sourceProps, rawProps),
|
|
||||||
traits(convertRawProp(context, rawProps, sourceProps.traits, {})),
|
|
||||||
smartPunctuation(convertRawProp(context, rawProps, "smartPunctuation", sourceProps.smartPunctuation, {})),
|
|
||||||
disableCopyPaste(convertRawProp(context, rawProps, "disableCopyPaste", sourceProps.disableCopyPaste, {false})),
|
|
||||||
@@ -133,7 +132,7 @@ TextAttributes PasteTextInputProps::getEffectiveTextAttributes(Float fontSizeMul
|
|
||||||
ParagraphAttributes PasteTextInputProps::getEffectiveParagraphAttributes() const {
|
|
||||||
auto result = paragraphAttributes;
|
|
||||||
|
|
||||||
- if (!traits.multiline) {
|
|
||||||
+ if (!multiline) {
|
|
||||||
result.maximumNumberOfLines = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
diff --git a/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInputSpecs/Props.h b/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInputSpecs/Props.h
|
|
||||||
index 723d00c..31cfe66 100644
|
|
||||||
--- a/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInputSpecs/Props.h
|
|
||||||
+++ b/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInputSpecs/Props.h
|
|
||||||
@@ -15,6 +15,7 @@
|
|
||||||
#include <react/renderer/components/iostextinput/conversions.h>
|
|
||||||
#include <react/renderer/components/iostextinput/primitives.h>
|
|
||||||
#include <react/renderer/components/text/BaseTextProps.h>
|
|
||||||
+#include <react/renderer/components/textinput/BaseTextInputProps.h>
|
|
||||||
#include <react/renderer/components/view/ViewProps.h>
|
|
||||||
#include <react/renderer/core/Props.h>
|
|
||||||
#include <react/renderer/core/PropsParserContext.h>
|
|
||||||
@@ -25,7 +26,7 @@
|
|
||||||
|
|
||||||
namespace facebook::react {
|
|
||||||
|
|
||||||
-class PasteTextInputProps final : public ViewProps, public BaseTextProps {
|
|
||||||
+class PasteTextInputProps final : public BaseTextInputProps {
|
|
||||||
public:
|
|
||||||
PasteTextInputProps() = default;
|
|
||||||
PasteTextInputProps(const PropsParserContext& context, const PasteTextInputProps& sourceProps, const RawProps& rawProps);
|
|
||||||
diff --git a/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInputSpecs/ShadowNodes.cpp b/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInputSpecs/ShadowNodes.cpp
|
|
||||||
index 31e07e3..7f0ebfb 100644
|
|
||||||
--- a/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInputSpecs/ShadowNodes.cpp
|
|
||||||
+++ b/node_modules/@mattermost/react-native-paste-input/ios/PasteTextInputSpecs/ShadowNodes.cpp
|
|
||||||
@@ -91,20 +91,11 @@ void PasteTextInputShadowNode::updateStateIfNeeded(
|
|
||||||
const auto& state = getStateData();
|
|
||||||
|
|
||||||
react_native_assert(textLayoutManager_);
|
|
||||||
- react_native_assert(
|
|
||||||
- (!state.layoutManager || state.layoutManager == textLayoutManager_) &&
|
|
||||||
- "`StateData` refers to a different `TextLayoutManager`");
|
|
||||||
-
|
|
||||||
- if (state.reactTreeAttributedString == reactTreeAttributedString &&
|
|
||||||
- state.layoutManager == textLayoutManager_) {
|
|
||||||
- return;
|
|
||||||
- }
|
|
||||||
|
|
||||||
auto newState = TextInputState{};
|
|
||||||
newState.attributedStringBox = AttributedStringBox{reactTreeAttributedString};
|
|
||||||
newState.paragraphAttributes = getConcreteProps().paragraphAttributes;
|
|
||||||
newState.reactTreeAttributedString = reactTreeAttributedString;
|
|
||||||
- newState.layoutManager = textLayoutManager_;
|
|
||||||
newState.mostRecentEventCount = getConcreteProps().mostRecentEventCount;
|
|
||||||
setStateData(std::move(newState));
|
|
||||||
}
|
|
||||||
@@ -8,19 +8,16 @@ import {
|
|||||||
import {
|
import {
|
||||||
type NativeSyntheticEvent,
|
type NativeSyntheticEvent,
|
||||||
Text as RNText,
|
Text as RNText,
|
||||||
type TextInputSelectionChangeEventData,
|
TextInput as RNTextInput,
|
||||||
|
type TextInputPasteEventData,
|
||||||
|
type TextInputSelectionChangeEvent,
|
||||||
View,
|
View,
|
||||||
} from 'react-native'
|
} from 'react-native'
|
||||||
import {AppBskyRichtextFacet, RichText} from '@atproto/api'
|
import {AppBskyRichtextFacet, RichText} from '@atproto/api'
|
||||||
import PasteInput, {
|
|
||||||
type PastedFile,
|
|
||||||
type PasteInputRef, // @ts-expect-error no types when installing from github
|
|
||||||
} from '@mattermost/react-native-paste-input'
|
|
||||||
|
|
||||||
import {POST_IMG_MAX} from '#/lib/constants'
|
import {POST_IMG_MAX} from '#/lib/constants'
|
||||||
import {downloadAndResize} from '#/lib/media/manip'
|
import {downloadAndResize} from '#/lib/media/manip'
|
||||||
import {isUriImage} from '#/lib/media/util'
|
import {isUriImage} from '#/lib/media/util'
|
||||||
import {cleanError} from '#/lib/strings/errors'
|
|
||||||
import {getMentionAt, insertMentionAt} from '#/lib/strings/mention-manip'
|
import {getMentionAt, insertMentionAt} from '#/lib/strings/mention-manip'
|
||||||
import {useTheme} from '#/lib/ThemeContext'
|
import {useTheme} from '#/lib/ThemeContext'
|
||||||
import {isAndroid, isNative} from '#/platform/detection'
|
import {isAndroid, isNative} from '#/platform/detection'
|
||||||
@@ -46,11 +43,11 @@ export function TextInput({
|
|||||||
setRichText,
|
setRichText,
|
||||||
onPhotoPasted,
|
onPhotoPasted,
|
||||||
onNewLink,
|
onNewLink,
|
||||||
onError,
|
onError: _onError,
|
||||||
...props
|
...props
|
||||||
}: TextInputProps) {
|
}: TextInputProps) {
|
||||||
const {theme: t, fonts} = useAlf()
|
const {theme: t, fonts} = useAlf()
|
||||||
const textInput = useRef<PasteInputRef>(null)
|
const textInput = useRef<RNTextInput>(null)
|
||||||
const textInputSelection = useRef<Selection>({start: 0, end: 0})
|
const textInputSelection = useRef<Selection>({start: 0, end: 0})
|
||||||
const theme = useTheme()
|
const theme = useTheme()
|
||||||
const [autocompletePrefix, setAutocompletePrefix] = useState('')
|
const [autocompletePrefix, setAutocompletePrefix] = useState('')
|
||||||
@@ -127,23 +124,23 @@ export function TextInput({
|
|||||||
)
|
)
|
||||||
|
|
||||||
const onPaste = useCallback(
|
const onPaste = useCallback(
|
||||||
async (err: string | undefined, files: PastedFile[]) => {
|
async (evt: NativeSyntheticEvent<TextInputPasteEventData>) => {
|
||||||
if (err) {
|
const files = evt.nativeEvent.items
|
||||||
return onError(cleanError(err))
|
|
||||||
}
|
|
||||||
|
|
||||||
const uris = files.map(f => f.uri)
|
console.log(files)
|
||||||
|
|
||||||
|
const uris = files.filter(f => f.type === 'image').map(f => f.data)
|
||||||
const uri = uris.find(isUriImage)
|
const uri = uris.find(isUriImage)
|
||||||
|
|
||||||
if (uri) {
|
if (uri) {
|
||||||
onPhotoPasted(uri)
|
onPhotoPasted(uri)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[onError, onPhotoPasted],
|
[onPhotoPasted],
|
||||||
)
|
)
|
||||||
|
|
||||||
const onSelectionChange = useCallback(
|
const onSelectionChange = useCallback(
|
||||||
(evt: NativeSyntheticEvent<TextInputSelectionChangeEventData>) => {
|
(evt: TextInputSelectionChangeEvent) => {
|
||||||
// NOTE we track the input selection using a ref to avoid excessive renders -prf
|
// NOTE we track the input selection using a ref to avoid excessive renders -prf
|
||||||
textInputSelection.current = evt.nativeEvent.selection
|
textInputSelection.current = evt.nativeEvent.selection
|
||||||
},
|
},
|
||||||
@@ -215,7 +212,7 @@ export function TextInput({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<View style={[a.flex_1, a.pl_md, hasRightPadding && a.pr_4xl]}>
|
<View style={[a.flex_1, a.pl_md, hasRightPadding && a.pr_4xl]}>
|
||||||
<PasteInput
|
<RNTextInput
|
||||||
testID="composerTextInput"
|
testID="composerTextInput"
|
||||||
ref={textInput}
|
ref={textInput}
|
||||||
onChangeText={onChangeText}
|
onChangeText={onChangeText}
|
||||||
@@ -249,7 +246,7 @@ export function TextInput({
|
|||||||
props.style,
|
props.style,
|
||||||
]}>
|
]}>
|
||||||
{textDecorated}
|
{textDecorated}
|
||||||
</PasteInput>
|
</RNTextInput>
|
||||||
<Autocomplete
|
<Autocomplete
|
||||||
prefix={autocompletePrefix}
|
prefix={autocompletePrefix}
|
||||||
onSelect={onSelectAutocompleteItem}
|
onSelect={onSelectAutocompleteItem}
|
||||||
|
|||||||
@@ -5299,12 +5299,6 @@
|
|||||||
"@babel/runtime" "^7.20.13"
|
"@babel/runtime" "^7.20.13"
|
||||||
"@lingui/core" "4.14.1"
|
"@lingui/core" "4.14.1"
|
||||||
|
|
||||||
"@mattermost/react-native-paste-input@mattermost/react-native-paste-input":
|
|
||||||
version "0.8.1"
|
|
||||||
resolved "https://codeload.github.com/mattermost/react-native-paste-input/tar.gz/f260447edc645a817ab1ba7b46d8341d84dba8e9"
|
|
||||||
dependencies:
|
|
||||||
semver "7.6.3"
|
|
||||||
|
|
||||||
"@messageformat/parser@^5.0.0":
|
"@messageformat/parser@^5.0.0":
|
||||||
version "5.1.0"
|
version "5.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/@messageformat/parser/-/parser-5.1.0.tgz#05e4851c782d633ad735791dd0a68ee65d2a7201"
|
resolved "https://registry.yarnpkg.com/@messageformat/parser/-/parser-5.1.0.tgz#05e4851c782d633ad735791dd0a68ee65d2a7201"
|
||||||
@@ -17582,16 +17576,16 @@ semver-compare@^1.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
|
resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
|
||||||
integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==
|
integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==
|
||||||
|
|
||||||
semver@7.6.3, semver@^7.1.3, semver@^7.6.3:
|
|
||||||
version "7.6.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
|
|
||||||
integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
|
|
||||||
|
|
||||||
semver@^6.0.0, semver@^6.3.0, semver@^6.3.1:
|
semver@^6.0.0, semver@^6.3.0, semver@^6.3.1:
|
||||||
version "6.3.1"
|
version "6.3.1"
|
||||||
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
|
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
|
||||||
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
|
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
|
||||||
|
|
||||||
|
semver@^7.1.3, semver@^7.6.3:
|
||||||
|
version "7.6.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
|
||||||
|
integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
|
||||||
|
|
||||||
semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3, semver@^7.5.4, semver@~7.5.4:
|
semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3, semver@^7.5.4, semver@~7.5.4:
|
||||||
version "7.5.4"
|
version "7.5.4"
|
||||||
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
|
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
|
||||||
|
|||||||
Reference in New Issue
Block a user