fix android host

This commit is contained in:
Benoit Dion 2019-03-12 00:35:34 -04:00
parent 68a5f2a78a
commit 2e52e7ae25
3 changed files with 868 additions and 1000 deletions

View File

@ -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

View File

@ -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