-
Notifications
You must be signed in to change notification settings - Fork 20
MAM-3841-integrate-react-native #384
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
Draft
bnolens
wants to merge
19
commits into
main
Choose a base branch
from
MAM-3841-integrate-react-native
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
b19b9d5
MAM-3841-integrate-react-native
bnolens 7fea806
MAM-3841-integrate-react-native
bnolens 633efa9
Initial composer component setup
bnolens a72b732
Access navigation and more components
bnolens 77d4366
Clean up
bnolens 849281a
Remove ignored files
bnolens c4cd6e4
Remove ignored files
bnolens cafc589
Fix node version
bnolens 256a083
README update
bnolens ba14e6f
Native MetaText in RN and some other test view
bnolens 5e77293
Manual rebase
bnolens 2f64367
Merge remote-tracking branch 'origin/main' into MAM-3841-integrate-re…
bnolens 06742eb
CR feedback
bnolens d5f42aa
Self-sizing MetaTextView
bnolens ace96f8
Clean up
bnolens f1b0e64
Clean up
bnolens 3a985cb
Clean up
bnolens fac73b3
Support custom emojis in MetaTextView
bnolens c8fa16b
Remove yarnPath
bnolens File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| module.exports = { | ||
| root: true, | ||
| extends: '@react-native', | ||
| }; |
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 |
|---|---|---|
| @@ -1,6 +1,81 @@ | ||
| .DS_Store | ||
| Mammoth.xcodeproj/project.xcworkspace/xcuserdata/ | ||
| Mammoth.xcodeproj/project.xcworkspace/xcshareddata/ | ||
| Mammoth.xcodeproj/xcuserdata/ | ||
|
|
||
| Mammoth.xcworkspace | ||
|
|
||
| ArkanaKeys | ||
| .env | ||
| node_modules | ||
|
|
||
| .yarn/* | ||
| !.yarn/releases/* | ||
| !.yarn/plugins/* | ||
|
|
||
| # OSX | ||
| # | ||
| .DS_Store | ||
| Pods | ||
|
|
||
| # Xcode | ||
| # | ||
| build/ | ||
| *.pbxuser | ||
| !default.pbxuser | ||
| *.mode1v3 | ||
| !default.mode1v3 | ||
| *.mode2v3 | ||
| !default.mode2v3 | ||
| *.perspectivev3 | ||
| !default.perspectivev3 | ||
| xcuserdata | ||
| *.xccheckout | ||
| *.moved-aside | ||
| DerivedData | ||
| *.hmap | ||
| *.ipa | ||
| *.xcuserstate | ||
| ios/.xcode.env.local | ||
|
|
||
| # Android/IntelliJ | ||
| # | ||
| build/ | ||
| .idea | ||
| .gradle | ||
| local.properties | ||
| *.iml | ||
| *.hprof | ||
| .cxx/ | ||
| *.keystore | ||
| !debug.keystore | ||
|
|
||
| # node.js | ||
| # | ||
| node_modules/ | ||
| npm-debug.log | ||
| yarn-error.log | ||
|
|
||
| # fastlane | ||
| # | ||
| # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the | ||
| # screenshots whenever they are needed. | ||
| # For more information about the recommended setup visit: | ||
| # https://docs.fastlane.tools/best-practices/source-control/ | ||
|
|
||
| **/fastlane/report.xml | ||
| **/fastlane/Preview.html | ||
| **/fastlane/screenshots | ||
| **/fastlane/test_output | ||
|
|
||
| # Bundle artifact | ||
| *.jsbundle | ||
|
|
||
| # Ruby / CocoaPods | ||
| /ios/Pods/ | ||
| /vendor/bundle/ | ||
|
|
||
| # Temporary files created by Metro to check the health of the file watcher | ||
| .metro-health-check* | ||
|
|
||
| # testing | ||
| /coverage |
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,7 @@ | ||
| module.exports = { | ||
| arrowParens: 'avoid', | ||
| bracketSameLine: true, | ||
| bracketSpacing: false, | ||
| singleQuote: true, | ||
| trailingComma: 'all', | ||
| }; |
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,12 @@ | ||
| { | ||
| // See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. | ||
| // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp | ||
|
|
||
| // List of extensions which should be recommended for users of this workspace. | ||
| "recommendations": [ | ||
| "dbaeumer.vscode-eslint", | ||
| "esbenp.prettier-vscode", | ||
| ], | ||
| // List of extensions recommended by VS Code that should not be recommended for users of this workspace. | ||
| "unwantedRecommendations": [] | ||
| } |
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,71 @@ | ||
| { | ||
| "search.exclude": { | ||
| "**/node_modules": false | ||
| }, | ||
| "files.exclude": { | ||
| "**/.git": true, | ||
| "**/.svn": true, | ||
| "**/.hg": true, | ||
| "**/CVS": true, | ||
| "**/.DS_Store": true, | ||
| "**/Thumbs.db": true, | ||
| "**/.classpath": true, | ||
| "**/.project": true, | ||
| "**/.settings": true, | ||
| "**/.factorypath": true, | ||
| "**/*.js": { | ||
| "when": "$(basename).ts" | ||
| }, | ||
| "**/*.js.map": true, | ||
| "**/node_modules": false | ||
| }, | ||
| "files.watcherExclude": { | ||
| "**/.git/objects/**": true, | ||
| "**/.git/subtree-cache/**": true, | ||
| "**/node_modules/*/**": true | ||
| }, | ||
| "debug.node.autoAttach": "off", | ||
|
|
||
| "typescript.preferences.importModuleSpecifier": "relative", | ||
| "typescript.updateImportsOnFileMove.enabled": "always", | ||
| "editor.codeActionsOnSave": { | ||
| "source.organizeImports": "never" | ||
| }, | ||
| "[javascript]": { | ||
| "editor.formatOnSave": true, | ||
| "editor.codeActionsOnSave": { | ||
| "source.organizeImports": "never" | ||
| } | ||
| }, | ||
| "[javascriptreact]": { | ||
| "editor.formatOnSave": true, | ||
| "editor.codeActionsOnSave": { | ||
| "source.organizeImports": true | ||
| } | ||
| }, | ||
| "[typescript]": { | ||
| "editor.formatOnSave": true, | ||
| "editor.codeActionsOnSave": { | ||
| "source.organizeImports": true | ||
| } | ||
| }, | ||
| "[typescriptreact]": { | ||
| "editor.formatOnSave": true, | ||
| "editor.codeActionsOnSave": { | ||
| "source.organizeImports": true | ||
| } | ||
| }, | ||
| "javascript.format.enable": false, | ||
| "editor.tabSize": 2, | ||
| "editor.detectIndentation": false, | ||
| "git.ignoreLimitWarning": true, | ||
| "java.configuration.updateBuildConfiguration": "disabled", | ||
| "git.branchProtection": [ | ||
| "main", | ||
| ], | ||
| "[javascriptreact][typescript][typescriptreact]": { | ||
| "editor.codeActionsOnSave": { | ||
| "source.organizeImports": "explicit" | ||
| } | ||
| }, | ||
| } |
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 @@ | ||
| {} |
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 @@ | ||
| nodeLinker: node-modules |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| module.exports = { | ||
| presets: ['module:@react-native/babel-preset'], | ||
| }; | ||
|
|
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,6 @@ | ||
| import {AppRegistry, LogBox} from 'react-native'; | ||
| import {Composer} from './src/components/_screens/Composer'; | ||
|
|
||
| LogBox.ignoreAllLogs(); | ||
|
|
||
| AppRegistry.registerComponent('Composer', () => Composer); |
File renamed without changes.
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 @@ | ||
| export NODE_BINARY=$(command -v node) |
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 |
|---|---|---|
|
|
@@ -3,3 +3,4 @@ | |
| source "https://rubygems.org" | ||
|
|
||
| gem "arkana" | ||
| gem "cocoapods", "~>1.14.0" | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: I had to move the .arkana.yml into the ios directory.