This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathstories.js
94 lines (87 loc) · 2.58 KB
/
stories.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
* Backpack - Skyscanner's Design System
*
* Copyright 2016-2021 Skyscanner Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* @flow */
import React from 'react';
import { StyleSheet, Animated } from 'react-native';
import { spacingLg } from '@skyscanner/bpk-foundations-react-native/tokens/base.react.native';
import { storiesOf } from '@storybook/react-native';
import CenterDecorator from '../../storybook/CenterDecorator';
import BpkImage, { withLoadingBehaviour } from './index';
const BpkImageWithLoading = withLoadingBehaviour(BpkImage);
const CustomImage = (props) => <Animated.Image isCustom {...props} />;
const styles = StyleSheet.create({
image: {
width: '100%',
height: spacingLg * 10,
},
});
storiesOf('bpk-component-image', module)
.addDecorator(CenterDecorator)
.add('docs:default', () => (
<BpkImage
source={{
uri: 'https://unsplash.com/photos/fZ1gqh4jPgM/download?force=true',
}}
style={styles.image}
/>
))
.add('docs:no-border-radius', () => (
<BpkImage
rounded={false}
source={{
uri: 'https://unsplash.com/photos/NCq2PGvLWKM/download?force=true',
}}
style={styles.image}
/>
))
.add('With Loading Behaviour', () => (
<BpkImageWithLoading
style={styles.image}
source={{
uri: 'https://unsplash.com/photos/7Xl0a6KCDyM/download?force=true',
}}
/>
))
.add('out-of-view', () => (
<BpkImage
inView={false}
loaded={false}
source={{
uri: 'https://unsplash.com/photos/fZ1gqh4jPgM/download?force=true',
}}
style={styles.image}
/>
))
.add('With Custom Image Component', () => (
<BpkImage
imageComponent={CustomImage}
source={{
uri: 'https://unsplash.com/photos/InrNz281-S8/download?force=true',
}}
style={styles.image}
/>
))
.add('With Custom Loading Image Component', () => (
<BpkImageWithLoading
imageComponent={CustomImage}
source={{
uri: 'https://unsplash.com/photos/InrNz281-S8/download?force=true',
}}
style={styles.image}
/>
));