Storybook
This commit is contained in:
parent
990516a8e2
commit
90133c11e1
|
@ -1,19 +0,0 @@
|
|||
import { getStorybookUI } from '@storybook/react-native';
|
||||
import './storybook.requires';
|
||||
|
||||
import RNBootSplash from 'react-native-bootsplash';
|
||||
|
||||
import { selectServerRequest } from '../app/actions/server';
|
||||
import { mockedStore as store } from '../app/reducers/mockedStore';
|
||||
import database from '../app/lib/database';
|
||||
import { setUser } from '../app/actions/login';
|
||||
|
||||
RNBootSplash.hide();
|
||||
|
||||
const baseUrl = 'https://open.rocket.chat';
|
||||
store.dispatch(selectServerRequest(baseUrl));
|
||||
store.dispatch(setUser({ id: 'abc', username: 'rocket.cat', name: 'Rocket Cat' }));
|
||||
database.setActiveDB(baseUrl);
|
||||
|
||||
const StorybookUIRoot = getStorybookUI({});
|
||||
export default StorybookUIRoot;
|
|
@ -0,0 +1,14 @@
|
|||
import AsyncStorage from '@react-native-async-storage/async-storage';
|
||||
import { view } from './storybook.requires';
|
||||
import RNBootSplash from 'react-native-bootsplash';
|
||||
|
||||
const StorybookUIRoot = view.getStorybookUI({
|
||||
storage: {
|
||||
getItem: AsyncStorage.getItem,
|
||||
setItem: AsyncStorage.setItem,
|
||||
},
|
||||
});
|
||||
|
||||
RNBootSplash.hide();
|
||||
|
||||
export default StorybookUIRoot;
|
|
@ -1,4 +0,0 @@
|
|||
module.exports = {
|
||||
stories: ['../app/**/*.stories.?(ts|tsx|js|jsx)'],
|
||||
addons: []
|
||||
};
|
|
@ -0,0 +1,8 @@
|
|||
import { StorybookConfig } from '@storybook/react-native';
|
||||
|
||||
const main: StorybookConfig = {
|
||||
stories: ['../app/**/*.stories.?(ts|tsx|js|jsx)'],
|
||||
addons: [],
|
||||
};
|
||||
|
||||
export default main;
|
|
@ -1,40 +0,0 @@
|
|||
import React from 'react';
|
||||
import { Provider } from 'react-redux';
|
||||
|
||||
import { themes } from '../app/lib/constants';
|
||||
import MessageContext from '../app/containers/message/Context';
|
||||
import { selectServerRequest } from '../app/actions/server';
|
||||
import { mockedStore as store } from '../app/reducers/mockedStore';
|
||||
import { setUser } from '../app/actions/login';
|
||||
|
||||
const baseUrl = 'https://open.rocket.chat';
|
||||
store.dispatch(selectServerRequest(baseUrl));
|
||||
store.dispatch(setUser({ id: 'abc', username: 'rocket.cat', name: 'Rocket Cat' }));
|
||||
|
||||
export const decorators = [
|
||||
Story => (
|
||||
<Provider store={store}>
|
||||
<MessageContext.Provider
|
||||
value={{
|
||||
user: {
|
||||
id: 'y8bd77ptZswPj3EW8',
|
||||
username: 'diego.mello',
|
||||
token: 'abc'
|
||||
},
|
||||
baseUrl,
|
||||
onPress: () => {},
|
||||
onLongPress: () => {},
|
||||
reactionInit: () => {},
|
||||
onErrorPress: () => {},
|
||||
replyBroadcast: () => {},
|
||||
onReactionPress: () => {},
|
||||
onDiscussionPress: () => {},
|
||||
onReactionLongPress: () => {},
|
||||
threadBadgeColor: themes.light.tunreadColor
|
||||
}}
|
||||
>
|
||||
<Story />
|
||||
</MessageContext.Provider>
|
||||
</Provider>
|
||||
)
|
||||
];
|
|
@ -0,0 +1,48 @@
|
|||
import React from 'react'
|
||||
import type { Preview } from '@storybook/react';
|
||||
import { Provider } from 'react-redux';
|
||||
import { GestureHandlerRootView } from 'react-native-gesture-handler';
|
||||
|
||||
import { themes } from '../app/lib/constants';
|
||||
import MessageContext from '../app/containers/message/Context';
|
||||
import { selectServerRequest } from '../app/actions/server';
|
||||
import { mockedStore as store } from '../app/reducers/mockedStore';
|
||||
import { setUser } from '../app/actions/login';
|
||||
|
||||
const baseUrl = 'https://open.rocket.chat';
|
||||
store.dispatch(selectServerRequest(baseUrl));
|
||||
store.dispatch(setUser({ id: 'abc', username: 'rocket.cat', name: 'Rocket Cat' }));
|
||||
|
||||
const preview: Preview = {
|
||||
decorators: [
|
||||
(Story) => (
|
||||
<GestureHandlerRootView style={{ flex: 1 }}>
|
||||
<Provider store={store}>
|
||||
<MessageContext.Provider
|
||||
value={{
|
||||
user: {
|
||||
id: 'y8bd77ptZswPj3EW8',
|
||||
username: 'diego.mello',
|
||||
token: 'abc'
|
||||
},
|
||||
baseUrl,
|
||||
onPress: () => {},
|
||||
onLongPress: () => {},
|
||||
reactionInit: () => {},
|
||||
onErrorPress: () => {},
|
||||
replyBroadcast: () => {},
|
||||
onReactionPress: () => {},
|
||||
onDiscussionPress: () => {},
|
||||
onReactionLongPress: () => {},
|
||||
threadBadgeColor: themes.light.tunreadColor
|
||||
}}
|
||||
>
|
||||
<Story />
|
||||
</MessageContext.Provider>
|
||||
</Provider>
|
||||
</GestureHandlerRootView>
|
||||
),
|
||||
]
|
||||
};
|
||||
|
||||
export default preview;
|
|
@ -1,53 +0,0 @@
|
|||
/* do not change this file, it is auto generated by storybook. */
|
||||
|
||||
import {
|
||||
configure,
|
||||
addDecorator,
|
||||
addParameters,
|
||||
addArgsEnhancer,
|
||||
} from "@storybook/react-native";
|
||||
|
||||
import { decorators, parameters } from "./preview";
|
||||
|
||||
if (decorators) {
|
||||
decorators.forEach((decorator) => addDecorator(decorator));
|
||||
}
|
||||
|
||||
if (parameters) {
|
||||
addParameters(parameters);
|
||||
}
|
||||
|
||||
const getStories = () => {
|
||||
return [
|
||||
require("../app/containers/Avatar/Avatar.stories.tsx"),
|
||||
require("../app/containers/BackgroundContainer/index.stories.tsx"),
|
||||
require("../app/containers/Button/Button.stories.tsx"),
|
||||
require("../app/containers/Chip/Chip.stories.tsx"),
|
||||
require("../app/containers/CollapsibleText/CollapsibleText.stories.tsx"),
|
||||
require("../app/containers/HeaderButton/HeaderButtons.stories.tsx"),
|
||||
require("../app/containers/List/List.stories.tsx"),
|
||||
require("../app/containers/LoginServices/LoginServices.stories.tsx"),
|
||||
require("../app/containers/markdown/Markdown.stories.tsx"),
|
||||
require("../app/containers/markdown/new/NewMarkdown.stories.tsx"),
|
||||
require("../app/containers/message/Components/CollapsibleQuote/CollapsibleQuote.stories.tsx"),
|
||||
require("../app/containers/message/Message.stories.tsx"),
|
||||
require("../app/containers/ReactionsList/ReactionsList.stories.tsx"),
|
||||
require("../app/containers/RoomHeader/RoomHeader.stories.tsx"),
|
||||
require("../app/containers/RoomItem/RoomItem.stories.tsx"),
|
||||
require("../app/containers/RoomTypeIcon/RoomTypeIcon.stories.tsx"),
|
||||
require("../app/containers/SearchBox/SearchBox.stories.tsx"),
|
||||
require("../app/containers/ServerItem/ServerItem.stories.tsx"),
|
||||
require("../app/containers/Status/Status.stories.tsx"),
|
||||
require("../app/containers/TextInput/TextInput.stories.tsx"),
|
||||
require("../app/containers/UIKit/UiKitMessage.stories.tsx"),
|
||||
require("../app/containers/UIKit/UiKitModal.stories.tsx"),
|
||||
require("../app/containers/UnreadBadge/UnreadBadge.stories.tsx"),
|
||||
require("../app/views/CannedResponsesListView/CannedResponseItem.stories.tsx"),
|
||||
require("../app/views/CreateChannelView/RoomSettings/SwitchItem.stories.tsx"),
|
||||
require("../app/views/DiscussionsView/Item.stories.tsx"),
|
||||
require("../app/views/RoomView/LoadMore/LoadMore.stories.tsx"),
|
||||
require("../app/views/ThreadMessagesView/Item.stories.tsx"),
|
||||
];
|
||||
};
|
||||
|
||||
configure(getStories, module, false);
|
|
@ -0,0 +1,57 @@
|
|||
/* do not change this file, it is auto generated by storybook. */
|
||||
|
||||
import {
|
||||
start,
|
||||
prepareStories,
|
||||
getProjectAnnotations,
|
||||
} from "@storybook/react-native";
|
||||
|
||||
const normalizedStories = [
|
||||
{
|
||||
titlePrefix: "",
|
||||
directory: "./app",
|
||||
files: "**/*.stories.?(ts|tsx|js|jsx)",
|
||||
importPathMatcher:
|
||||
/^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.(?:ts|tsx|js|jsx)?)$/,
|
||||
// @ts-ignore
|
||||
req: require.context(
|
||||
"../app",
|
||||
true,
|
||||
/^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.(?:ts|tsx|js|jsx)?)$/
|
||||
),
|
||||
},
|
||||
];
|
||||
|
||||
declare global {
|
||||
var view: ReturnType<typeof start>;
|
||||
var STORIES: typeof normalizedStories;
|
||||
}
|
||||
|
||||
const annotations = [
|
||||
require("./preview"),
|
||||
require("@storybook/react-native/dist/preview"),
|
||||
];
|
||||
|
||||
global.STORIES = normalizedStories;
|
||||
|
||||
// @ts-ignore
|
||||
module?.hot?.accept?.();
|
||||
|
||||
if (!global.view) {
|
||||
global.view = start({
|
||||
annotations,
|
||||
storyEntries: normalizedStories,
|
||||
});
|
||||
} else {
|
||||
const { importMap } = prepareStories({ storyEntries: normalizedStories });
|
||||
|
||||
global.view._preview.onStoriesChanged({
|
||||
importFn: async (importPath: string) => importMap[importPath],
|
||||
});
|
||||
|
||||
global.view._preview.onGetProjectAnnotationsChanged({
|
||||
getProjectAnnotations: getProjectAnnotations(global.view, annotations),
|
||||
});
|
||||
}
|
||||
|
||||
export const view = global.view;
|
|
@ -1,35 +0,0 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Avatar Avatar External Provider Url 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://hips.hearstapps.com/hmg-prod/images/dog-puppy-on-garden-royalty-free-image-1586966191.jpg?crop=0.752xw:1.00xh;0.175xw,0&resize=1200:*&format=png&size=112\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Avatar Path 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/diego.mello?format=png&size=112\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Avatar Room Id 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/room/devWBbYr7inwupPqK?format=png&size=112\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Avatar Text 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/Avatar?format=png&size=112\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Avatar Url 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://user-images.githubusercontent.com/29778115/89444446-14738480-d728-11ea-9412-75fd978d95fb.jpg\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Channel 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/@general?format=png&size=112\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Children 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/Avatar?format=png&size=112\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":24,\\"color\\":\\"#f5455c\\"},[{\\"lineHeight\\":24},[{\\"width\\":24,\\"height\\":24,\\"textAlignVertical\\":\\"center\\"},[{\\"position\\":\\"absolute\\",\\"bottom\\":-2,\\"right\\":-2,\\"borderRadius\\":10}]]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Custom Border Radius 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":28},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":28}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/Avatar?format=png&size=112\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Custom Style 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},{\\"padding\\":16}],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/Avatar?format=png&size=112\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Direct 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/diego.mello?format=png&size=112\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Emoji 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},[{\\"width\\":30,\\"height\\":30}]]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/emoji-custom/troll.jpg\\",\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"contain\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Room Avatar External Provider Url 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://cdn.pensador.com/img/authors/ho/me/homer-simpson-l.jpg?format=png&size=112\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Static 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://user-images.githubusercontent.com/29778115/89444446-14738480-d728-11ea-9412-75fd978d95fb.jpg\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Touchable 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/Avatar?format=png&size=112\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar With E Tag 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/djorkaeff.alexandre?format=png&size=112&etag=5ag8KffJcZj9m5rCv\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Without E Tag 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/djorkaeff.alexandre?format=png&size=112\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Wrong Server 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4},null],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":56,\\"height\\":56,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://google.com/avatar/Avatar?format=png&size=112\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]}"`;
|
|
@ -1,17 +0,0 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots BackgroundContainer Basic 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessibilityIgnoresInvertColors\\":true,\\"style\\":{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\",\\"position\\":\\"absolute\\"}},\\"children\\":[{\\"type\\":\\"Image\\",\\"props\\":{\\"source\\":{\\"uri\\":\\"message_empty_light\\"},\\"style\\":[{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\"},null]},\\"children\\":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Black Theme Loading 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessibilityIgnoresInvertColors\\":true,\\"style\\":{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\",\\"position\\":\\"absolute\\"}},\\"children\\":[{\\"type\\":\\"Image\\",\\"props\\":{\\"source\\":{\\"uri\\":\\"message_empty_black\\"},\\"style\\":[{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\"},null]},\\"children\\":null}]},{\\"type\\":\\"ActivityIndicator\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"top\\":60,\\"left\\":0,\\"right\\":0,\\"fontSize\\":16,\\"paddingHorizontal\\":24,\\"textAlign\\":\\"center\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},\\"color\\":\\"#f9f9f9\\"},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Black Theme Text 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessibilityIgnoresInvertColors\\":true,\\"style\\":{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\",\\"position\\":\\"absolute\\"}},\\"children\\":[{\\"type\\":\\"Image\\",\\"props\\":{\\"source\\":{\\"uri\\":\\"message_empty_black\\"},\\"style\\":[{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\"},null]},\\"children\\":null}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"position\\":\\"absolute\\",\\"top\\":60,\\"left\\":0,\\"right\\":0,\\"fontSize\\":16,\\"paddingHorizontal\\":24,\\"textAlign\\":\\"center\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#f9f9f9\\"}]},\\"children\\":[\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\"]}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Dark Theme Loading 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessibilityIgnoresInvertColors\\":true,\\"style\\":{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\",\\"position\\":\\"absolute\\"}},\\"children\\":[{\\"type\\":\\"Image\\",\\"props\\":{\\"source\\":{\\"uri\\":\\"message_empty_dark\\"},\\"style\\":[{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\"},null]},\\"children\\":null}]},{\\"type\\":\\"ActivityIndicator\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"top\\":60,\\"left\\":0,\\"right\\":0,\\"fontSize\\":16,\\"paddingHorizontal\\":24,\\"textAlign\\":\\"center\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},\\"color\\":\\"#f9f9f9\\"},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Dark Theme Text 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessibilityIgnoresInvertColors\\":true,\\"style\\":{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\",\\"position\\":\\"absolute\\"}},\\"children\\":[{\\"type\\":\\"Image\\",\\"props\\":{\\"source\\":{\\"uri\\":\\"message_empty_dark\\"},\\"style\\":[{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\"},null]},\\"children\\":null}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"position\\":\\"absolute\\",\\"top\\":60,\\"left\\":0,\\"right\\":0,\\"fontSize\\":16,\\"paddingHorizontal\\":24,\\"textAlign\\":\\"center\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#f9f9f9\\"}]},\\"children\\":[\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\"]}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Loading 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessibilityIgnoresInvertColors\\":true,\\"style\\":{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\",\\"position\\":\\"absolute\\"}},\\"children\\":[{\\"type\\":\\"Image\\",\\"props\\":{\\"source\\":{\\"uri\\":\\"message_empty_light\\"},\\"style\\":[{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\"},null]},\\"children\\":null}]},{\\"type\\":\\"ActivityIndicator\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"top\\":60,\\"left\\":0,\\"right\\":0,\\"fontSize\\":16,\\"paddingHorizontal\\":24,\\"textAlign\\":\\"center\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},\\"color\\":\\"#6C727A\\"},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Long Text 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessibilityIgnoresInvertColors\\":true,\\"style\\":{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\",\\"position\\":\\"absolute\\"}},\\"children\\":[{\\"type\\":\\"Image\\",\\"props\\":{\\"source\\":{\\"uri\\":\\"message_empty_light\\"},\\"style\\":[{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\"},null]},\\"children\\":null}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"position\\":\\"absolute\\",\\"top\\":60,\\"left\\":0,\\"right\\":0,\\"fontSize\\":16,\\"paddingHorizontal\\":24,\\"textAlign\\":\\"center\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#6C727A\\"}]},\\"children\\":[\\"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries\\"]}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Text 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessibilityIgnoresInvertColors\\":true,\\"style\\":{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\",\\"position\\":\\"absolute\\"}},\\"children\\":[{\\"type\\":\\"Image\\",\\"props\\":{\\"source\\":{\\"uri\\":\\"message_empty_light\\"},\\"style\\":[{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},{\\"width\\":\\"100%\\",\\"height\\":\\"100%\\"},null]},\\"children\\":null}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"position\\":\\"absolute\\",\\"top\\":60,\\"left\\":0,\\"right\\":0,\\"fontSize\\":16,\\"paddingHorizontal\\":24,\\"textAlign\\":\\"center\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#6C727A\\"}]},\\"children\\":[\\"Text here\\"]}]}"`;
|
|
@ -1,13 +0,0 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Button Custom Button 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityLabel\\":\\"Press me!\\",\\"accessibilityState\\":{\\"disabled\\":false},\\"testID\\":\\"testButton\\",\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"paddingHorizontal\\":14,\\"justifyContent\\":\\"center\\",\\"height\\":48,\\"borderRadius\\":4,\\"marginBottom\\":12,\\"backgroundColor\\":\\"purple\\",\\"padding\\":10,\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"textAlign\\":\\"center\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\"},{\\"color\\":\\"yellow\\",\\"fontSize\\":18},[{\\"textAlign\\":\\"left\\"}]]},\\"children\\":[\\"Press me!\\"]}]}"`;
|
||||
|
||||
exports[`Storyshots Button Disabled Button 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityLabel\\":\\"Press me!\\",\\"accessibilityState\\":{\\"disabled\\":true},\\"testID\\":\\"testButton\\",\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"paddingHorizontal\\":14,\\"justifyContent\\":\\"center\\",\\"height\\":48,\\"borderRadius\\":4,\\"marginBottom\\":12,\\"backgroundColor\\":\\"#1d74f5\\",\\"opacity\\":0.3}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"textAlign\\":\\"center\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\"},{\\"color\\":\\"#ffffff\\",\\"fontSize\\":16},null]},\\"children\\":[\\"Press me!\\"]}]}"`;
|
||||
|
||||
exports[`Storyshots Button Disabled Loading Button 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityLabel\\":\\"Press me!\\",\\"accessibilityState\\":{\\"disabled\\":true},\\"testID\\":\\"testButton\\",\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"paddingHorizontal\\":14,\\"justifyContent\\":\\"center\\",\\"height\\":48,\\"borderRadius\\":4,\\"marginBottom\\":12,\\"backgroundColor\\":\\"#1d74f5\\",\\"opacity\\":0.3}},\\"children\\":[{\\"type\\":\\"ActivityIndicator\\",\\"props\\":{\\"style\\":[{\\"padding\\":16,\\"flex\\":1},null],\\"color\\":\\"#ffffff\\"},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots Button Loading Button 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityLabel\\":\\"Press me!\\",\\"accessibilityState\\":{\\"disabled\\":true},\\"testID\\":\\"testButton\\",\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"paddingHorizontal\\":14,\\"justifyContent\\":\\"center\\",\\"height\\":48,\\"borderRadius\\":4,\\"marginBottom\\":12,\\"backgroundColor\\":\\"#1d74f5\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"ActivityIndicator\\",\\"props\\":{\\"style\\":[{\\"padding\\":16,\\"flex\\":1},null],\\"color\\":\\"#ffffff\\"},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots Button Primary Button 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityLabel\\":\\"Press me!\\",\\"accessibilityState\\":{\\"disabled\\":false},\\"testID\\":\\"testButton\\",\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"paddingHorizontal\\":14,\\"justifyContent\\":\\"center\\",\\"height\\":48,\\"borderRadius\\":4,\\"marginBottom\\":12,\\"backgroundColor\\":\\"#1d74f5\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"textAlign\\":\\"center\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\"},{\\"color\\":\\"#ffffff\\",\\"fontSize\\":16},null]},\\"children\\":[\\"Press me!\\"]}]}"`;
|
||||
|
||||
exports[`Storyshots Button Secondary Button 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityLabel\\":\\"Press me!\\",\\"accessibilityState\\":{\\"disabled\\":false},\\"testID\\":\\"testButton\\",\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"paddingHorizontal\\":14,\\"justifyContent\\":\\"center\\",\\"height\\":48,\\"borderRadius\\":4,\\"marginBottom\\":12,\\"backgroundColor\\":\\"#ffffff\\",\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"textAlign\\":\\"center\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\"},{\\"color\\":\\"#2f343d\\",\\"fontSize\\":16},null]},\\"children\\":[\\"Press me!\\"]}]}"`;
|
|
@ -1,11 +0,0 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Chip Chip Text 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"alignItems\\":\\"flex-start\\",\\"padding\\":16}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"style\\":[{\\"paddingHorizontal\\":8,\\"marginRight\\":8,\\"borderRadius\\":4,\\"justifyContent\\":\\"center\\",\\"maxWidth\\":192},{\\"backgroundColor\\":\\"#efeff4\\"},null],\\"collapsable\\":false},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":28,\\"height\\":28,\\"borderRadius\\":4},{\\"marginRight\\":8,\\"marginVertical\\":8}],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":28,\\"height\\":28,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/rocket.cat?format=png&size=56\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"marginRight\\":8,\\"maxWidth\\":120}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\"},{\\"color\\":\\"#2f343d\\"}],\\"numberOfLines\\":1},\\"children\\":[\\"Rocket.Cat\\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":16,\\"color\\":\\"#6C727A\\"},[{\\"lineHeight\\":16},null],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]}]}]}"`;
|
||||
|
||||
exports[`Storyshots Chip Chip With Short Text 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"alignItems\\":\\"flex-start\\",\\"padding\\":16}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"style\\":[{\\"paddingHorizontal\\":8,\\"marginRight\\":8,\\"borderRadius\\":4,\\"justifyContent\\":\\"center\\",\\"maxWidth\\":192},{\\"backgroundColor\\":\\"#efeff4\\"},null],\\"collapsable\\":false},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":28,\\"height\\":28,\\"borderRadius\\":4},{\\"marginRight\\":8,\\"marginVertical\\":8}],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":28,\\"height\\":28,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/rocket.cat?format=png&size=56\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"marginRight\\":8,\\"maxWidth\\":120}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\"},{\\"color\\":\\"#2f343d\\"}],\\"numberOfLines\\":1},\\"children\\":[\\"Short\\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":16,\\"color\\":\\"#6C727A\\"},[{\\"lineHeight\\":16},null],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]}]}]}"`;
|
||||
|
||||
exports[`Storyshots Chip Chip Without Avatar 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"alignItems\\":\\"flex-start\\",\\"padding\\":16}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":false},\\"focusable\\":true,\\"style\\":[{\\"paddingHorizontal\\":8,\\"marginRight\\":8,\\"borderRadius\\":4,\\"justifyContent\\":\\"center\\",\\"maxWidth\\":192},{\\"backgroundColor\\":\\"#efeff4\\"},null],\\"collapsable\\":false},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"marginRight\\":8,\\"maxWidth\\":120}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\"},{\\"color\\":\\"#2f343d\\"}],\\"numberOfLines\\":1},\\"children\\":[\\"Without Avatar\\"]}]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":16,\\"color\\":\\"#6C727A\\"},[{\\"lineHeight\\":16},null],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]}]}]}"`;
|
||||
|
||||
exports[`Storyshots Chip Chip Without Avatar And Icon 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"alignItems\\":\\"flex-start\\",\\"padding\\":16}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":true},\\"focusable\\":true,\\"style\\":[{\\"paddingHorizontal\\":8,\\"marginRight\\":8,\\"borderRadius\\":4,\\"justifyContent\\":\\"center\\",\\"maxWidth\\":192},{\\"backgroundColor\\":\\"#efeff4\\"},null],\\"collapsable\\":false},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"marginRight\\":8,\\"maxWidth\\":120}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\"},{\\"color\\":\\"#2f343d\\"}],\\"numberOfLines\\":1},\\"children\\":[\\"Without Avatar and Icon\\"]}]}]}]}]}"`;
|
||||
|
||||
exports[`Storyshots Chip Chip Without Icon 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"alignItems\\":\\"flex-start\\",\\"padding\\":16}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"accessibilityState\\":{\\"disabled\\":true},\\"focusable\\":true,\\"style\\":[{\\"paddingHorizontal\\":8,\\"marginRight\\":8,\\"borderRadius\\":4,\\"justifyContent\\":\\"center\\",\\"maxWidth\\":192},{\\"backgroundColor\\":\\"#efeff4\\"},null],\\"collapsable\\":false},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"width\\":28,\\"height\\":28,\\"borderRadius\\":4},{\\"marginRight\\":8,\\"marginVertical\\":8}],\\"testID\\":\\"avatar\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"overflow\\":\\"hidden\\"},{\\"width\\":28,\\"height\\":28,\\"borderRadius\\":4}]},\\"children\\":[{\\"type\\":\\"FastImageView\\",\\"props\\":{\\"style\\":{\\"position\\":\\"absolute\\",\\"left\\":0,\\"right\\":0,\\"top\\":0,\\"bottom\\":0},\\"source\\":{\\"uri\\":\\"https://open.rocket.chat/avatar/rocket.cat?format=png&size=56\\",\\"headers\\":{\\"User-Agent\\":\\"RC Mobile; ios unknown; vunknown (unknown)\\"},\\"priority\\":\\"high\\"},\\"resizeMode\\":\\"cover\\"},\\"children\\":null}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"marginRight\\":8,\\"maxWidth\\":120}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\"},{\\"color\\":\\"#2f343d\\"}],\\"numberOfLines\\":1},\\"children\\":[\\"Without Icon\\"]}]}]}]}]}"`;
|
|
@ -1,3 +0,0 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Collapsible Text Item 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"padding\\":20}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"Lorem ipsum dolor sit amet\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\",\\"textAlignVertical\\":\\"center\\"},{\\"color\\":\\"#2f343d\\",\\"height\\":0}],\\"testID\\":\\"collapsible-text-Lorem ipsum dolor sit amet\\"},\\"children\\":[\\"Lorem ipsum dolor sit amet\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"linesToTruncate: 1 - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel vestibulum neque. Proin dignissim neque in urna nec.\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\",\\"textAlignVertical\\":\\"center\\"},{\\"color\\":\\"#2f343d\\",\\"height\\":0}],\\"testID\\":\\"collapsible-text-linesToTruncate: 1 - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel vestibulum neque. Proin dignissim neque in urna nec.\\"},\\"children\\":[\\"linesToTruncate: 1 - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel vestibulum neque. Proin dignissim neque in urna nec.\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"accessibilityLabel\\":\\"linesToTruncate: 2 - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel vestibulum neque. Proin dignissim neque in urna nec.\\",\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\",\\"textAlignVertical\\":\\"center\\"},{\\"color\\":\\"#2f343d\\",\\"height\\":0}],\\"testID\\":\\"collapsible-text-linesToTruncate: 2 - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel vestibulum neque. Proin dignissim neque in urna nec.\\"},\\"children\\":[\\"linesToTruncate: 2 - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel vestibulum neque. Proin dignissim neque in urna nec.\\"]}]}"`;
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,3 +0,0 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots RoomTypeIcon All 1`] = `"[{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":30,\\"color\\":\\"#cbced1\\"},[{\\"lineHeight\\":30},[{\\"width\\":30,\\"height\\":30,\\"textAlignVertical\\":\\"center\\"},[{\\"marginRight\\":4},null]]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":30,\\"color\\":\\"#2de0a5\\"},[{\\"lineHeight\\":30},[{\\"width\\":30,\\"height\\":30,\\"textAlignVertical\\":\\"center\\"},[{\\"marginRight\\":4},null]]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":30,\\"color\\":\\"#0d0e12\\"},[{\\"lineHeight\\":30},[{\\"marginRight\\":4},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":30,\\"color\\":\\"#0d0e12\\"},[{\\"lineHeight\\":30},[{\\"marginRight\\":4},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":30,\\"color\\":\\"#0d0e12\\"},[{\\"lineHeight\\":30},[{\\"marginRight\\":4},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":30,\\"color\\":\\"#0d0e12\\"},[{\\"lineHeight\\":30},[{\\"marginRight\\":4},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":30,\\"color\\":\\"#0d0e12\\"},[{\\"lineHeight\\":30},[{\\"marginRight\\":4},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":30,\\"color\\":\\"#0d0e12\\"},[{\\"lineHeight\\":30},[{\\"marginRight\\":4},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":30,\\"color\\":\\"#ffd21f\\"},[{\\"lineHeight\\":30},[{\\"marginRight\\":4},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":30,\\"color\\":\\"#0d0e12\\"},[{\\"lineHeight\\":30},[{\\"marginRight\\":4},{\\"margin\\":10}]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]"`;
|
|
@ -1,3 +0,0 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots SearchBox Basic 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"testID\\":\\"searchbox\\",\\"style\\":{\\"backgroundColor\\":\\"#ffffff\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"marginBottom\\":10},{\\"margin\\":16,\\"marginBottom\\":16}]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"position\\":\\"relative\\",\\"justifyContent\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"TextInput\\",\\"props\\":{\\"style\\":[{\\"color\\":\\"#0d0e12\\"},[{\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\",\\"height\\":48,\\"fontSize\\":16,\\"paddingHorizontal\\":16,\\"paddingVertical\\":10,\\"borderWidth\\":1,\\"borderRadius\\":4},null,{\\"paddingRight\\":45},{\\"backgroundColor\\":\\"#ffffff\\",\\"borderColor\\":\\"#cbcbcc\\",\\"color\\":\\"#0d0e12\\"},null,null],{\\"textAlign\\":\\"auto\\"}],\\"placeholderTextColor\\":\\"#9ca2a8\\",\\"keyboardAppearance\\":\\"light\\",\\"autoCorrect\\":false,\\"autoCapitalize\\":\\"none\\",\\"underlineColorAndroid\\":\\"transparent\\",\\"accessibilityLabel\\":\\"Search\\",\\"placeholder\\":\\"Search\\",\\"value\\":\\"\\",\\"blurOnSubmit\\":true,\\"returnKeyType\\":\\"search\\"},\\"children\\":null},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":20,\\"color\\":\\"#2f343d\\"},[{\\"lineHeight\\":20},[{\\"position\\":\\"absolute\\"},{\\"right\\":12}]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]}]}]}"`;
|
File diff suppressed because one or more lines are too long
|
@ -1,3 +0,0 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Status All 1`] = `"[{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":32,\\"color\\":\\"#2de0a5\\"},[{\\"lineHeight\\":32},[{\\"width\\":32,\\"height\\":32,\\"textAlignVertical\\":\\"center\\"},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":32,\\"color\\":\\"#f5455c\\"},[{\\"lineHeight\\":32},[{\\"width\\":32,\\"height\\":32,\\"textAlignVertical\\":\\"center\\"},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":32,\\"color\\":\\"#ffd21f\\"},[{\\"lineHeight\\":32},[{\\"width\\":32,\\"height\\":32,\\"textAlignVertical\\":\\"center\\"},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":32,\\"color\\":\\"#9ea2a8\\"},[{\\"lineHeight\\":32},[{\\"width\\":32,\\"height\\":32,\\"textAlignVertical\\":\\"center\\"},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":32,\\"color\\":\\"#F38C39\\"},[{\\"lineHeight\\":32},[{\\"width\\":32,\\"height\\":32,\\"textAlignVertical\\":\\"center\\"},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":32,\\"color\\":\\"#cbced1\\"},[{\\"lineHeight\\":32},[{\\"width\\":32,\\"height\\":32,\\"textAlignVertical\\":\\"center\\"},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":32,\\"color\\":\\"#cbced1\\"},[{\\"lineHeight\\":32},[{\\"width\\":32,\\"height\\":32,\\"textAlignVertical\\":\\"center\\"},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":60,\\"color\\":\\"#2de0a5\\"},[{\\"lineHeight\\":60},[{\\"width\\":60,\\"height\\":60,\\"textAlignVertical\\":\\"center\\"},null]],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]"`;
|
File diff suppressed because one or more lines are too long
|
@ -1,27 +0,0 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Action - Buttons 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Action - Select 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Context 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Fields 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Image 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + DatePicker 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + Markdown List 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + Multi Select 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + Overflow 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + Select 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + button 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + image 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
|
@ -1,23 +0,0 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Actions 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Contexts and Dividers 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - DatePicker with error 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Form Input 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Form TextArea 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Images 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Input with error 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Multi Select Input 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Multilne with error 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Section and Accessories 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Section and Selects 1`] = `"{\\"type\\":\\"RCTScrollView\\",\\"props\\":{\\"style\\":[{\\"flex\\":1,\\"backgroundColor\\":\\"#fff\\"},{\\"paddingHorizontal\\":16}],\\"keyboardShouldPersistTaps\\":\\"always\\"},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{},\\"children\\":null}]}"`;
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,3 +0,0 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots CollapsibleQuote Item 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"padding\\":10}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"accessible\\":true,\\"testID\\":\\"collapsibleQuoteTouchable-Engineering (9 today)\\",\\"hitSlop\\":{\\"top\\":4,\\"right\\":4,\\"bottom\\":4,\\"left\\":4},\\"focusable\\":true,\\"collapsable\\":false,\\"style\\":{\\"flexDirection\\":\\"row\\",\\"alignItems\\":\\"center\\",\\"marginTop\\":6,\\"borderWidth\\":1,\\"borderRadius\\":4,\\"minHeight\\":40,\\"backgroundColor\\":\\"#f3f4f5\\",\\"borderLeftColor\\":\\"#CBCED1\\",\\"borderTopColor\\":\\"#e1e5e8\\",\\"borderRightColor\\":\\"#e1e5e8\\",\\"borderBottomColor\\":\\"#e1e5e8\\",\\"borderLeftWidth\\":2,\\"opacity\\":1}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"borderRadius\\":4,\\"padding\\":8}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flexDirection\\":\\"row\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":16,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\"},{\\"color\\":\\"#6C727A\\"}]},\\"children\\":[\\"Engineering (9 today)\\"]}]}]},{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"width\\":20,\\"height\\":20,\\"right\\":8,\\"top\\":8,\\"justifyContent\\":\\"center\\",\\"alignItems\\":\\"center\\"}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"selectable\\":false,\\"allowFontScaling\\":false,\\"style\\":[{\\"fontSize\\":22,\\"color\\":\\"#6C727A\\"},[{\\"lineHeight\\":22},null],{\\"fontFamily\\":\\"custom\\",\\"fontWeight\\":\\"normal\\",\\"fontStyle\\":\\"normal\\"},{}]},\\"children\\":[\\"\\"]}]}]}]}]}"`;
|
File diff suppressed because one or more lines are too long
|
@ -1,17 +0,0 @@
|
|||
import initStoryshots, { Stories2SnapsConverter } from '@storybook/addon-storyshots';
|
||||
import { render } from '@testing-library/react-native';
|
||||
|
||||
global.Date.now = jest.fn(() => new Date('2019-10-10').getTime());
|
||||
|
||||
const converter = new Stories2SnapsConverter();
|
||||
|
||||
initStoryshots({
|
||||
test: ({ story, context }) => {
|
||||
const snapshotFilename = converter.getSnapshotFileName(context);
|
||||
const storyElement = story.render();
|
||||
const { update, toJSON } = render(storyElement);
|
||||
update(storyElement);
|
||||
const json = toJSON();
|
||||
expect(JSON.stringify(json)).toMatchSpecificSnapshot(snapshotFilename);
|
||||
}
|
||||
});
|
File diff suppressed because one or more lines are too long
|
@ -1,3 +0,0 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots SwitchItem Switch 1`] = `"{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"alignItems\\":\\"flex-start\\",\\"padding\\":16}},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":[{\\"minHeight\\":54,\\"alignItems\\":\\"center\\",\\"justifyContent\\":\\"space-between\\",\\"flexDirection\\":\\"row\\",\\"maxHeight\\":80,\\"marginBottom\\":12},{\\"backgroundColor\\":\\"#ffffff\\"}]},\\"children\\":[{\\"type\\":\\"View\\",\\"props\\":{\\"style\\":{\\"flex\\":1,\\"marginRight\\":8}},\\"children\\":[{\\"type\\":\\"Text\\",\\"props\\":{\\"style\\":[{\\"fontSize\\":14,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"500\\"},{\\"color\\":\\"#0d0e12\\"}]},\\"children\\":[\\"[missing \\\\\\"en.Onboarding_title\\\\\\" translation]\\"]},{\\"type\\":\\"Text\\",\\"props\\":{\\"testID\\":\\"create-channel-switch-id-hint\\",\\"style\\":[{\\"fontSize\\":14,\\"textAlign\\":\\"left\\",\\"backgroundColor\\":\\"transparent\\",\\"fontFamily\\":\\"Inter\\",\\"fontWeight\\":\\"400\\"},{\\"color\\":\\"#9ca2a8\\"}]},\\"children\\":[\\"Only authorized users can write new messages\\"]}]},{\\"type\\":\\"RCTSwitch\\",\\"props\\":{\\"testID\\":\\"create-channel-switch-id\\",\\"disabled\\":false,\\"onTintColor\\":\\"#2de0a5\\",\\"style\\":{\\"height\\":31,\\"width\\":51},\\"tintColor\\":\\"#f5455c\\",\\"value\\":false,\\"accessibilityRole\\":\\"switch\\"},\\"children\\":null}]}]}"`;
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,31 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Avatar Avatar External Provider Url 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},null],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Avatar Path 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},null],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Avatar Room Id 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},null],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Avatar Text 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},null],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Avatar Url 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},null],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Channel 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},null],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Custom Border Radius 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":28},null],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":28}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Custom Style 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},{"padding":16}],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Direct 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},null],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Room Avatar External Provider Url 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},null],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Static 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},null],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Touchable 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},null],"testID":"avatar"},"children":[{"type":"View","props":{"accessible":true,"accessibilityState":{},"accessibilityValue":{},"style":{"opacity":1},"focusable":true,"collapsable":false},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar With E Tag 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},null],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Without E Tag 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},null],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots Avatar Wrong Server 1`] = `"{"type":"View","props":{"style":[{"width":56,"height":56,"borderRadius":4},null],"testID":"avatar"},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":56,"height":56,"borderRadius":4}]},"children":[{"type":"FastImageView","props":{"style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]}]}"`;
|
|
@ -0,0 +1,17 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots BackgroundContainer Basic 1`] = `"{"type":"View","props":{"style":{"flex":1}},"children":[{"type":"View","props":{"accessibilityIgnoresInvertColors":true,"style":{"width":"100%","height":"100%","position":"absolute"}},"children":[{"type":"Image","props":{"source":{"uri":"message_empty_light"},"style":[{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},{"width":"100%","height":"100%"},null]},"children":null}]}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Black Theme Loading 1`] = `"{"type":"View","props":{"style":{"flex":1}},"children":[{"type":"View","props":{"accessibilityIgnoresInvertColors":true,"style":{"width":"100%","height":"100%","position":"absolute"}},"children":[{"type":"Image","props":{"source":{"uri":"message_empty_black"},"style":[{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},{"width":"100%","height":"100%"},null]},"children":null}]},{"type":"ActivityIndicator","props":{"style":{"position":"absolute","top":60,"left":0,"right":0,"fontSize":16,"paddingHorizontal":24,"textAlign":"center","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},"color":"#f9f9f9"},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Black Theme Text 1`] = `"{"type":"View","props":{"style":{"flex":1}},"children":[{"type":"View","props":{"accessibilityIgnoresInvertColors":true,"style":{"width":"100%","height":"100%","position":"absolute"}},"children":[{"type":"Image","props":{"source":{"uri":"message_empty_black"},"style":[{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},{"width":"100%","height":"100%"},null]},"children":null}]},{"type":"Text","props":{"style":[{"position":"absolute","top":60,"left":0,"right":0,"fontSize":16,"paddingHorizontal":24,"textAlign":"center","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#f9f9f9"}]},"children":["Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries"]}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Dark Theme Loading 1`] = `"{"type":"View","props":{"style":{"flex":1}},"children":[{"type":"View","props":{"accessibilityIgnoresInvertColors":true,"style":{"width":"100%","height":"100%","position":"absolute"}},"children":[{"type":"Image","props":{"source":{"uri":"message_empty_dark"},"style":[{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},{"width":"100%","height":"100%"},null]},"children":null}]},{"type":"ActivityIndicator","props":{"style":{"position":"absolute","top":60,"left":0,"right":0,"fontSize":16,"paddingHorizontal":24,"textAlign":"center","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},"color":"#f9f9f9"},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Dark Theme Text 1`] = `"{"type":"View","props":{"style":{"flex":1}},"children":[{"type":"View","props":{"accessibilityIgnoresInvertColors":true,"style":{"width":"100%","height":"100%","position":"absolute"}},"children":[{"type":"Image","props":{"source":{"uri":"message_empty_dark"},"style":[{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},{"width":"100%","height":"100%"},null]},"children":null}]},{"type":"Text","props":{"style":[{"position":"absolute","top":60,"left":0,"right":0,"fontSize":16,"paddingHorizontal":24,"textAlign":"center","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#f9f9f9"}]},"children":["Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries"]}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Loading 1`] = `"{"type":"View","props":{"style":{"flex":1}},"children":[{"type":"View","props":{"accessibilityIgnoresInvertColors":true,"style":{"width":"100%","height":"100%","position":"absolute"}},"children":[{"type":"Image","props":{"source":{"uri":"message_empty_light"},"style":[{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},{"width":"100%","height":"100%"},null]},"children":null}]},{"type":"ActivityIndicator","props":{"style":{"position":"absolute","top":60,"left":0,"right":0,"fontSize":16,"paddingHorizontal":24,"textAlign":"center","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},"color":"#6C727A"},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Long Text 1`] = `"{"type":"View","props":{"style":{"flex":1}},"children":[{"type":"View","props":{"accessibilityIgnoresInvertColors":true,"style":{"width":"100%","height":"100%","position":"absolute"}},"children":[{"type":"Image","props":{"source":{"uri":"message_empty_light"},"style":[{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},{"width":"100%","height":"100%"},null]},"children":null}]},{"type":"Text","props":{"style":[{"position":"absolute","top":60,"left":0,"right":0,"fontSize":16,"paddingHorizontal":24,"textAlign":"center","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#6C727A"}]},"children":["Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries"]}]}"`;
|
||||
|
||||
exports[`Storyshots BackgroundContainer Text 1`] = `"{"type":"View","props":{"style":{"flex":1}},"children":[{"type":"View","props":{"accessibilityIgnoresInvertColors":true,"style":{"width":"100%","height":"100%","position":"absolute"}},"children":[{"type":"Image","props":{"source":{"uri":"message_empty_light"},"style":[{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},{"width":"100%","height":"100%"},null]},"children":null}]},{"type":"Text","props":{"style":[{"position":"absolute","top":60,"left":0,"right":0,"fontSize":16,"paddingHorizontal":24,"textAlign":"center","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#6C727A"}]},"children":["Text here"]}]}"`;
|
|
@ -0,0 +1,13 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Button Custom Button 1`] = `"{"type":"View","props":{"accessible":true,"accessibilityLabel":"Press me!","accessibilityState":{"disabled":false},"accessibilityValue":{},"style":{"paddingHorizontal":14,"justifyContent":"center","height":48,"borderRadius":4,"marginBottom":12,"backgroundColor":"purple","padding":10,"opacity":1},"testID":"testButton","focusable":true,"collapsable":false},"children":[{"type":"Text","props":{"style":[{"textAlign":"center","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"500"},{"color":"yellow","fontSize":18},[{"textAlign":"left"}]]},"children":["Press me!"]}]}"`;
|
||||
|
||||
exports[`Storyshots Button Disabled Button 1`] = `"{"type":"View","props":{"accessible":true,"accessibilityLabel":"Press me!","accessibilityState":{"disabled":true},"accessibilityValue":{},"style":{"paddingHorizontal":14,"justifyContent":"center","height":48,"borderRadius":4,"marginBottom":12,"backgroundColor":"#1d74f5","opacity":0.3},"testID":"testButton","focusable":true,"collapsable":false},"children":[{"type":"Text","props":{"style":[{"textAlign":"center","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"500"},{"color":"#ffffff","fontSize":16},null]},"children":["Press me!"]}]}"`;
|
||||
|
||||
exports[`Storyshots Button Disabled Loading Button 1`] = `"{"type":"View","props":{"accessible":true,"accessibilityLabel":"Press me!","accessibilityState":{"disabled":true},"accessibilityValue":{},"style":{"paddingHorizontal":14,"justifyContent":"center","height":48,"borderRadius":4,"marginBottom":12,"backgroundColor":"#1d74f5","opacity":0.3},"testID":"testButton","focusable":true,"collapsable":false},"children":[{"type":"ActivityIndicator","props":{"style":[{"padding":16,"flex":1},null],"color":"#ffffff"},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots Button Loading Button 1`] = `"{"type":"View","props":{"accessible":true,"accessibilityLabel":"Press me!","accessibilityState":{"disabled":true},"accessibilityValue":{},"style":{"paddingHorizontal":14,"justifyContent":"center","height":48,"borderRadius":4,"marginBottom":12,"backgroundColor":"#1d74f5","opacity":1},"testID":"testButton","focusable":true,"collapsable":false},"children":[{"type":"ActivityIndicator","props":{"style":[{"padding":16,"flex":1},null],"color":"#ffffff"},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots Button Primary Button 1`] = `"{"type":"View","props":{"accessible":true,"accessibilityLabel":"Press me!","accessibilityState":{"disabled":false},"accessibilityValue":{},"style":{"paddingHorizontal":14,"justifyContent":"center","height":48,"borderRadius":4,"marginBottom":12,"backgroundColor":"#1d74f5","opacity":1},"testID":"testButton","focusable":true,"collapsable":false},"children":[{"type":"Text","props":{"style":[{"textAlign":"center","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"500"},{"color":"#ffffff","fontSize":16},null]},"children":["Press me!"]}]}"`;
|
||||
|
||||
exports[`Storyshots Button Secondary Button 1`] = `"{"type":"View","props":{"accessible":true,"accessibilityLabel":"Press me!","accessibilityState":{"disabled":false},"accessibilityValue":{},"style":{"paddingHorizontal":14,"justifyContent":"center","height":48,"borderRadius":4,"marginBottom":12,"backgroundColor":"#ffffff","opacity":1},"testID":"testButton","focusable":true,"collapsable":false},"children":[{"type":"Text","props":{"style":[{"textAlign":"center","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"500"},{"color":"#2f343d","fontSize":16},null]},"children":["Press me!"]}]}"`;
|
|
@ -0,0 +1,5 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Chip Chip Without Avatar 1`] = `"{"type":"View","props":{"style":{"flex":1,"alignItems":"flex-start","padding":16}},"children":[{"type":"View","props":{"accessible":true,"accessibilityState":{"disabled":false},"focusable":true,"accessibilityValue":{},"style":[{"paddingHorizontal":8,"marginRight":8,"borderRadius":4,"justifyContent":"center","maxWidth":192},{"backgroundColor":"#efeff4"},null],"collapsable":false},"children":[{"type":"View","props":{"style":{"flexDirection":"row","alignItems":"center"}},"children":[{"type":"View","props":{"style":{"marginRight":8,"maxWidth":120}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"500"},{"color":"#2f343d"}],"numberOfLines":1},"children":["Without Avatar"]}]},{"type":"Text","props":{},"children":null}]}]}]}"`;
|
||||
|
||||
exports[`Storyshots Chip Chip Without Avatar And Icon 1`] = `"{"type":"View","props":{"style":{"flex":1,"alignItems":"flex-start","padding":16}},"children":[{"type":"View","props":{"accessible":true,"accessibilityState":{"disabled":true},"focusable":true,"accessibilityValue":{},"style":[{"paddingHorizontal":8,"marginRight":8,"borderRadius":4,"justifyContent":"center","maxWidth":192},{"backgroundColor":"#efeff4"},null],"collapsable":false},"children":[{"type":"View","props":{"style":{"flexDirection":"row","alignItems":"center"}},"children":[{"type":"View","props":{"style":{"marginRight":8,"maxWidth":120}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"500"},{"color":"#2f343d"}],"numberOfLines":1},"children":["Without Avatar and Icon"]}]}]}]}]}"`;
|
|
@ -0,0 +1,3 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Collapsible Text Item 1`] = `"{"type":"View","props":{"style":{"padding":20}},"children":[{"type":"Text","props":{"accessibilityLabel":"Lorem ipsum dolor sit amet","style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400","textAlignVertical":"center"},{"color":"#2f343d","height":0}],"testID":"collapsible-text-Lorem ipsum dolor sit amet"},"children":["Lorem ipsum dolor sit amet"]},{"type":"Text","props":{"accessibilityLabel":"linesToTruncate: 1 - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel vestibulum neque. Proin dignissim neque in urna nec.","style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400","textAlignVertical":"center"},{"color":"#2f343d","height":0}],"testID":"collapsible-text-linesToTruncate: 1 - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel vestibulum neque. Proin dignissim neque in urna nec."},"children":["linesToTruncate: 1 - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel vestibulum neque. Proin dignissim neque in urna nec."]},{"type":"Text","props":{"accessibilityLabel":"linesToTruncate: 2 - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel vestibulum neque. Proin dignissim neque in urna nec.","style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400","textAlignVertical":"center"},{"color":"#2f343d","height":0}],"testID":"collapsible-text-linesToTruncate: 2 - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel vestibulum neque. Proin dignissim neque in urna nec."},"children":["linesToTruncate: 2 - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam vel vestibulum neque. Proin dignissim neque in urna nec."]}]}"`;
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,3 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots SearchBox Basic 1`] = `"{"type":"View","props":{"testID":"searchbox","style":{"backgroundColor":"#ffffff"}},"children":[{"type":"View","props":{"style":[{"marginBottom":10},{"margin":16,"marginBottom":16}]},"children":[{"type":"View","props":{"style":{"position":"relative","justifyContent":"center"}},"children":[{"type":"TextInput","props":{"style":[{"color":"#0d0e12"},[{"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400","height":48,"fontSize":16,"paddingHorizontal":16,"paddingVertical":10,"borderWidth":1,"borderRadius":4},null,{"paddingRight":45},{"backgroundColor":"#ffffff","borderColor":"#cbcbcc","color":"#0d0e12"},null,null],{"textAlign":"auto"}],"placeholderTextColor":"#9ca2a8","keyboardAppearance":"light","autoCorrect":false,"autoCapitalize":"none","underlineColorAndroid":"transparent","accessibilityLabel":"Search","placeholder":"Search","value":"","blurOnSubmit":true,"returnKeyType":"search"},"children":null},{"type":"Text","props":{"selectable":false,"allowFontScaling":false,"style":[{"fontSize":20,"color":"#2f343d"},[{"lineHeight":20},[{"position":"absolute"},{"right":12}]],{"fontFamily":"custom","fontWeight":"normal","fontStyle":"normal"},{}]},"children":[""]}]}]}]}"`;
|
|
@ -0,0 +1,7 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots ServerItem Content 1`] = `"[{"type":"View","props":{"testID":"rooms-list-header-server-https://open.rocket.chat/","accessible":true,"accessibilityState":{},"focusable":true,"accessibilityValue":{},"style":{"backgroundColor":"#ffffff"},"collapsable":false},"children":[{"type":"View","props":{"style":{"flexDirection":"row","alignItems":"center"}},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":44,"height":44,"margin":12,"borderRadius":4,"resizeMode":"contain"}]},"children":[{"type":"FastImageView","props":{"defaultSource":"test-file-stub","style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]},{"type":"View","props":{"style":{"flex":1,"flexDirection":"column","justifyContent":"center","paddingRight":18}},"children":[{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":18,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600"},{"color":"#0d0e12"}]},"children":["Rocket.Chat"]},{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#9ca2a8"}]},"children":["https://open.rocket.chat/"]}]},{"type":"Text","props":{"selectable":false,"allowFontScaling":false,"style":[{"fontSize":22,"color":"#1d74f5"},[{"lineHeight":22},{"width":22,"height":22,"marginHorizontal":15}],{"fontFamily":"custom","fontWeight":"normal","fontStyle":"normal"},{}]},"children":[""]}]}]},{"type":"View","props":{"testID":"rooms-list-header-server-https://superlongservername.tologintoasuperlongservername/","accessible":true,"accessibilityState":{},"focusable":true,"accessibilityValue":{},"style":{"backgroundColor":"#ffffff"},"collapsable":false},"children":[{"type":"View","props":{"style":{"flexDirection":"row","alignItems":"center"}},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":44,"height":44,"margin":12,"borderRadius":4,"resizeMode":"contain"}]},"children":[{"type":"FastImageView","props":{"defaultSource":"test-file-stub","style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]},{"type":"View","props":{"style":{"flex":1,"flexDirection":"column","justifyContent":"center","paddingRight":18}},"children":[{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":18,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600"},{"color":"#0d0e12"}]},"children":["Super Long Server Name in Rocket.Chat"]},{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#9ca2a8"}]},"children":["https://superlongservername.tologintoasuperlongservername/"]}]}]}]},{"type":"View","props":{"testID":"rooms-list-header-server-https://stable.rocket.chat/","accessible":true,"accessibilityState":{},"focusable":true,"accessibilityValue":{},"style":{"backgroundColor":"#ffffff"},"collapsable":false},"children":[{"type":"View","props":{"style":{"flexDirection":"row","alignItems":"center"}},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":44,"height":44,"margin":12,"borderRadius":4,"resizeMode":"contain"}]},"children":[{"type":"FastImageView","props":{"defaultSource":"test-file-stub","style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]},{"type":"View","props":{"style":{"flex":1,"flexDirection":"column","justifyContent":"center","paddingRight":18}},"children":[{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":18,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600"},{"color":"#0d0e12"}]},"children":["Rocket.Chat"]},{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#9ca2a8"}]},"children":["https://stable.rocket.chat/"]}]}]}]}]"`;
|
||||
|
||||
exports[`Storyshots ServerItem Themes 1`] = `"[{"type":"View","props":{"testID":"rooms-list-header-server-https://open.rocket.chat/","accessible":true,"accessibilityState":{},"focusable":true,"accessibilityValue":{},"style":{"backgroundColor":"#ffffff"},"collapsable":false},"children":[{"type":"View","props":{"style":{"flexDirection":"row","alignItems":"center"}},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":44,"height":44,"margin":12,"borderRadius":4,"resizeMode":"contain"}]},"children":[{"type":"FastImageView","props":{"defaultSource":"test-file-stub","style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]},{"type":"View","props":{"style":{"flex":1,"flexDirection":"column","justifyContent":"center","paddingRight":18}},"children":[{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":18,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600"},{"color":"#0d0e12"}]},"children":["Rocket.Chat"]},{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#9ca2a8"}]},"children":["https://open.rocket.chat/"]}]}]}]},{"type":"View","props":{"testID":"rooms-list-header-server-https://open.rocket.chat/","accessible":true,"accessibilityState":{},"focusable":true,"accessibilityValue":{},"style":{"backgroundColor":"#030b1b"},"collapsable":false},"children":[{"type":"View","props":{"style":{"flexDirection":"row","alignItems":"center"}},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":44,"height":44,"margin":12,"borderRadius":4,"resizeMode":"contain"}]},"children":[{"type":"FastImageView","props":{"defaultSource":"test-file-stub","style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]},{"type":"View","props":{"style":{"flex":1,"flexDirection":"column","justifyContent":"center","paddingRight":18}},"children":[{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":18,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600"},{"color":"#f9f9f9"}]},"children":["Rocket.Chat"]},{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#9297a2"}]},"children":["https://open.rocket.chat/"]}]}]}]},{"type":"View","props":{"testID":"rooms-list-header-server-https://open.rocket.chat/","accessible":true,"accessibilityState":{},"focusable":true,"accessibilityValue":{},"style":{"backgroundColor":"#000000"},"collapsable":false},"children":[{"type":"View","props":{"style":{"flexDirection":"row","alignItems":"center"}},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":44,"height":44,"margin":12,"borderRadius":4,"resizeMode":"contain"}]},"children":[{"type":"FastImageView","props":{"defaultSource":"test-file-stub","style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]},{"type":"View","props":{"style":{"flex":1,"flexDirection":"column","justifyContent":"center","paddingRight":18}},"children":[{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":18,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600"},{"color":"#f9f9f9"}]},"children":["Rocket.Chat"]},{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#b2b8c6"}]},"children":["https://open.rocket.chat/"]}]}]}]}]"`;
|
||||
|
||||
exports[`Storyshots ServerItem Touchable 1`] = `"{"type":"View","props":{"testID":"rooms-list-header-server-https://open.rocket.chat/","accessible":true,"accessibilityState":{},"focusable":true,"accessibilityValue":{},"style":{"backgroundColor":"#ffffff"},"collapsable":false},"children":[{"type":"View","props":{"style":{"flexDirection":"row","alignItems":"center"}},"children":[{"type":"View","props":{"style":[{"overflow":"hidden"},{"width":44,"height":44,"margin":12,"borderRadius":4,"resizeMode":"contain"}]},"children":[{"type":"FastImageView","props":{"defaultSource":"test-file-stub","style":{"position":"absolute","left":0,"right":0,"top":0,"bottom":0},"resizeMode":"cover"},"children":null}]},{"type":"View","props":{"style":{"flex":1,"flexDirection":"column","justifyContent":"center","paddingRight":18}},"children":[{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":18,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600"},{"color":"#0d0e12"}]},"children":["Rocket.Chat"]},{"type":"Text","props":{"numberOfLines":1,"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#9ca2a8"}]},"children":["https://open.rocket.chat/"]}]}]}]}"`;
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,27 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Action - Buttons 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Action - Select 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Context 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Fields 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Image 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + DatePicker 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + Markdown List 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + Multi Select 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + Overflow 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + Select 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + button 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section + image 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitMessage Section 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
|
@ -0,0 +1,23 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Actions 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Contexts and Dividers 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - DatePicker with error 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Form Input 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Form TextArea 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Images 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Input with error 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Multi Select Input 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Multilne with error 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Section and Accessories 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots UIKit/UiKitModal Modal - Section and Selects 1`] = `"{"type":"RCTScrollView","props":{"style":[{"flex":1,"backgroundColor":"#fff"},{"paddingHorizontal":16}],"keyboardShouldPersistTaps":"always"},"children":[{"type":"View","props":{},"children":null}]}"`;
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,19 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots NewMarkdown Block Quote 1`] = `"{"type":"View","props":{"style":{"marginHorizontal":15,"backgroundColor":"#ffffff","marginVertical":50}},"children":[{"type":"View","props":{"style":{"alignItems":"flex-start","flexDirection":"row"}},"children":[{"type":"View","props":{"style":[{"height":"100%","width":2,"marginRight":5},{"backgroundColor":"#e1e5e8"}]},"children":null},{"type":"View","props":{"style":{"flex":1}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"accessibilityLabel":"Rocket.Chat to the moon","style":{"fontSize":16,"flexShrink":1}},"children":["Rocket.Chat to the moon"]}]}]}]}]},{"type":"View","props":{"style":{"alignItems":"flex-start","flexDirection":"row"}},"children":[{"type":"View","props":{"style":[{"height":"100%","width":2,"marginRight":5},{"backgroundColor":"#e1e5e8"}]},"children":null},{"type":"View","props":{"style":{"flex":1}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"accessibilityLabel":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries","style":{"fontSize":16,"flexShrink":1}},"children":["Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries"]}]}]}]}]}]}"`;
|
||||
|
||||
exports[`Storyshots NewMarkdown Code 1`] = `"{"type":"View","props":{"style":{"marginHorizontal":15,"backgroundColor":"#ffffff","marginVertical":50}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Courier New","fontWeight":"400","borderWidth":1,"borderRadius":4,"paddingLeft":2,"paddingTop":2},{"color":"#2f343d","backgroundColor":"#f1f2f4","borderColor":"#e1e5e8"}]},"children":[{"type":"Text","props":{},"children":["inline code"]}]}]}]},{"type":"View","props":{"style":[{"borderWidth":1,"borderRadius":4,"padding":4},{"backgroundColor":"#f1f2f4","borderColor":"#e1e5e8"}]},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Courier New","fontWeight":"400"},{"color":"#2f343d"}]},"children":["Multi \\nLine \\nCode"]}]}]}"`;
|
||||
|
||||
exports[`Storyshots NewMarkdown Headers 1`] = `"{"type":"View","props":{"style":{"marginHorizontal":15,"backgroundColor":"#ffffff","marginVertical":50}},"children":[{"type":"Text","props":{"style":[{"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"700","fontSize":24},{"color":"#2f343d"}]},"children":["# Header 1"]},{"type":"Text","props":{"style":[{"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"700","fontSize":22},{"color":"#2f343d"}]},"children":["## Header 2"]},{"type":"Text","props":{"style":[{"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600","fontSize":20},{"color":"#2f343d"}]},"children":["### Header 3"]},{"type":"Text","props":{"style":[{"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600","fontSize":18},{"color":"#2f343d"}]},"children":["#### Header 4"]},{"type":"Text","props":{"style":[{"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"500","fontSize":16},{"color":"#2f343d"}]},"children":["##### Header 5"]},{"type":"Text","props":{"style":[{"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"500","fontSize":14},{"color":"#2f343d"}]},"children":["###### Header 6"]}]}"`;
|
||||
|
||||
exports[`Storyshots NewMarkdown Inline Katex 1`] = `"{"type":"View","props":{"style":{"marginHorizontal":15,"backgroundColor":"#ffffff","marginVertical":50}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{},"children":["This text includes math notations and should be wrapped correctly for $\\\\alpha$ and $\\\\beta$ within the view."]},{"type":"Text","props":{},"children":["The following formula shouldn't be inline:$$x_{1,2} = {-b \\\\pm \\\\sqrt{b^2-4ac} \\\\over 2a}$$"]},{"type":"Text","props":{},"children":["However the following formula should be inline with the text: \\\\( a^2 + b^2 = c^2 \\\\)"]}]}]}]}"`;
|
||||
|
||||
exports[`Storyshots NewMarkdown Katex 1`] = `"{"type":"View","props":{"style":{"marginHorizontal":15,"backgroundColor":"#ffffff","marginVertical":50}},"children":[{"type":"View","props":{"math":" f(x) = \\\\int_{-\\\\infty}^\\\\infty \\\\hat f(\\\\xi)\\\\,e^{2 \\\\pi i \\\\xi x} \\\\,d\\\\xi ","style":{"color":"#2f343d"}},"children":null}]}"`;
|
||||
|
||||
exports[`Storyshots NewMarkdown Links 1`] = `"{"type":"View","props":{"style":{"marginHorizontal":15,"backgroundColor":"#ffffff","marginVertical":50}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#1d74f5"}]},"children":["Markdown link"]}]}]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#1d74f5"}]},"children":["Normal Link - ",{"type":"Text","props":{"style":{"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"700"}},"children":[{"type":"Text","props":{"accessibilityLabel":"Bold","style":{"fontSize":16,"flexShrink":1}},"children":["Bold"]}]}," ",{"type":"Text","props":{"style":{"textDecorationLine":"line-through"}},"children":[{"type":"Text","props":{"accessibilityLabel":"strike","style":{"fontSize":16,"flexShrink":1}},"children":["strike"]}]}," and ",{"type":"Text","props":{"style":{"fontStyle":"italic"}},"children":[{"type":"Text","props":{"accessibilityLabel":"Italic","style":{"fontSize":16,"flexShrink":1}},"children":["Italic"]}]}," Styles"]}]}]}]}"`;
|
||||
|
||||
exports[`Storyshots NewMarkdown Mentions 1`] = `"{"type":"View","props":{"style":{"marginHorizontal":15,"backgroundColor":"#ffffff","marginVertical":50}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600"},{"color":"#F5455C"}]},"children":["rocket.cat"]}]}]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600"},{"color":"#F3BE08"}]},"children":["name"]},{"type":"Text","props":{"accessibilityLabel":" ","style":{"fontSize":16,"flexShrink":1}},"children":[" "]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600"},{"color":"#F5455C"}]},"children":["rocket.cat"]},{"type":"Text","props":{"accessibilityLabel":" ","style":{"fontSize":16,"flexShrink":1}},"children":[" "]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":["@not_a_user"]},{"type":"Text","props":{"accessibilityLabel":" ","style":{"fontSize":16,"flexShrink":1}},"children":[" "]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600"},{"color":"#F38C39"}]},"children":["here"]},{"type":"Text","props":{"accessibilityLabel":" ","style":{"fontSize":16,"flexShrink":1}},"children":[" "]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"600"},{"color":"#F38C39"}]},"children":["all"]}]}]}]}"`;
|
||||
|
||||
exports[`Storyshots NewMarkdown Message Quote 1`] = `"{"type":"View","props":{"style":{"marginHorizontal":15,"backgroundColor":"#ffffff","marginVertical":50}},"children":[{"type":"Text","props":{"style":[{"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"700","fontSize":24},{"color":"#2f343d"}]},"children":["Hello head 1"]},{"type":"View","props":{"style":{"height":8}},"children":null},{"type":"Text","props":{"style":[{"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"700","fontSize":24},{"color":"#2f343d"}]},"children":["Head 1 as the first line then line break and after paragraph"]},{"type":"View","props":{"style":{"height":8}},"children":null},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"accessibilityLabel":"bla bla bla bla bla bla ","style":{"fontSize":16,"flexShrink":1}},"children":["bla bla bla bla bla bla "]}]}]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"accessibilityLabel":"bla bla bla bla bla bla ","style":{"fontSize":16,"flexShrink":1}},"children":["bla bla bla bla bla bla "]}]}]},{"type":"Text","props":{"style":[{"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"700","fontSize":24},{"color":"#2f343d"}]},"children":["Head 1 after a forced line break"]},{"type":"View","props":{"style":{"height":8}},"children":null},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"accessibilityLabel":"Description","style":{"fontSize":16,"flexShrink":1}},"children":["Description"]}]}]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#1d74f5"}]},"children":null},{"type":"Text","props":{"accessibilityLabel":"","style":{"fontSize":16,"flexShrink":1}},"children":null},{"type":"Text","props":{"style":{"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"700"}},"children":[{"type":"Text","props":{"accessibilityLabel":"There is a link before this bold separated by single space","style":{"fontSize":16,"flexShrink":1}},"children":["There is a link before this bold separated by single space"]}]}]}]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"accessibilityLabel":"Quoting a message wrote before","style":{"fontSize":16,"flexShrink":1}},"children":["Quoting a message wrote before"]}]}]}]}"`;
|
||||
|
||||
exports[`Storyshots NewMarkdown Text 1`] = `"{"type":"View","props":{"style":{"marginHorizontal":15,"backgroundColor":"#ffffff","marginVertical":50}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"accessibilityLabel":"This is Rocket.Chat","style":{"fontSize":16,"flexShrink":1}},"children":["This is Rocket.Chat"]}]}]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"accessibilityLabel":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries","style":{"fontSize":16,"flexShrink":1}},"children":["Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries"]}]}]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"accessibilityLabel":"a","style":{"fontSize":16,"flexShrink":1}},"children":["a"]},{"type":"Text","props":{"accessibilityLabel":"b","style":{"fontSize":16,"flexShrink":1}},"children":["b"]},{"type":"Text","props":{"accessibilityLabel":"c","style":{"fontSize":16,"flexShrink":1}},"children":["c"]},{"type":"Text","props":{"accessibilityLabel":"","style":{"fontSize":16,"flexShrink":1}},"children":null},{"type":"Text","props":{"accessibilityLabel":"d","style":{"fontSize":16,"flexShrink":1}},"children":["d"]},{"type":"Text","props":{"accessibilityLabel":"","style":{"fontSize":16,"flexShrink":1}},"children":null},{"type":"Text","props":{"accessibilityLabel":"","style":{"fontSize":16,"flexShrink":1}},"children":null},{"type":"Text","props":{"accessibilityLabel":"e","style":{"fontSize":16,"flexShrink":1}},"children":["e"]}]}]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"accessibilityLabel":"a b c","style":{"fontSize":16,"flexShrink":1}},"children":["a b c"]}]}]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"accessibilityLabel":"This is Rocket.Chat","style":{"fontSize":16,"flexShrink":1}},"children":["This is Rocket.Chat"]}]}]},{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"style":{"flexShrink":1}},"children":[{"type":"Text","props":{"accessibilityLabel":"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries","style":{"fontSize":16,"flexShrink":1}},"children":["Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries"]}]}]}]}"`;
|
|
@ -0,0 +1,3 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots CollapsibleQuote Item 1`] = `"{"type":"View","props":{"style":{"padding":10}},"children":[{"type":"View","props":{"accessible":true,"accessibilityState":{},"accessibilityValue":{},"style":{"flexDirection":"row","alignItems":"center","marginTop":6,"borderWidth":1,"borderRadius":4,"minHeight":40,"backgroundColor":"#f3f4f5","borderLeftColor":"#CBCED1","borderTopColor":"#e1e5e8","borderRightColor":"#e1e5e8","borderBottomColor":"#e1e5e8","borderLeftWidth":2,"opacity":1},"testID":"collapsibleQuoteTouchable-Engineering (9 today)","hitSlop":{"top":4,"right":4,"bottom":4,"left":4},"focusable":true,"collapsable":false},"children":[{"type":"View","props":{"style":{"flexDirection":"row"}},"children":[{"type":"View","props":{"style":{"flex":1,"borderRadius":4,"padding":8}},"children":[{"type":"View","props":{"style":{"flexDirection":"row"}},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"500"},{"color":"#6C727A"}]},"children":["Engineering (9 today)"]}]}]},{"type":"View","props":{"style":{"width":20,"height":20,"right":8,"top":8,"justifyContent":"center","alignItems":"center"}},"children":[{"type":"Text","props":{"selectable":false,"allowFontScaling":false,"style":[{"fontSize":22,"color":"#6C727A"},[{"lineHeight":22},null],{"fontFamily":"custom","fontWeight":"normal","fontStyle":"normal"},{}]},"children":[""]}]}]}]}]}"`;
|
|
@ -0,0 +1,3 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Message Without Header 1`] = `"{"type":"RCTScrollView","props":{"style":{"backgroundColor":"#ffffff"}},"children":[{"type":"View","props":{},"children":[{"type":"View","props":{"accessible":true,"accessibilityState":{"disabled":false},"accessibilityValue":{},"style":{"opacity":1},"focusable":true,"collapsable":false},"children":[{"type":"View","props":{},"children":[{"type":"View","props":{"style":[{"paddingVertical":4,"width":"100%","paddingHorizontal":14,"flexDirection":"column"},null]},"children":[{"type":"View","props":{"style":{"flexDirection":"row"}},"children":[{"type":"View","props":{"style":[{"flex":1,"marginLeft":46},false]},"children":[{"type":"View","props":{},"children":[{"type":"Text","props":{"style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#2f343d"}]},"children":[{"type":"Text","props":{"accessibilityLabel":"Message","style":[{"fontSize":16,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},[{},{"marginTop":0,"marginBottom":0,"flexWrap":"wrap","flexDirection":"row","alignItems":"flex-start","justifyContent":"flex-start"}]]},"children":["Message"]}]}]}]},{"type":"View","props":{"style":{"flexDirection":"row"}},"children":null}]}]}]}]}]}]}"`;
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,3 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots SwitchItem Switch 1`] = `"{"type":"View","props":{"style":{"flex":1,"alignItems":"flex-start","padding":16}},"children":[{"type":"View","props":{"style":[{"minHeight":54,"alignItems":"center","justifyContent":"space-between","flexDirection":"row","maxHeight":80,"marginBottom":12},{"backgroundColor":"#ffffff"}]},"children":[{"type":"View","props":{"style":{"flex":1,"marginRight":8}},"children":[{"type":"Text","props":{"style":[{"fontSize":14,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"500"},{"color":"#0d0e12"}]},"children":["[missing \\"en.Onboarding_title\\" translation]"]},{"type":"Text","props":{"testID":"create-channel-switch-id-hint","style":[{"fontSize":14,"textAlign":"left","backgroundColor":"transparent","fontFamily":"Inter","fontWeight":"400"},{"color":"#9ca2a8"}]},"children":["Only authorized users can write new messages"]}]},{"type":"RCTSwitch","props":{"testID":"create-channel-switch-id","disabled":false,"onTintColor":"#2de0a5","style":{"height":31,"width":51},"tintColor":"#f5455c","value":false,"accessibilityRole":"switch"},"children":null}]}]}"`;
|
|
@ -1,16 +1,20 @@
|
|||
const path = require('path');
|
||||
const { generate } = require('@storybook/react-native/scripts/generate');
|
||||
const defaultSourceExts = require('metro-config/src/defaults/defaults').sourceExts;
|
||||
const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
|
||||
|
||||
/**
|
||||
* Metro configuration
|
||||
* https://facebook.github.io/metro/docs/configuration
|
||||
*
|
||||
* @type {import('metro-config').MetroConfig}
|
||||
*/
|
||||
generate({
|
||||
configPath: path.resolve(__dirname, './.storybook')
|
||||
});
|
||||
|
||||
const sourceExts = [...defaultSourceExts, 'mjs'];
|
||||
|
||||
const config = {
|
||||
transformer: {
|
||||
unstable_allowRequireContext: true
|
||||
},
|
||||
resolver: {
|
||||
resolverMainFields: ['sbmodern', 'react-native', 'browser', 'main'],
|
||||
sourceExts: process.env.RUNNING_E2E_TESTS ? ['mock.ts', ...defaultSourceExts] : defaultSourceExts
|
||||
sourceExts: process.env.RUNNING_E2E_TESTS ? ['mock.ts', ...sourceExts] : sourceExts
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"scripts": {
|
||||
"start": "react-native start",
|
||||
"test": "jest",
|
||||
"test-update": "sb-rn-get-stories && jest --updateSnapshot",
|
||||
"test-update": "jest --updateSnapshot",
|
||||
"lint": "eslint . && tsc",
|
||||
"prettier-lint": "prettier --write . && yarn lint",
|
||||
"ios": "npx react-native run-ios",
|
||||
|
@ -169,9 +169,8 @@
|
|||
"@react-native/metro-config": "0.73.5",
|
||||
"@react-native/typescript-config": "0.73.1",
|
||||
"@rocket.chat/eslint-config": "^0.4.0",
|
||||
"@storybook/addon-storyshots": "6.3",
|
||||
"@storybook/react": "6.3",
|
||||
"@storybook/react-native": "^6.0.1-beta.7",
|
||||
"@storybook/react": "^7.6.10",
|
||||
"@storybook/react-native": "^7.6.17",
|
||||
"@testing-library/react-hooks": "^8.0.1",
|
||||
"@testing-library/react-native": "^12.4.3",
|
||||
"@types/bytebuffer": "^5.0.44",
|
||||
|
|
Loading…
Reference in New Issue