make all calls sync

This commit is contained in:
Hailey
2024-07-12 06:48:13 -07:00
parent 1c1d45ba5a
commit c3df828b79
4 changed files with 9 additions and 9 deletions
@@ -23,7 +23,7 @@ class ExpoBlueskyReferrerModule : Module() {
activityReferrer = appContext.currentActivity?.referrer activityReferrer = appContext.currentActivity?.referrer
} }
AsyncFunction("getReferrerInfoAsync") { Function("getReferrerInfo") {
val intentReferrer = val intentReferrer =
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
intent?.getParcelableExtra(Intent.EXTRA_REFERRER, Uri::class.java) intent?.getParcelableExtra(Intent.EXTRA_REFERRER, Uri::class.java)
@@ -40,7 +40,7 @@ class ExpoBlueskyReferrerModule : Module() {
"hostname" to intentReferrer.host, "hostname" to intentReferrer.host,
) )
intent = null intent = null
return@AsyncFunction res return@Function res
} }
// In all other cases, we'll just record the app that sent the intent. // In all other cases, we'll just record the app that sent the intent.
@@ -52,10 +52,10 @@ class ExpoBlueskyReferrerModule : Module() {
"hostname" to (activityReferrer?.host ?: ""), "hostname" to (activityReferrer?.host ?: ""),
) )
activityReferrer = null activityReferrer = null
return@AsyncFunction res return@Function res
} }
return@AsyncFunction null return@Function null
} }
AsyncFunction("getGooglePlayReferrerInfoAsync") { promise: Promise -> AsyncFunction("getGooglePlayReferrerInfoAsync") { promise: Promise ->
@@ -8,6 +8,6 @@ export function getGooglePlayReferrerInfoAsync(): Promise<GooglePlayReferrerInfo
return NativeModule.getGooglePlayReferrerInfoAsync() return NativeModule.getGooglePlayReferrerInfoAsync()
} }
export function getReferrerInfoAsync(): Promise<ReferrerInfo | null> { export function getReferrerInfo(): Promise<ReferrerInfo | null> {
return NativeModule.getReferrerInfoAsync() return NativeModule.getReferrerInfo()
} }
@@ -6,7 +6,7 @@ export function getGooglePlayReferrerInfoAsync(): Promise<GooglePlayReferrerInfo
throw new NotImplementedError() throw new NotImplementedError()
} }
export function getReferrerInfoAsync(): Promise<ReferrerInfo | null> { export function getReferrerInfo(): ReferrerInfo | null {
const referrer = SharedPrefs.getString('referrer') const referrer = SharedPrefs.getString('referrer')
if (referrer) { if (referrer) {
SharedPrefs.removeValue('referrer') SharedPrefs.removeValue('referrer')
@@ -19,7 +19,7 @@ export function getReferrerInfoAsync(): Promise<ReferrerInfo | null> {
} catch (e) { } catch (e) {
return { return {
referrer, referrer,
hostname: undefined, hostname: referrer,
} }
} }
} }
@@ -7,7 +7,7 @@ export function getGooglePlayReferrerInfoAsync(): Promise<GooglePlayReferrerInfo
throw new NotImplementedError() throw new NotImplementedError()
} }
export async function getReferrerInfoAsync(): Promise<ReferrerInfo | null> { export function getReferrerInfo(): ReferrerInfo | null {
if ( if (
Platform.OS === 'web' && Platform.OS === 'web' &&
// for ssr // for ssr