Skip to content

Commit a65f910

Browse files
authored
feature/timeseries support (#28)
* Added initial support for timeseries * Removed IOS and Android folder * Updated app name and modified gitignore * Added change detection code for timeseries * Added method for handling DataTable related operations * Cleaned logic for DataTable Operation related code. * Fixed datatable/datastore operation issue * Removed console
1 parent 0798590 commit a65f910

File tree

86 files changed

+3371
-15527
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+3371
-15527
lines changed

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"presets": ["react-native"]
2+
"presets": ["module:metro-react-native-babel-preset"]
33
}

.flowconfig

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,33 +16,55 @@
1616
; Ignore polyfills
1717
.*/Libraries/polyfills/.*
1818

19+
; Ignore metro
20+
.*/node_modules/metro/.*
21+
1922
[include]
2023

2124
[libs]
2225
node_modules/react-native/Libraries/react-native/react-native-interface.js
2326
node_modules/react-native/flow/
27+
node_modules/react-native/flow-github/
2428

2529
[options]
2630
emoji=true
2731

32+
esproposal.optional_chaining=enable
33+
esproposal.nullish_coalescing=enable
34+
2835
module.system=haste
36+
module.system.haste.use_name_reducers=true
37+
# get basename
38+
module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1'
39+
# strip .js or .js.flow suffix
40+
module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1'
41+
# strip .ios suffix
42+
module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1'
43+
module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1'
44+
module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1'
45+
module.system.haste.paths.blacklist=.*/__tests__/.*
46+
module.system.haste.paths.blacklist=.*/__mocks__/.*
47+
module.system.haste.paths.blacklist=<PROJECT_ROOT>/node_modules/react-native/Libraries/Animated/src/polyfills/.*
48+
module.system.haste.paths.whitelist=<PROJECT_ROOT>/node_modules/react-native/Libraries/.*
2949

3050
munge_underscores=true
3151

3252
module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
3353

54+
module.file_ext=.js
55+
module.file_ext=.jsx
56+
module.file_ext=.json
57+
module.file_ext=.native.js
58+
3459
suppress_type=$FlowIssue
3560
suppress_type=$FlowFixMe
3661
suppress_type=$FlowFixMeProps
3762
suppress_type=$FlowFixMeState
38-
suppress_type=$FixMe
3963

40-
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-7]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
41-
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-7]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
64+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
65+
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
4266
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
4367
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
4468

45-
unsafe.enable_getters_and_setters=true
46-
4769
[version]
48-
^0.57.0
70+
^0.78.0

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
# Xcode
66
#
7+
ios/
78
build/
89
*.pbxuser
910
!default.pbxuser
@@ -24,6 +25,7 @@ project.xcworkspace
2425

2526
# Android/IntelliJ
2627
#
28+
android/
2729
build/
2830
.idea
2931
.gradle
@@ -40,7 +42,6 @@ yarn-error.log
4042
buck-out/
4143
\.buckd/
4244
*.keystore
43-
!ReactNativeFusionCharts.keystore
4445

4546
# fastlane
4647
#
@@ -53,4 +54,5 @@ buck-out/
5354
*/fastlane/Preview.html
5455
*/fastlane/screenshots
5556

56-
coverage/
57+
# Bundle artifact
58+
*.jsbundle

android/app/BUCK

Lines changed: 0 additions & 65 deletions
This file was deleted.
-2.3 KB
Binary file not shown.

android/app/build.gradle

Lines changed: 0 additions & 161 deletions
This file was deleted.

android/app/proguard-rules.pro

Lines changed: 0 additions & 70 deletions
This file was deleted.

0 commit comments

Comments
 (0)