Я использую React-native typescript для своего приложения. Я действительно новичок в React-native. много синтаксиса для меня ново. Для стилизации я использую styled-components . Я создал глобальные компоненты кнопки. Итак, я могу использовать его в разных компонентах. Я хочу создать условный размер и цвет кнопок. Итак, я могу управлять размером и цветом из родительских компонентов. Я могу сделать два реквизита в условном стиле. Но я не знаю, как выполнять несколько условий в React-native.
Это мой компонент Button
import React from 'react';
import { Text, TouchableHighlight } from 'react-native';
import styled, { css } from 'styled-components/native';
export interface IButton {
appearance?: "primary" | "secondary" | "dark" | "light";
children?: string | JSX.Element;
size?: "small" | "medium" | "big";
className?: string;
disabled?: boolean;
loading?: boolean;
style?: React.CSSProperties;
onPress?: () => void;
}
const Button = ({ appearance, children, size, disabled, loading, style, onPress, className }: IButton) => {
return (
<ButtonContainer
className={className}
onPress={onPress}
disabled={disabled}
style={
disabled ?
{ ...style, "opacity": 0.5, "pointerEvents": `none` } :
loading ?
{ ...style, "pointerEvents": `none` } :
style
}
>
{loading ? <Label>loading...</Label> : <Label>{children} </Label>}
</ButtonContainer>
);
};
const Label = styled.Text`
color: white;
font-weight: 700;
align-self: center;
padding: 10px;
`
const ButtonContainer = styled.TouchableHighlight<
{
appearance: IButton["appearance"]; // this is my typescript props I don't know how to connect them with my Button styling.
}
>`
width: 50%;
margin-top: 5px;
border-color: grey;
border-width: 2px;
border-radius: 5px;
border-radius: 4px;
background-color:${props => props.primary ? "gray" : "blue"} //
`
export default Button;
Это мой родитель компонент, в котором я использую кнопку.
<Button
size="medium" //this is does not work because I did not style yet
onPress={() => console.log('hello')}
>
click me
</Button>