-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathStatusUpdateScreen.js
76 lines (73 loc) · 1.88 KB
/
StatusUpdateScreen.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
/* eslint-disable react/display-name */
import React from "react";
import { Text, Image, TouchableOpacity } from "react-native";
import { StatusUpdateForm } from "expo-activity-feed";
export const navigationOptions = ({ navigation, route }) => ({
title: "NEW POST",
headerLeft: () => (
<TouchableOpacity
style={{ paddingLeft: 15 }}
onPress={() => navigation.goBack()}
>
<Image
style={{ width: 24, height: 24 }}
source={require("../images/icons/close.png")}
/>
</TouchableOpacity>
),
headerRight: () => (
<TouchableOpacity
style={{ paddingRight: 15 }}
onPress={() => route.params.submitFunc()}
>
<Text style={{ color: "#007AFF", fontSize: 17 }}>Send</Text>
</TouchableOpacity>
),
headerTitleStyle: {
fontWeight: "500",
fontSize: 13
}
})
// TODO: Convert to FC
export default class StatusUpdateScreen extends React.Component {
static navigationOptions = ({ navigation }) => ({
title: "NEW POST",
headerLeft: (
<TouchableOpacity
style={{ paddingLeft: 15 }}
onPress={() => navigation.goBack()}
>
<Image
style={{ width: 24, height: 24 }}
source={require("../images/icons/close.png")}
/>
</TouchableOpacity>
),
headerRight: (
<TouchableOpacity
style={{ paddingRight: 15 }}
onPress={navigation.getParam("submitFunc")}
>
<Text style={{ color: "#007AFF", fontSize: 17 }}>Send</Text>
</TouchableOpacity>
),
headerTitleStyle: {
fontWeight: "500",
fontSize: 13
}
});
render() {
return (
<StatusUpdateForm
fullscreen
{...this.props}
onSuccess={() => {
this.props.navigation.goBack();
}}
registerSubmit={submitFunc => {
this.props.navigation.setParams({ submitFunc });
}}
/>
);
}
}