1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/nest_frontend/components/interactive/BoxRepositoryTweets.js

27 lines
808 B
JavaScript
Raw Normal View History

2021-05-20 16:28:08 +00:00
import React, { useContext } from "react"
2021-05-18 17:15:53 +00:00
import BoxFullScrollable from "../base/BoxFullScrollable"
import SummaryTweet from "./SummaryTweet"
2021-05-20 16:28:08 +00:00
import ContextLanguage from "../../contexts/ContextLanguage"
2021-05-20 09:39:40 +00:00
import Empty from "./Empty"
2021-05-21 14:37:30 +00:00
import ContextRepositoryViewer from "../../contexts/ContextRepositoryViewer"
2021-05-18 17:15:53 +00:00
2021-05-21 14:37:30 +00:00
export default function BoxRepositoryTweets({ ...props }) {
2021-05-20 16:28:08 +00:00
const { strings } = useContext(ContextLanguage)
const { tweets } = useContext(ContextRepositoryViewer)
2021-05-18 17:15:53 +00:00
2021-05-20 09:39:40 +00:00
let content
if(tweets.length === 0) {
content = <Empty/>
}
else {
content = tweets.map(tweet => <SummaryTweet key={tweet["snowflake"]} tweet={tweet}/>)
}
2021-05-18 17:15:53 +00:00
return (
2021-05-20 16:28:08 +00:00
<BoxFullScrollable header={strings.tweets} {...props}>
2021-05-20 09:39:40 +00:00
{content}
2021-05-18 17:15:53 +00:00
</BoxFullScrollable>
)
}