52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
/** @jsxImportSource @emotion/react */
|
|
import { css } from '@emotion/react';
|
|
import { useNavigate } from 'react-router-dom';
|
|
|
|
import React from 'react';
|
|
import { PageTitle } from './PageTitle';
|
|
import { Page } from './Page';
|
|
import { QuestionList } from './QuestionList';
|
|
import { getUnansweredQuestions, QuestionData } from './QuestionsData';
|
|
import { PrimaryButton } from './Styles';
|
|
|
|
export const HomePage = () => {
|
|
const [questions, setQuestions] = React.useState<QuestionData[]>([]);
|
|
const [questionsLoading, setQuestionsLoading] = React.useState(true);
|
|
|
|
React.useEffect(() => {
|
|
const doGetUnansweredQuestion = async () => {
|
|
const unanswereedQuestions = await getUnansweredQuestions();
|
|
setQuestions(unanswereedQuestions);
|
|
setQuestionsLoading(false);
|
|
};
|
|
doGetUnansweredQuestion();
|
|
}, []);
|
|
|
|
const navigate = useNavigate();
|
|
const handleAskQuestionClick = () => {
|
|
navigate('ask');
|
|
};
|
|
|
|
return (
|
|
<Page>
|
|
<div
|
|
css={css`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
`}
|
|
>
|
|
<PageTitle>Unanswered Questions</PageTitle>
|
|
<PrimaryButton onClick={handleAskQuestionClick}>
|
|
Ask a question
|
|
</PrimaryButton>
|
|
</div>
|
|
{questionsLoading ? (
|
|
<div>Loading...</div>
|
|
) : (
|
|
<QuestionList data={questions || []} />
|
|
)}
|
|
</Page>
|
|
);
|
|
};
|