-
Notifications
You must be signed in to change notification settings - Fork 2k
/
FileList.js
126 lines (117 loc) · 2.66 KB
/
FileList.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import React from 'react'
import { StyleSheet, View, FlatList, Text, Image } from 'react-native'
import getFileTypeIcon from '@uppy/dashboard/lib/utils/getFileTypeIcon.js'
import renderStringFromJSX from 'preact-render-to-string'
const fileIcon = require('./assets/file-icon.png')
const truncateString = (str) => {
const maxChars = 20
if (str.length > maxChars) {
return `${str.substring(0, 25)}...`
}
return str
}
function FileIcon () {
return (
<View style={styles.itemIconContainer}>
<Image
style={styles.itemIcon}
source={fileIcon}
/>
</View>
)
}
function UppyDashboardFileIcon ({ type }) {
const icon = renderStringFromJSX(getFileTypeIcon(type).icon)
if (!icon) {
return <FileIcon />
}
const { color } = getFileTypeIcon(type)
return (
<View
style={{
...styles.itemIconContainer,
backgroundColor: color,
}}
>
<Text style={styles.itemType}>logo</Text>
</View>
)
}
export default function FileList ({ uppy }) {
const uppyFiles = uppy.store.state.files
const uppyFilesArray = Object.keys(uppyFiles).map((id) => uppyFiles[id])
return (
<View style={styles.container}>
<FlatList
data={uppyFilesArray}
keyExtractor={(item) => item.id}
numColumns={2}
renderItem={({ item }) => {
return (
<View style={styles.item}>
{item.type === 'image' ? (
<Image
style={styles.itemImage}
source={{ uri: item.data.uri }}
/>
) : (
<UppyDashboardFileIcon type={item.type} />
)}
<Text style={styles.itemName}>{truncateString(item.name, 20)}</Text>
<Text style={styles.itemType}>{item.type}</Text>
</View>
)
}}
/>
</View>
)
}
const styles = StyleSheet.create({
container: {
marginTop: 20,
marginBottom: 20,
flex: 1,
justifyContent: 'center',
alignItems:'center',
marginRight: -25,
},
item: {
width: 100,
marginTop: 5,
marginBottom: 15,
marginRight: 25,
},
itemImage: {
width: 100,
height: 100,
borderRadius: 5,
marginBottom: 5,
},
itemIconContainer: {
width: 100,
height: 100,
borderRadius: 5,
marginBottom: 5,
backgroundColor: '#cfd3d6',
alignItems: 'center',
justifyContent: 'center',
},
itemIcon: {
width: 42,
height: 56,
},
itemIconSVG: {
width: 50,
height: 50,
},
itemName: {
fontSize: 13,
color: '#2c3e50',
fontWeight: '600',
},
itemType: {
fontWeight: '600',
fontSize: 12,
color: '#95a5a6',
},
})