-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathButtonHOCTestSection.tsx
57 lines (50 loc) · 2.03 KB
/
ButtonHOCTestSection.tsx
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
import * as React from 'react';
import { Platform, View } from 'react-native';
import { ButtonV1 as Button } from '@fluentui/react-native';
import type { InteractionEvent } from '@fluentui-react-native/interactive-hooks';
import { isGestureResponderEvent } from '@fluentui-react-native/interactive-hooks';
import { TextV1 as Text } from '@fluentui-react-native/text';
import { svgProps } from '../Common/iconExamples';
import { commonTestStyles, stackStyle } from '../Common/styles';
const CustomText = Text.customize({ fontSize: 'header', color: '#ad0258' });
const CustomButton = Button.customize({ backgroundColor: 'pink' });
const CustomIconButton = Button.customize({ iconColor: 'yellow' });
const ComposedButton = Button.compose({
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore Not all slots have to be overridden for compose to work
slots: {
content: CustomText,
},
slotProps: {
content: {
style: { marginTop: -1, marginBottom: 1, marginStart: 0, marginEnd: -2 },
},
},
});
export const ButtonHOCTest: React.FunctionComponent = () => {
const buttonRef = React.useRef(null);
const svgIconsEnabled = ['ios', 'macos', 'win32', 'android'].includes(Platform.OS as string);
return (
<View style={stackStyle}>
<CustomButton style={commonTestStyles.vmargin} componentRef={buttonRef}>
Customized Button with ref
</CustomButton>
{svgIconsEnabled && <CustomIconButton icon={{ svgSource: svgProps }}>Customized Icon Button</CustomIconButton>}
<Button
style={commonTestStyles.vmargin}
onClick={(e: InteractionEvent) => {
console.log(e.timeStamp);
if (isGestureResponderEvent(e)) {
console.log('I was clicked!');
}
if (buttonRef.current) {
buttonRef.current.focus();
}
}}
>
Press to focus Customized Button
</Button>
<ComposedButton style={commonTestStyles.vmargin}>Composed button using customized Text for text slot</ComposedButton>
</View>
);
};