forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 151
Various post-0.63-merge TODOs #631
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
77c8474
[TextField] Remove now superfluous override
alloy 8ed55a8
[Text/TextInput] Use correct dynamic default color
alloy b7e67a9
[PlatformColor] Properly add macOS version
alloy db0bce3
[RNTester] Make Podfile conform more to upstream
alloy e616b76
[RNTester] Silence pod install output
alloy 597a351
[TextInput] Leave as-of-yet unsupported features disabled
alloy 9843fe0
[TextInput] Fix macOS support for setting selection
alloy c33f895
[template] Update Podfile to conform to upstream
alloy 4f8252f
[TextInput] Fix iOS backwards compatibility
alloy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
Libraries/StyleSheet/PlatformColorValueTypesMacOS.macos.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| /** | ||
| * Copyright (c) Facebook, Inc. and its affiliates. | ||
| * | ||
| * This source code is licensed under the MIT license found in the | ||
| * LICENSE file in the root directory of this source tree. | ||
| * | ||
| * @format | ||
| * @flow strict-local | ||
| */ | ||
| // [TODO(macOS ISS#2323203) | ||
| 'use strict'; | ||
|
|
||
| import type {ColorValue} from './StyleSheetTypes'; | ||
| import {DynamicColorMacOSPrivate} from './PlatformColorValueTypes'; | ||
|
|
||
| export type DynamicColorMacOSTuple = { | ||
| light: ColorValue, | ||
| dark: ColorValue, | ||
| }; | ||
|
|
||
| export const DynamicColorMacOS = ( | ||
| tuple: DynamicColorMacOSTuple, | ||
| ): ColorValue => { | ||
| return DynamicColorMacOSPrivate({light: tuple.light, dark: tuple.dark}); | ||
| }; | ||
| // ]TODO(macOS ISS#2323203) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -69,13 +69,7 @@ - (void)enforceTextAttributesIfNeeded | |
| { | ||
| if (![self ignoresTextAttributes]) { // TODO(OSS Candidate ISS#2710739) | ||
| id<RCTBackedTextInputViewProtocol> backedTextInputView = self.backedTextInputView; | ||
|
|
||
| NSDictionary<NSAttributedStringKey,id> *textAttributes = [[_textAttributes effectiveTextAttributes] mutableCopy]; | ||
| if ([textAttributes valueForKey:NSForegroundColorAttributeName] == nil) { | ||
| [textAttributes setValue:[RCTUIColor blackColor] forKey:NSForegroundColorAttributeName]; // TODO(macOS ISS#2323203) | ||
| } | ||
|
|
||
| backedTextInputView.defaultTextAttributes = textAttributes; | ||
| backedTextInputView.defaultTextAttributes = [_textAttributes effectiveTextAttributes]; | ||
| } // TODO(OSS Candidate ISS#2710739) | ||
| } | ||
|
|
||
|
|
@@ -241,7 +235,7 @@ - (void)setSelection:(RCTTextSelection *)selection | |
| - (void)setSelectionStart:(NSInteger)start | ||
| selectionEnd:(NSInteger)end | ||
| { | ||
| #if !TARGET_OS_OSX // [TODO(macOS v0.63) | ||
| #if !TARGET_OS_OSX // TODO(macOS ISS#2323203) | ||
| UITextPosition *startPosition = [self.backedTextInputView positionFromPosition:self.backedTextInputView.beginningOfDocument | ||
| offset:start]; | ||
| UITextPosition *endPosition = [self.backedTextInputView positionFromPosition:self.backedTextInputView.beginningOfDocument | ||
|
|
@@ -250,7 +244,11 @@ - (void)setSelectionStart:(NSInteger)start | |
| UITextRange *range = [self.backedTextInputView textRangeFromPosition:startPosition toPosition:endPosition]; | ||
| [self.backedTextInputView setSelectedTextRange:range notifyDelegate:NO]; | ||
| } | ||
| #endif // ]TODO(macOS v0.63) | ||
| #else // [TODO(macOS ISS#2323203) | ||
| NSInteger startPosition = MIN(start, end); | ||
| NSInteger endPosition = MAX(start, end); | ||
| [self.backedTextInputView setSelectedTextRange:NSMakeRange(startPosition, endPosition - startPosition) notifyDelegate:NO]; | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's no bounds checking here, so this would raise a objc exception. |
||
| #endif // ]TODO(macOS ISS#2323203) | ||
| } | ||
|
|
||
| - (void)setTextContentType:(NSString *)type | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.