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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
import React, { Component } from 'react';
import {
ScrollView,
StyleSheet,
TouchableOpacity,
Image,
View,
RefreshControl,
} from 'react-native';
import HTMLView from 'react-native-htmlview'
import htmlStyles from '../components/htmlStyles'
import ClearText from '../components/text'
import Heading from '../components/heading'
import Definition from '../components/definition'
import Close from '../components/close'
export default class TimelineFull extends Component {
constructor() {
super()
this.onRefresh = this.onRefresh.bind(this)
this.onPickTag = this.onPickTag.bind(this)
}
onRefresh() {
this.props.onClose()
}
onPickTag(tag) {
this.props.onFilter(tag)
}
render() {
const item = this.props.item
let image, links;
if (! item) {
return ( <View></View> )
}
if (item.image) {
const caption = item.credit ? (
<ClearText style={styles.caption}>{item.credit}</ClearText>
) : (
<View></View>
)
const originalWidth = Number(item.image.width)
const originalHeight = Number(item.image.height)
const height = originalHeight > 450 ? 450 : originalHeight
const width = originalWidth * height / originalHeight
image = (
<View style={styles.imageContainer}>
<View style={styles.imageWrapper}>
<img src={item.image.uri}
style={[styles.image, {
width: width,
height: height,
}]} />
</View>
{caption}
</View>
)
} else {
image = ( <View></View> )
}
if (item.links.length) {
const linkItems = item.links.map((link, i) => {
const url = link.uri
let name = link.text
if (! name || name.match(/Link Text/i)) {
name = linkTextFromUrl(url)
}
return (
<TouchableOpacity key={'link_' + i} onPress={() => this.props.onLinkPress(url)}>
<ClearText style={styles.link}>{name}</ClearText>
</TouchableOpacity>
)
})
links = (
<Definition label='Links' contentIsView={true}>{linkItems}</Definition>
)
}
const tags = item.keywords.map((tag, i) => {
return `<a href='${tag}'>${tag}</a>`
}).join(', ')
const description = '<p>' + item.description + '</p>'
return (
<View style={styles.container}>
<ScrollView
contentContainerStyle={styles.item}
horizontal={false}
showsHorizontalScrollIndicator={false}
>
{image}
<Heading style={styles.title}>{item.title}</Heading>
<View style={styles.contentContainer}>
<View style={styles.bodyContainer}>
<HTMLView value={description} style={styles.description} stylesheet={htmlStyles} onLinkPress={this.props.onLinkPress} />
</View>
<View style={styles.metadataContainer}>
<Definition label='Date'>{item.date}</Definition>
<Definition label='Medium'>{item.medium}</Definition>
<Definition label='Category' contentIsView={true}>
<TouchableOpacity onPress={() => this.onPickTag(item.category)}>
<ClearText style={styles.link}>{item.category}</ClearText>
</TouchableOpacity>
</Definition>
<Definition label='Tags' contentIsView={true}>
<HTMLView value={'<p>' + tags + '</p>'} stylesheet={tagHTMLStyles} onLinkPress={this.onPickTag} />
</Definition>
{links}
</View>
</View>
</ScrollView>
<Close onPress={this.props.onClose} />
</View>
)
}
}
function linkTextFromUrl (url) {
const url_parts = url.split('/')
const domain = url_parts[2]
const terms = domain.split('.')
const len = terms.length
let term = (len > 2 && terms[len-1].length == 2) ? terms[len-3] : terms[len-2]
if (term == 'wikipedia') {
term += url_parts[4].replace(/\#.*/,'').replace('_', ' ')
}
return capitalize(term)
}
function capitalize (s){
return s.charAt(0).toUpperCase() + s.slice(1)
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
scrollView: {
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0,
backgroundColor: 'black',
},
item: {
maxWidth: 1000,
padding: 40,
},
imageContainer: {
width: '100%',
marginBottom: 10,
alignItems: 'center',
},
imageWrapper: {
width: '100%',
marginBottom: 5,
alignItems: 'center',
},
caption: {
fontSize: 12,
},
bodyContainer: {
left: '0%',
width: '60%',
paddingRight: 50,
},
metadataContainer: {
position: 'absolute',
left: '60%',
width: '40%',
},
title: {
textAlign: 'left',
fontWeight: 'bold',
fontSize: 18,
},
date: {
textAlign: 'left',
},
description: {
flex: 1,
flexDirection: 'column',
},
link: {
textDecorationLine: 'underline',
textAlign: 'left',
},
tag: {
marginRight: 5,
},
})
const tagHTMLStyles = StyleSheet.create({
p: {
color: 'white',
fontFamily: 'Futura-Medium',
textAlign: 'justify',
fontSize: 16,
lineHeight: 30,
},
b: {
fontFamily: 'Futura-MediumItalic',
color: 'white',
fontSize: 16,
lineHeight: 30,
},
i: {
fontFamily: 'Futura-MediumItalic',
color: 'white',
fontSize: 16,
lineHeight: 30,
},
a: {
color: 'white',
fontFamily: 'Futura-Medium',
textDecorationLine: 'underline',
fontSize: 16,
lineHeight: 30,
},
})
|