mirror of
https://gitcode.com/gh_mirrors/re/react-native-pushy.git
synced 2025-11-01 13:53:11 +08:00
v8.4.0
This commit is contained in:
@@ -15,4 +15,4 @@ export const downloadAndInstallApk = noop;
|
|||||||
export const setCustomEndpoints = noop;
|
export const setCustomEndpoints = noop;
|
||||||
export const getCurrentVersionInfo = noop;
|
export const getCurrentVersionInfo = noop;
|
||||||
export const simpleUpdate = (app) => app;
|
export const simpleUpdate = (app) => app;
|
||||||
export const onEvents = noop;
|
export const onPushyEvents = noop;
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ if (!uuid) {
|
|||||||
const noop = () => {};
|
const noop = () => {};
|
||||||
let reporter: UpdateEventsListener = noop;
|
let reporter: UpdateEventsListener = noop;
|
||||||
|
|
||||||
export function onEvents(customReporter: UpdateEventsListener) {
|
export function onPushyEvents(customReporter: UpdateEventsListener) {
|
||||||
reporter = customReporter;
|
reporter = customReporter;
|
||||||
if (isRolledBack) {
|
if (isRolledBack) {
|
||||||
report({
|
report({
|
||||||
|
|||||||
@@ -16,20 +16,20 @@ import {
|
|||||||
switchVersionLater,
|
switchVersionLater,
|
||||||
markSuccess,
|
markSuccess,
|
||||||
downloadAndInstallApk,
|
downloadAndInstallApk,
|
||||||
onEvents,
|
onPushyEvents,
|
||||||
} from './main';
|
} from './main';
|
||||||
import { UpdateEventsListener } from './type';
|
import { UpdateEventsListener } from './type';
|
||||||
|
|
||||||
export function simpleUpdate(
|
export function simpleUpdate(
|
||||||
WrappedComponent: ComponentType,
|
WrappedComponent: ComponentType,
|
||||||
options: { appKey?: string; onEvents?: UpdateEventsListener } = {},
|
options: { appKey?: string; onPushyEvents?: UpdateEventsListener } = {},
|
||||||
) {
|
) {
|
||||||
const { appKey, onEvents: eventListeners } = options;
|
const { appKey, onPushyEvents: eventListeners } = options;
|
||||||
if (!appKey) {
|
if (!appKey) {
|
||||||
throw new Error('appKey is required for simpleUpdate()');
|
throw new Error('appKey is required for simpleUpdate()');
|
||||||
}
|
}
|
||||||
if (typeof eventListeners === 'function') {
|
if (typeof eventListeners === 'function') {
|
||||||
onEvents(eventListeners);
|
onPushyEvents(eventListeners);
|
||||||
}
|
}
|
||||||
return __DEV__
|
return __DEV__
|
||||||
? WrappedComponent
|
? WrappedComponent
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "react-native-update",
|
"name": "react-native-update",
|
||||||
"version": "8.3.0",
|
"version": "8.4.0",
|
||||||
"description": "react-native hot update",
|
"description": "react-native hot update",
|
||||||
"main": "lib/index.ts",
|
"main": "lib/index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user