|
|
|
@ -7,15 +7,20 @@ import { |
|
|
|
|
StatusBar, |
|
|
|
|
LayoutAnimation, |
|
|
|
|
FlatList, |
|
|
|
|
Dimensions, |
|
|
|
|
Image, |
|
|
|
|
Text, |
|
|
|
|
Pressable |
|
|
|
|
} from "react-native"; |
|
|
|
|
|
|
|
|
|
import { connect } from "react-redux"; |
|
|
|
|
import { blog } from "../../redux/actions"; |
|
|
|
|
import {useNavigation} from "@react-navigation/native"; |
|
|
|
|
|
|
|
|
|
//components
|
|
|
|
|
import Navbar from "../../components/Navbar"; |
|
|
|
|
import Drawer from "../../components/Drawer"; |
|
|
|
|
// import Hashtags from "./layouts/Hashtags";
|
|
|
|
|
import Hashtags from "./layouts/Hashtags"; |
|
|
|
|
import Header from "./layouts/Header"; |
|
|
|
|
import Single from "./layouts/Single"; |
|
|
|
|
import New from "./layouts/New"; |
|
|
|
@ -23,12 +28,18 @@ import Target from "./layouts/Target"; |
|
|
|
|
|
|
|
|
|
//style
|
|
|
|
|
import tw from "tailwind-rn"; |
|
|
|
|
import fontSize from "../../constants/fontSize"; |
|
|
|
|
import Colors from "../../constants/Colors"; |
|
|
|
|
|
|
|
|
|
function Blogs({ getList, blogs }) { |
|
|
|
|
const { width, height } = Dimensions.get("window"); |
|
|
|
|
const ios = Platform.OS === "ios"; |
|
|
|
|
|
|
|
|
|
function Blogs({ getList, blogs, hashtag, setHashtag, theme }) { |
|
|
|
|
const [position, setPosition] = React.useState("100%"); |
|
|
|
|
|
|
|
|
|
React.useEffect(() => { |
|
|
|
|
getList(); |
|
|
|
|
setHashtag(null); |
|
|
|
|
}, []); |
|
|
|
|
|
|
|
|
|
const setBoxPosition = () => { |
|
|
|
@ -56,11 +67,22 @@ function Blogs({ getList, blogs }) { |
|
|
|
|
}} |
|
|
|
|
/> |
|
|
|
|
<Drawer setBoxPosition={setBoxPosition} position={position} /> |
|
|
|
|
<Hashtags /> |
|
|
|
|
{hashtag ? ( |
|
|
|
|
<FlatList |
|
|
|
|
contentContainerStyle={styles.contentContainerStyle} |
|
|
|
|
style={tw("px-4")} |
|
|
|
|
data={blogs.filter((blog) => blog.tag === hashtag)} |
|
|
|
|
renderItem={({ item }) => ( |
|
|
|
|
<HashtagBlog blog={item} blogsPage={true} theme={theme} /> |
|
|
|
|
)} |
|
|
|
|
keyExtractor={(item) => item.id} |
|
|
|
|
/> |
|
|
|
|
) : ( |
|
|
|
|
<ScrollView |
|
|
|
|
contentContainerStyle={styles.contentContainerStyle} |
|
|
|
|
style={[styles.container, tw("flex px-4")]} |
|
|
|
|
> |
|
|
|
|
{/* <Hashtags /> */} |
|
|
|
|
<Single /> |
|
|
|
|
<Header title={"تازهترینها از وبلاگ"} /> |
|
|
|
|
<FlatList |
|
|
|
@ -85,24 +107,59 @@ function Blogs({ getList, blogs }) { |
|
|
|
|
<Header title={"از دنیای آموزش"} /> |
|
|
|
|
<Target blogs={blogs.slice(0, 3)} /> |
|
|
|
|
</ScrollView> |
|
|
|
|
)} |
|
|
|
|
</SafeAreaView> |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const HashtagBlog = ({ blog, theme }) => { |
|
|
|
|
const navigation = useNavigation(); |
|
|
|
|
return ( |
|
|
|
|
<Pressable |
|
|
|
|
style={[tw("w-full flex pb-4 mb-4")]} |
|
|
|
|
onPress={() => navigation.push("Blog", { id: blog?.id })} |
|
|
|
|
> |
|
|
|
|
<Image |
|
|
|
|
source={{ uri: `https://dnvn.ir/api/v1/file/${blog?.fileIds}` }} |
|
|
|
|
resizeMode="contain" |
|
|
|
|
style={[ |
|
|
|
|
tw("rounded-sm"), |
|
|
|
|
{ width: "100%", height: ((width - 32) * 3) / 4 }, |
|
|
|
|
]} |
|
|
|
|
/> |
|
|
|
|
<Text |
|
|
|
|
style={{ |
|
|
|
|
fontSize: fontSize.lg, |
|
|
|
|
fontFamily: "bold", |
|
|
|
|
color: |
|
|
|
|
theme === "light" ? Colors.theme1.gray20 : Colors.theme1.grayF9, |
|
|
|
|
marginTop: 5, |
|
|
|
|
textAlign: ios ? "right" : "auto", |
|
|
|
|
}} |
|
|
|
|
> |
|
|
|
|
{blog?.title} |
|
|
|
|
</Text> |
|
|
|
|
</Pressable> |
|
|
|
|
); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const mapStateToProps = (state) => ({ |
|
|
|
|
blogs: state.blog.list, |
|
|
|
|
hashtag: state.blog.hashtag, |
|
|
|
|
theme : state.publicApi.theme |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const mapDispatchToProps = { |
|
|
|
|
getList: blog.list, |
|
|
|
|
setHashtag: blog.setHashtag, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Blogs); |
|
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({ |
|
|
|
|
contentContainerStyle: { |
|
|
|
|
paddingBottom: 80, |
|
|
|
|
paddingTop : 30 |
|
|
|
|
paddingBottom: height / 4, |
|
|
|
|
paddingTop: 0, |
|
|
|
|
}, |
|
|
|
|
container: { |
|
|
|
|
paddingVertical: 0, |
|
|
|
|