Skip to content

Commit 0812a68

Browse files
committed
Staging
1 parent f05d7a7 commit 0812a68

File tree

66 files changed

+589
-257
lines changed

Some content is hidden

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

66 files changed

+589
-257
lines changed

Firestack.podspec

+57
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ version = package["version"]
44
repo = package['repository']
55
author = package['author']
66

7+
all_pods = [
8+
'FirebaseAnalytics', 'FirebaseAuth', 'FirebaseRemoteConfig',
9+
'FirebaseDatabase', 'FirebaseStorage', 'FirebaseInstanceID',
10+
'GoogleInterchangeUtilities', 'GoogleIPhoneUtilities',
11+
'GoogleNetworkingUtilities', 'GoogleParsingUtilities',
12+
'GoogleSymbolUtilities'
13+
]
14+
715
Pod::Spec.new do |s|
816

917
s.name = "Firestack"
@@ -60,20 +68,37 @@ Pod::Spec.new do |s|
6068
# s.tvos.deployment_target = "9.0"
6169

6270

71+
<<<<<<< Updated upstream
6372
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
6473
#
6574
# Specify the location from where the source should be retrieved.
6675
# Supports git, hg, bzr, svn and HTTP.
6776
#
77+
=======
78+
s.default_subspec = 'Core'
79+
s.subspec 'Core' do |ss|
80+
ss.dependency "React" ## Really don't want to do this...
81+
>>>>>>> Stashed changes
6882

6983
# s.source = { :git => "https://github.com/fullstackreact/react-native-firestack.git", :tag => "#{s.version}" }
7084
s.source = { :git => repo['url'], :tag => "feature/remoteConfig" }
7185
# s.source_files = "ios/Firestack"#, "ios/Firestack/*.{h,m}"
7286

87+
<<<<<<< Updated upstream
7388
s.source_files = 'ios/Firestack/**/*.{h,m}'
7489
s.preserve_paths = 'README.md', 'package.json', '**/*.js'
7590
# s.preserve_paths = "**/*.js", "ios/Firestack/Pods/**/*.h"
7691
# s.preserve_paths = ["**/*.js", "ios/Firestack/Pods/**/*"]
92+
=======
93+
s.ios.frameworks = [
94+
'CFNetwork', 'Security',
95+
'SystemConfiguration',
96+
].flatten,
97+
s.ios.libraries = [
98+
'icucore', 'c++',
99+
]
100+
end
101+
>>>>>>> Stashed changes
77102

78103
[
79104
'Firebase/Core',
@@ -86,8 +111,40 @@ Pod::Spec.new do |s|
86111
end
87112
s.dependency 'React'
88113

114+
<<<<<<< Updated upstream
89115
s.pod_target_xcconfig = {
90116
'OTHER_LDFLAGS' => '$(inherited) -ObjC -lBOZO'
117+
=======
118+
s.xcconfig = {
119+
'HEADER_SEARCH_PATHS' => [
120+
"$(inherited)", "${SRCROOT}/../../React/**", "${SRCROOT}/../../node_modules/react-native/**",
121+
all_pods.map {|pod| "${PODS_ROOT}/#{pod}/Frameworks/**" }.flatten
122+
].flatten.join(' '),
123+
# 'FRAMEWORK_SEARCH_PATHS' => [
124+
# "$(inherited)",
125+
# "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks",
126+
# "${PODS_ROOT}/FirebaseAuth/Frameworks",
127+
# "${PODS_ROOT}/FirebaseRemoteConfig/Frameworks",
128+
# "${PODS_ROOT}/FirebaseDatabase/Frameworks",
129+
# "${PODS_ROOT}/FirebaseStorage/Frameworks",
130+
# "${PODS_ROOT}/FirebaseInstanceID/Frameworks/frameworks",
131+
# "${PODS_ROOT}/FirebaseRemoteConfig/Frameworks",
132+
# "${PODS_ROOT}/GoogleInterchangeUtilities/Frameworks",
133+
# "${PODS_ROOT}/GoogleIPhoneUtilities/Frameworks",
134+
# "${PODS_ROOT}/GoogleNetworkingUtilities/Frameworks",
135+
# "${PODS_ROOT}/GoogleParsingUtilities/Frameworks",
136+
# "${PODS_ROOT}/GoogleSymbolUtilities/Frameworks",
137+
# ].join(' '),
138+
# 'LIBRARY_SEARCH_PATHS' => [
139+
# "$(inherited)",
140+
# all_pods.map {|name| "${PODS_ROOT}/#{name}/**"}.flatten
141+
# ].flatten.join(' '),
142+
# 'LD_RUNPATH_SEARCH_PATHS' => '$(inherited) @executable_path/Frameworks',
143+
'OTHER_LDFLAGS' => [
144+
'$(inherited) -ObjC',
145+
# "${PODS_ROOT}/FirebaseAnalytics/Frameworks/frameworks"
146+
].flatten.join(' ')
147+
>>>>>>> Stashed changes
91148
}
92149

93150
# s.ios.vendored_library = 'libFirestack.a'

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,27 @@ If you prefer not to use `rnpm`, we can manually link the package together with
5353
1. `$(SRCROOT)/../../react-native/React`
5454
2. `$(SRCROOT)/../node_modules/react-native/React`
5555

56+
<<<<<<< Updated upstream
5657
![Recursive paths](http://d.pr/i/1hAr1.png)
58+
=======
59+
With cocoapods installed, we'll need to create a `Podfile` to manage our dependencies and list our new `Firestack` library as a dependency of our project.
60+
61+
```shell
62+
(cd ios && pod init)
63+
```
64+
65+
This command will create a `Podfile` in the `ios/` directory of our project. In this file, we'll need to list our dependencies. For now, we'll list one. The `Podfile` itself can be incredibly simple
66+
67+
68+
```ruby
69+
platform :ios, '8.0'
70+
target 'RoundHere' do
71+
pod 'Firestack', :path => '../node_modules/react-native-firestack'
72+
end
73+
```
74+
75+
76+
>>>>>>> Stashed changes
5777
5878
### Android
5979

firestack.ios.js

+13-38
Original file line numberDiff line numberDiff line change
@@ -11,45 +11,11 @@ const storage = require('firebase/storage');
1111
import {NativeModules, NativeAppEventEmitter} from 'react-native';
1212
const FirebaseHelper = NativeModules.Firestack;
1313

14-
const promisify = fn => (...args) => {
15-
return new Promise((resolve, reject) => {
16-
const handler = (err, resp) => err ? reject(err) : resolve(resp);
17-
args.push(handler);
18-
(typeof fn === 'function' ? fn : FirebaseHelper[fn])
19-
.call(FirebaseHelper, ...args);
20-
});
21-
};
14+
import promisify from './lib/promisify'
15+
import RemoteConfig from './lib/remoteConfig'
2216

23-
/**
24-
* Configuration class
25-
*/
26-
const defaultExpiration = 60 * 60 * 24; // one day
27-
class RemoteConfig {
28-
constructor(options) {
29-
this.config = options || {};
30-
31-
this.setDefaultRemoteConfig(options)
32-
.then(() => this.configured = true);
33-
}
17+
export class Firestack {
3418

35-
setDefaultRemoteConfig(options) {
36-
return promisify('setDefaultRemoteConfig')(options);
37-
}
38-
39-
fetchWithExpiration(expirationSeconds=defaultExpiration) {
40-
return promisify('fetchWithExpiration')(expirationSeconds)
41-
}
42-
43-
config(name) {
44-
return promisify('configValueForKey')(name);
45-
}
46-
47-
setDev() {
48-
return promisify('setDev')();
49-
}
50-
}
51-
52-
export default class Firestack {
5319
constructor(options) {
5420
this.options = options || {};
5521

@@ -258,6 +224,14 @@ export default class Firestack {
258224
return this.remoteConfig;
259225
}
260226

227+
/**
228+
* Redux store
229+
**/
230+
store(store) {
231+
this._store = store;
232+
return this;
233+
}
234+
261235
on(name, cb) {
262236
if (!this.eventHandlers[name]) {
263237
this.eventHandlers[name] = [];
@@ -272,5 +246,6 @@ export default class Firestack {
272246
this.eventHandlers.forEach(subscription => subscription.remove());
273247
}
274248
}
275-
276249
}
250+
251+
export default Firestack

index.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import Firestack from './firestack'
2+
export { FirestackModule } from './lib/firestackModule'
3+
4+
export default Firestack

ios/Firestack.xcodeproj/project.pbxproj

+9-11
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10-
34479201EEBCE83274AC8AC5 /* Pods_Firestack.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D19566CC272D13C2115F15C8 /* Pods_Firestack.framework */; };
1110
D950369E1D19C77400F7094D /* Firestack.m in Sources */ = {isa = PBXBuildFile; fileRef = D950369D1D19C77400F7094D /* Firestack.m */; };
12-
D9FF4BF31D19F5FF00238046 /* Pods_Firestack.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D95036B81D19C90300F7094D /* Pods_Firestack.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
11+
D9FF4BF31D19F5FF00238046 /* libPods-Firestack.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D95036B81D19C90300F7094D /* libPods-Firestack.a */; settings = {ATTRIBUTES = (Weak, ); }; };
1312
/* End PBXBuildFile section */
1413

1514
/* Begin PBXContainerItemProxy section */
@@ -24,7 +23,7 @@
2423
isa = PBXContainerItemProxy;
2524
containerPortal = D95036B31D19C90300F7094D /* Pods.xcodeproj */;
2625
proxyType = 1;
27-
remoteGlobalIDString = 7EC314ECB2B8568E8C3AAE095E7F7E98;
26+
remoteGlobalIDString = 815EB7527B696DB4C2DE9602F3C0A177;
2827
remoteInfo = "Pods-Firestack";
2928
};
3029
/* End PBXContainerItemProxy section */
@@ -45,7 +44,7 @@
4544
134814201AA4EA6300B7C361 /* libFirestack.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libFirestack.a; sourceTree = BUILT_PRODUCTS_DIR; };
4645
612D3268D15D0E9231997758 /* Pods-Firestack.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Firestack.release.xcconfig"; path = "Pods/Target Support Files/Pods-Firestack/Pods-Firestack.release.xcconfig"; sourceTree = "<group>"; };
4746
CEE8E427185097CF7EF3A3EB /* Pods-Firestack.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Firestack.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Firestack/Pods-Firestack.debug.xcconfig"; sourceTree = "<group>"; };
48-
D19566CC272D13C2115F15C8 /* Pods_Firestack.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Firestack.framework; sourceTree = BUILT_PRODUCTS_DIR; };
47+
CFBF14844A3A71271E0CE035 /* libPods-Firestack.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Firestack.a"; sourceTree = BUILT_PRODUCTS_DIR; };
4948
D950369C1D19C77400F7094D /* Firestack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Firestack.h; path = Firestack/Firestack.h; sourceTree = "<group>"; };
5049
D950369D1D19C77400F7094D /* Firestack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Firestack.m; path = Firestack/Firestack.m; sourceTree = "<group>"; };
5150
D95036B31D19C90300F7094D /* Pods.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Pods.xcodeproj; path = Pods/Pods.xcodeproj; sourceTree = "<group>"; };
@@ -56,8 +55,7 @@
5655
isa = PBXFrameworksBuildPhase;
5756
buildActionMask = 2147483647;
5857
files = (
59-
D9FF4BF31D19F5FF00238046 /* Pods_Firestack.framework in Frameworks */,
60-
34479201EEBCE83274AC8AC5 /* Pods_Firestack.framework in Frameworks */,
58+
D9FF4BF31D19F5FF00238046 /* libPods-Firestack.a in Frameworks */,
6159
);
6260
runOnlyForDeploymentPostprocessing = 0;
6361
};
@@ -76,7 +74,7 @@
7674
isa = PBXGroup;
7775
children = (
7876
D95036B31D19C90300F7094D /* Pods.xcodeproj */,
79-
D19566CC272D13C2115F15C8 /* Pods_Firestack.framework */,
77+
CFBF14844A3A71271E0CE035 /* libPods-Firestack.a */,
8078
);
8179
name = Frameworks;
8280
sourceTree = "<group>";
@@ -104,7 +102,7 @@
104102
D95036B41D19C90300F7094D /* Products */ = {
105103
isa = PBXGroup;
106104
children = (
107-
D95036B81D19C90300F7094D /* Pods_Firestack.framework */,
105+
D95036B81D19C90300F7094D /* libPods-Firestack.a */,
108106
);
109107
name = Products;
110108
sourceTree = "<group>";
@@ -170,10 +168,10 @@
170168
/* End PBXProject section */
171169

172170
/* Begin PBXReferenceProxy section */
173-
D95036B81D19C90300F7094D /* Pods_Firestack.framework */ = {
171+
D95036B81D19C90300F7094D /* libPods-Firestack.a */ = {
174172
isa = PBXReferenceProxy;
175-
fileType = wrapper.framework;
176-
path = Pods_Firestack.framework;
173+
fileType = archive.ar;
174+
path = "libPods-Firestack.a";
177175
remoteRef = D95036B71D19C90300F7094D /* PBXContainerItemProxy */;
178176
sourceTree = BUILT_PRODUCTS_DIR;
179177
};

ios/Firestack/Firestack.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
// #import <UIKit/UIKit.h>
88
#import <Firebase.h>
9-
#import <React/RCTBridgeModule.h>
10-
#import <React/RCTEventDispatcher.h>
9+
#import "RCTBridgeModule.h"
10+
#import "RCTEventDispatcher.h"
1111

1212
@interface Firestack : NSObject <RCTBridgeModule> {
1313
FIRAuthStateDidChangeListenerHandle authListenerHandle;

ios/Podfile

+36-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,41 @@
1-
# Uncomment this line to define a global platform for your project
1+
source 'https://github.com/CocoaPods/Specs.git'
2+
23
platform :ios, '8.0'
34

5+
# frameworks = Dir.glob("./Pods/**/*.framework").map {|d| d.gsub(/\.\/Pods\//, '$(PROJECT_DIR)/Pods/')}
6+
# flat_frameworks = frameworks.flatten.map{|i| "\"#{i}\""}.join(' ')
7+
8+
def common_specs
9+
# pod 'Firestack', :path => '../'
10+
# pod 'React', :path => '../node_modules/react-native'
11+
[
12+
'Firebase/Core',
13+
'Firebase/Auth',
14+
'Firebase/Storage',
15+
'Firebase/Database',
16+
'Firebase/RemoteConfig'
17+
].each do |lib|
18+
pod lib
19+
end
20+
end
21+
422
target 'Firestack' do
5-
use_frameworks!
23+
use_frameworks!(false)
24+
common_specs
25+
project "Firestack.xcodeproj"
626

7-
podspec :path => "../Firestack.podspec"
27+
post_install do |installer|
28+
installer.pods_project.targets.each do |target|
29+
target.build_configurations.each do |configuration|
30+
# target.build_settings(configuration.name)['FRAMEWORK_SEARCH_PATHS'] = flat_frameworks
31+
target.build_settings(configuration.name)['USER_HEADER_SEARCH_PATHS'] = "$(BUILT_PRODUCTS_DIR)"
32+
target.build_settings(configuration.name)['HEADER_SEARCH_PATHS'] = [
33+
"$(inherited)", "${PODS_ROOT}/Headers/**",
34+
"$(SRCROOT)/../../../React/**",
35+
"$(SRCROOT)/../../../react-native/React/**"
36+
].join(' ')
37+
target.build_settings(configuration.name)['OTHER_LDFLAGS'] = "$(inherited) -undefined dynamic_lookup"
38+
end
39+
end
40+
end
841
end

ios/Podfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@ SPEC CHECKSUMS:
7474
GoogleSymbolUtilities: 33117db1b5f290c6fbf259585e4885b4c84b98d7
7575
GoogleUtilities: 56c5ac05b7aa5dc417a1bb85221a9516e04d7032
7676

77-
PODFILE CHECKSUM: 35cbea64870a29bcbd008bc037d2f879c5571439
77+
PODFILE CHECKSUM: 4d04aaa3b7bb0592dee632d2f0bde55b6e730426
7878

7979
COCOAPODS: 1.0.1

ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalytics+AppDelegate.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalytics.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalyticsConfiguration.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRApp.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRConfiguration.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIREventNames.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIROptions.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRParameterNames.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRUserPropertyNames.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FirebaseAnalytics.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAuth/FirebaseAuth/FIRAuth.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAuth/FirebaseAuth/FIRAuthCredential.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAuth/FirebaseAuth/FIRAuthErrors.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAuth/FirebaseAuth/FIREmailPasswordAuthProvider.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAuth/FirebaseAuth/FIRFacebookAuthProvider.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAuth/FirebaseAuth/FIRGitHubAuthProvider.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAuth/FirebaseAuth/FIRGoogleAuthProvider.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAuth/FirebaseAuth/FIRTwitterAuthProvider.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAuth/FirebaseAuth/FIRUser.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAuth/FirebaseAuth/FIRUserInfo.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Pods/Headers/Public/FirebaseAuth/FirebaseAuth/FirebaseAuth.h

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)