-
Notifications
You must be signed in to change notification settings - Fork 375
Expand file tree
/
Copy pathCreatePollHeader.tsx
More file actions
99 lines (89 loc) · 2.57 KB
/
CreatePollHeader.tsx
File metadata and controls
99 lines (89 loc) · 2.57 KB
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
import React, { useCallback, useMemo } from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { useTheme } from '../../../contexts/themeContext/ThemeContext';
import { useTranslationContext } from '../../../contexts/translationContext/TranslationContext';
import { Check, IconProps } from '../../../icons';
import { NewCross } from '../../../icons/NewCross';
import { primitives } from '../../../theme';
import { Button } from '../../ui';
import { useCanCreatePoll } from '../hooks/useCanCreatePoll';
export type CreatePollHeaderProps = {
/**
* Handler for back button press
* @returns void
*/
onBackPressHandler: () => void;
/**
* Handler for create poll button press
* @returns void
*/
onCreatePollPressHandler: () => void;
};
export const CreatePollHeader = ({
onBackPressHandler,
onCreatePollPressHandler,
}: CreatePollHeaderProps) => {
const { t } = useTranslationContext();
const canCreatePoll = useCanCreatePoll();
const {
theme: {
poll: {
createContent: { headerContainer, sendButton },
modalHeader: { title: titleStyle },
},
semantics,
},
} = useTheme();
const styles = useStyles();
const renderSendPollIcon = useCallback(
(props: IconProps) => {
return <Check {...props} height={18} stroke={semantics.textOnAccent} width={18} />;
},
[semantics.textOnAccent],
);
return (
<View style={[styles.headerContainer, headerContainer]}>
<Button
variant='secondary'
onPress={onBackPressHandler}
type='solid'
LeadingIcon={NewCross}
iconOnly
/>
<Text numberOfLines={1} style={[styles.title, titleStyle]}>
{t('Create Poll')}
</Text>
<Button
variant='primary'
onPress={onCreatePollPressHandler}
type='solid'
LeadingIcon={renderSendPollIcon}
iconOnly
disabled={!canCreatePoll}
style={sendButton}
/>
</View>
);
};
const useStyles = () => {
const {
theme: { semantics },
} = useTheme();
return useMemo(() => {
return StyleSheet.create({
headerContainer: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
padding: primitives.spacingMd,
backgroundColor: semantics.backgroundElevationElevation1,
},
title: {
color: semantics.textPrimary,
fontSize: primitives.typographyFontSizeMd,
fontWeight: primitives.typographyFontWeightSemiBold,
lineHeight: primitives.typographyLineHeightNormal,
},
});
}, [semantics]);
};