mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:11:11 +08:00
fix android host
This commit is contained in:
parent
68a5f2a78a
commit
2e52e7ae25
13
app/react-native/src/preview/index.js
vendored
13
app/react-native/src/preview/index.js
vendored
@ -1,7 +1,7 @@
|
||||
/* eslint-disable no-underscore-dangle */
|
||||
|
||||
import React from 'react';
|
||||
import { AsyncStorage, NativeModules } from 'react-native';
|
||||
import { AsyncStorage, NativeModules, Platform } from 'react-native';
|
||||
import parse from 'url-parse';
|
||||
import addons from '@storybook/addons';
|
||||
|
||||
@ -63,8 +63,7 @@ export default class Preview {
|
||||
if (onDeviceUI && params.disableWebsockets) {
|
||||
channel = new Channel({ async: true });
|
||||
} else {
|
||||
const host =
|
||||
params.host || parse(NativeModules.SourceCode.scriptURL).hostname || 'localhost';
|
||||
const host = this._getHost(params);
|
||||
const port = params.port !== false ? `:${params.port || 7007}` : '';
|
||||
|
||||
const query = params.query || '';
|
||||
@ -135,6 +134,14 @@ export default class Preview {
|
||||
};
|
||||
}
|
||||
|
||||
_getHost(params = {}) {
|
||||
if (params.host)
|
||||
return params.host;
|
||||
if (Platform.OS === 'android')
|
||||
return '10.0.2.2';
|
||||
return parse(NativeModules.SourceCode.scriptURL).hostname || 'localhost';
|
||||
}
|
||||
|
||||
_sendSetStories() {
|
||||
const channel = addons.getChannel();
|
||||
const stories = this._stories.dumpStoryBook();
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -10,19 +10,19 @@ rm -rf ~/Library/Caches/Yarn/v4/.tmp
|
||||
cd app/react-native
|
||||
yarn prepare
|
||||
yarn pack
|
||||
mv storybook-react-native-v5.0.0-beta.3.tgz ../../packs/storybook-react-native.tgz
|
||||
mv storybook-react-native-v5.1.0-alpha.4.tgz ../../packs/storybook-react-native.tgz
|
||||
cd ../..
|
||||
|
||||
cd lib/client-api
|
||||
yarn prepare
|
||||
yarn pack
|
||||
mv storybook-client-api-v5.0.0-beta.3.tgz ../../packs/storybook-client-api.tgz
|
||||
mv storybook-client-api-v5.1.0-alpha.4.tgz ../../packs/storybook-client-api.tgz
|
||||
cd ../..
|
||||
|
||||
cd addons/ondevice-knobs
|
||||
yarn prepare
|
||||
yarn pack
|
||||
mv storybook-addon-ondevice-knobs-v5.0.0-beta.3.tgz ../../packs/storybook-ondevice-knobs.tgz
|
||||
mv storybook-addon-ondevice-knobs-v5.1.0-alpha.4.tgz ../../packs/storybook-ondevice-knobs.tgz
|
||||
cd ../..
|
||||
|
||||
yarn
|
||||
|
Loading…
x
Reference in New Issue
Block a user