forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUrlExample.js
93 lines (86 loc) · 2.72 KB
/
UrlExample.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
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @flow
*/
'use strict';
import type {RNTesterModuleExample} from '../../types/RNTesterTypes';
import RNTesterText from '../../components/RNTesterText';
import React from 'react';
import {StyleSheet, View} from 'react-native';
type Props = {
url: string,
};
function URLComponent(props: Props) {
const parsedUrl = new URL(props.url);
return (
<View style={styles.container}>
<RNTesterText testID="URL-href">{`href: ${parsedUrl.href}`}</RNTesterText>
<RNTesterText testID="URL-hash">{`hash: ${parsedUrl.hash}`}</RNTesterText>
<RNTesterText testID="URL-host">{`host: ${parsedUrl.host}`}</RNTesterText>
<RNTesterText testID="URL-hostname">{`hostname: ${parsedUrl.hostname}`}</RNTesterText>
<RNTesterText testID="URL-password">{`password: ${parsedUrl.password}`}</RNTesterText>
<RNTesterText testID="URL-username">{`username: ${parsedUrl.username}`}</RNTesterText>
<RNTesterText testID="URL-pathname">{`pathname: ${parsedUrl.pathname}`}</RNTesterText>
<RNTesterText testID="URL-port">{`port: ${parsedUrl.port}`}</RNTesterText>
<RNTesterText testID="URL-search">{`search: ${parsedUrl.search}`}</RNTesterText>
<RNTesterText testID="URL-search-params">{`searchParams: ${parsedUrl.searchParams.toString()}`}</RNTesterText>
</View>
);
}
const styles = StyleSheet.create({
container: {
padding: 10,
},
});
exports.title = 'URL';
exports.category = 'Basic';
exports.description = 'URL Parameters test';
exports.examples = [
{
title: 'completeURL',
description: 'URL with username,password,port,and queryparams',
render(): React.Node {
return (
<URLComponent
url={
'https://username:[email protected]:8080/docs/path?query=testQuery&key=value#fragment'
}
/>
);
},
},
{
title: 'basicURL',
description: 'Basic URL without username, password, or port',
render(): React.Node {
return <URLComponent url={'https://reactnative.dev/docs/path'} />;
},
},
{
title: 'queryParamsURL',
description: 'URL with query parameters',
render(): React.Node {
return (
<URLComponent
url={'https://reactnative.dev/docs/path?query=testQuery&key=value'}
/>
);
},
},
{
title: 'authAndPortURL',
description: 'URL with username, password, and port',
render(): React.Node {
return (
<URLComponent
/>
);
},
},
] as Array<RNTesterModuleExample>;