mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:11:07 +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 */
|
/* eslint-disable no-underscore-dangle */
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { AsyncStorage, NativeModules } from 'react-native';
|
import { AsyncStorage, NativeModules, Platform } from 'react-native';
|
||||||
import parse from 'url-parse';
|
import parse from 'url-parse';
|
||||||
import addons from '@storybook/addons';
|
import addons from '@storybook/addons';
|
||||||
|
|
||||||
@ -63,8 +63,7 @@ export default class Preview {
|
|||||||
if (onDeviceUI && params.disableWebsockets) {
|
if (onDeviceUI && params.disableWebsockets) {
|
||||||
channel = new Channel({ async: true });
|
channel = new Channel({ async: true });
|
||||||
} else {
|
} else {
|
||||||
const host =
|
const host = this._getHost(params);
|
||||||
params.host || parse(NativeModules.SourceCode.scriptURL).hostname || 'localhost';
|
|
||||||
const port = params.port !== false ? `:${params.port || 7007}` : '';
|
const port = params.port !== false ? `:${params.port || 7007}` : '';
|
||||||
|
|
||||||
const query = params.query || '';
|
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() {
|
_sendSetStories() {
|
||||||
const channel = addons.getChannel();
|
const channel = addons.getChannel();
|
||||||
const stories = this._stories.dumpStoryBook();
|
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
|
cd app/react-native
|
||||||
yarn prepare
|
yarn prepare
|
||||||
yarn pack
|
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 ../..
|
||||||
|
|
||||||
cd lib/client-api
|
cd lib/client-api
|
||||||
yarn prepare
|
yarn prepare
|
||||||
yarn pack
|
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 ../..
|
||||||
|
|
||||||
cd addons/ondevice-knobs
|
cd addons/ondevice-knobs
|
||||||
yarn prepare
|
yarn prepare
|
||||||
yarn pack
|
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 ../..
|
cd ../..
|
||||||
|
|
||||||
yarn
|
yarn
|
||||||
|
Loading…
x
Reference in New Issue
Block a user