-
Notifications
You must be signed in to change notification settings - Fork 43
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
(fix) Top Margin & Scroll Flash #189
Merged
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
7e28a8d
making sure top heading margin matches other screens
mazenchami 7af34c1
fixing ts error
mazenchami 280b84a
Merge branch 'main' into fix/top-padding-scroll-flash
mazenchami 1c3c1fe
fixes #162 to let iOS drag keyboard down
mazenchami b222ff3
refactoring /app/app.tsx to move out our two components OTA/Toast
mazenchami 9c0f893
fixes #186 workshop detail screen top padding missed
mazenchami 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 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 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,54 @@ | ||
import React, { useLayoutEffect } from "react" | ||
import { useSafeAreaInsets } from "react-native-safe-area-context" | ||
import { colors, spacing } from "../theme" | ||
import messaging from "@react-native-firebase/messaging" | ||
import Toast, { BaseToast, ToastConfig } from "react-native-toast-message" | ||
import { $baseSecondaryStyle, $baseStyle } from "./" | ||
import { Dimensions, ViewStyle } from "react-native" | ||
|
||
// Setting up our custom Toast component | ||
export const CustomToast = () => { | ||
const insets = useSafeAreaInsets() | ||
|
||
useLayoutEffect(() => { | ||
// handle a new push notification received while the app is in "foreground" state | ||
const unsubscribe = messaging().onMessage(async (remoteMessage) => { | ||
if ( | ||
remoteMessage.notification && | ||
(remoteMessage.notification.title || remoteMessage.notification.body) | ||
) { | ||
Toast.show({ | ||
text1: remoteMessage.notification.title, | ||
text2: remoteMessage.notification.body, | ||
}) | ||
} | ||
}) | ||
return unsubscribe | ||
}) | ||
|
||
const toastConfig: ToastConfig = { | ||
success: (props) => ( | ||
<BaseToast | ||
{...props} | ||
contentContainerStyle={$toastContainer} | ||
style={$toast} | ||
text1Style={$baseStyle} | ||
text2Style={$baseSecondaryStyle} | ||
/> | ||
), | ||
} | ||
|
||
return <Toast config={toastConfig} topOffset={insets.top} /> | ||
} | ||
|
||
const $toast: ViewStyle = { | ||
backgroundColor: colors.palette.neutral400, | ||
borderLeftWidth: 0, | ||
borderRadius: spacing.extraSmall, | ||
width: Dimensions.get("window").width - spacing.extraSmall * 2, | ||
} | ||
|
||
const $toastContainer: ViewStyle = { | ||
paddingHorizontal: spacing.large, | ||
paddingVertical: spacing.medium, | ||
} |
This file contains 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,60 @@ | ||
import React, { useState } from "react" | ||
import * as Updates from "expo-updates" | ||
import { reportCrash } from "../utils/crashReporting" | ||
import { useAppState } from "../hooks" | ||
import { Modal } from "./Modal" | ||
|
||
// Setting up our OTA Updates component | ||
export const OTAUpdates = () => { | ||
const [isModalVisible, setIsModalVisible] = useState(false) | ||
const [isUpdating, setIsUpdating] = useState(false) | ||
|
||
async function fetchAndRestartApp() { | ||
const fetchUpdate = await Updates.fetchUpdateAsync() | ||
if (fetchUpdate.isNew) { | ||
await Updates.reloadAsync() | ||
} else { | ||
setIsModalVisible(false) | ||
setIsUpdating(false) | ||
reportCrash("Fetch Update failed") | ||
} | ||
} | ||
|
||
async function onFetchUpdateAsync() { | ||
if (__DEV__ || process.env.NODE_ENV === "development") return | ||
try { | ||
const update = await Updates.checkForUpdateAsync() | ||
setIsModalVisible(update.isAvailable) | ||
} catch (error) { | ||
reportCrash(error) | ||
} | ||
} | ||
|
||
useAppState({ | ||
match: /background/, | ||
nextAppState: "active", | ||
callback: onFetchUpdateAsync, | ||
}) | ||
|
||
return ( | ||
<Modal | ||
title="ota.title" | ||
subtitle="ota.subtitle" | ||
confirmOnPress={{ | ||
cta: async () => { | ||
setIsUpdating(true) | ||
await fetchAndRestartApp() | ||
}, | ||
label: isUpdating ? "ota.confirmLabelUpdating" : "ota.confirmLabel", | ||
disabled: isUpdating, | ||
}} | ||
cancelOnPress={{ | ||
cta: () => { | ||
setIsModalVisible(false) | ||
}, | ||
label: "ota.cancelLabel", | ||
}} | ||
isVisible={isModalVisible} | ||
/> | ||
) | ||
} |
This file contains 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 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 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.
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.
these updates are removal of
CustomToast
andOTAUpdates
intocomponents
folder to clean this file up