mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
9f6b532bdb
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/35773 Changelog: [Android][Added] - For supporting Dev Loading View across multiple platforms, changing the Loading View of Android to rely on the native implementation instead of Toast while keeping backwards comptability. Reviewed By: rshest Differential Revision: D42286466 fbshipit-source-id: 38749cdbc11208b81a6199467bac00cbc1850c92
55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow strict-local
|
|
*/
|
|
|
|
import ToastAndroid from '../Components/ToastAndroid/ToastAndroid';
|
|
import processColor from '../StyleSheet/processColor';
|
|
import Appearance from './Appearance';
|
|
import NativeDevLoadingView from './NativeDevLoadingView';
|
|
|
|
const TOAST_SHORT_DELAY = 2000;
|
|
let isVisible = false;
|
|
|
|
module.exports = {
|
|
showMessage(message: string, type: 'load' | 'refresh') {
|
|
if (NativeDevLoadingView) {
|
|
let backgroundColor;
|
|
let textColor;
|
|
|
|
if (type === 'refresh') {
|
|
backgroundColor = processColor('#2584e8');
|
|
textColor = processColor('#ffffff');
|
|
} else if (type === 'load') {
|
|
if (Appearance.getColorScheme() === 'dark') {
|
|
backgroundColor = processColor('#fafafa');
|
|
textColor = processColor('#242526');
|
|
} else {
|
|
backgroundColor = processColor('#404040');
|
|
textColor = processColor('#ffffff');
|
|
}
|
|
}
|
|
|
|
NativeDevLoadingView.showMessage(
|
|
message,
|
|
typeof textColor === 'number' ? textColor : null,
|
|
typeof backgroundColor === 'number' ? backgroundColor : null,
|
|
);
|
|
} else if (!isVisible) {
|
|
ToastAndroid.show(message, ToastAndroid.SHORT);
|
|
isVisible = true;
|
|
setTimeout(() => {
|
|
isVisible = false;
|
|
}, TOAST_SHORT_DELAY);
|
|
}
|
|
},
|
|
hide() {
|
|
NativeDevLoadingView && NativeDevLoadingView.hide();
|
|
},
|
|
};
|