-
-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #126 from galio-org/Alpha-1
v0.6
- Loading branch information
Showing
17 changed files
with
1,172 additions
and
636 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,209 @@ | ||
import React, { useState, useEffect } from "react"; | ||
import { | ||
Animated, | ||
TouchableWithoutFeedback, | ||
FlatList, | ||
StyleSheet, | ||
Dimensions | ||
} from "react-native"; | ||
import PropTypes from "prop-types"; | ||
|
||
import Block from "./Block"; | ||
import Icon from "./Icon"; | ||
import Text from "./Text"; | ||
import GalioTheme from "./theme"; | ||
|
||
const { width } = Dimensions.get("screen"); | ||
|
||
// | ||
function AccordionContent({ content, contentStyle }) { | ||
return <Text style={[styles.content, contentStyle]}>{content}</Text>; | ||
} | ||
|
||
function AccordionHeader({ | ||
expanded, | ||
expandedIcon, | ||
headerStyle, | ||
icon, | ||
title, | ||
chapterIcon | ||
}) { | ||
return ( | ||
<Block row middle style={[{ padding: 6 }, headerStyle]}> | ||
{chapterIcon ? ( | ||
<Icon | ||
name={chapterIcon.name} | ||
family={chapterIcon.family} | ||
size={chapterIcon.size || 14} | ||
color={chapterIcon.color || GalioTheme.COLORS.PRIMARY} | ||
style={chapterIcon.style || { marginRight: 5 }} | ||
/> | ||
) : null} | ||
<Block row space="between" middle flex> | ||
<Text size={16}>{title}</Text> | ||
{expanded | ||
? expandedIcon || ( | ||
<Icon | ||
name="keyboard-arrow-up" | ||
family="material" | ||
size={16} | ||
color={GalioTheme.COLORS.MUTED} | ||
/> | ||
) | ||
: icon || ( | ||
<Icon | ||
name="keyboard-arrow-down" | ||
family="material" | ||
size={16} | ||
color={GalioTheme.COLORS.MUTED} | ||
/> | ||
)} | ||
</Block> | ||
</Block> | ||
); | ||
} | ||
|
||
function AccordionAnimation({ children, style }) { | ||
const [fade, setFade] = useState(new Animated.Value(0.3)); | ||
|
||
useEffect(() => { | ||
Animated.timing(fade, { | ||
toValue: 1, | ||
duration: 400, | ||
useNativeDriver: true | ||
}).start(); | ||
}); | ||
|
||
return ( | ||
<Animated.View style={{ ...style, opacity: fade }}> | ||
{children} | ||
</Animated.View> | ||
); | ||
} | ||
|
||
function AccordionItem({ | ||
expanded, | ||
expandedIcon, | ||
headerStyle, | ||
contentStyle, | ||
icon, | ||
index, | ||
item, | ||
onAccordionClose, | ||
onAccordionOpen, | ||
setSelected | ||
}) { | ||
return ( | ||
<Block> | ||
<TouchableWithoutFeedback | ||
onPress={() => { | ||
onAccordionOpen && !expanded && onAccordionOpen(item, index); | ||
onAccordionClose && expanded && onAccordionClose(item, index); | ||
setSelected(index); | ||
}} | ||
> | ||
<Block> | ||
<AccordionHeader | ||
expanded={expanded} | ||
expandedIcon={expandedIcon} | ||
headerStyle={headerStyle} | ||
icon={icon} | ||
title={item.title} | ||
chapterIcon={item.icon} | ||
/> | ||
</Block> | ||
</TouchableWithoutFeedback> | ||
{expanded ? ( | ||
<AccordionAnimation> | ||
<AccordionContent | ||
content={item.content} | ||
contentStyle={contentStyle} | ||
/> | ||
</AccordionAnimation> | ||
) : null} | ||
</Block> | ||
); | ||
} | ||
|
||
function Accordion({ | ||
theme, | ||
dataArray, | ||
icon, | ||
expandedIcon, | ||
headerStyle, | ||
contentStyle, | ||
opened, | ||
onAccordionOpen, | ||
onAccordionClose, | ||
listStyle, | ||
style | ||
}) { | ||
const [selected, setSelected] = useState(opened); | ||
|
||
return ( | ||
<Block style={[styles.container, style]}> | ||
<FlatList | ||
data={dataArray} | ||
extraData={selected} | ||
style={listStyle} | ||
keyExtractor={(item, index) => String(index)} | ||
renderItem={({ item, index }) => ( | ||
<AccordionItem | ||
key={String(index)} | ||
expanded={selected === index} | ||
expandedIcon={expandedIcon} | ||
icon={icon} | ||
headerStyle={headerStyle} | ||
contentStyle={contentStyle} | ||
onAccordionOpen={onAccordionOpen} | ||
onAccordionClose={onAccordionClose} | ||
item={item} | ||
index={index} | ||
setSelected={s => setSelected(selected === s ? undefined : s)} | ||
/> | ||
)} | ||
/> | ||
</Block> | ||
); | ||
} | ||
|
||
Accordion.propTypes = { | ||
theme: PropTypes.any, | ||
dataArray: PropTypes.array, | ||
opened: PropTypes.number, | ||
listStyle: PropTypes.any, | ||
style: PropTypes.any, | ||
icon: PropTypes.any, | ||
expandedIcon: PropTypes.any, | ||
headerStyle: PropTypes.any, | ||
contentStyle: PropTypes.any, | ||
onAccordionClose: PropTypes.func, | ||
onAccordionOpen: PropTypes.func, | ||
}; | ||
|
||
Accordion.defaultProps = { | ||
theme: GalioTheme, | ||
opened: 0 | ||
}; | ||
|
||
const styles = StyleSheet.create({ | ||
container: { | ||
flex: 1, | ||
width: width * 0.8, | ||
borderRadius: 16, | ||
padding: 8, | ||
shadowColor: "black", | ||
shadowOffset: { width: 0, height: 1 }, | ||
shadowOpacity: 0.2, | ||
shadowRadius: 4, | ||
backgroundColor: 'white' | ||
}, | ||
header: { | ||
padding: 6 | ||
}, | ||
content: { | ||
padding: 10 | ||
} | ||
}); | ||
|
||
export default Accordion; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.