From 7552a67001013b52056dd4d9c81419832f7456cf Mon Sep 17 00:00:00 2001 From: apostolof Date: Sun, 28 Mar 2021 17:59:33 +0300 Subject: [PATCH] refactor: add placeholder for poll question --- .../src/components/PollView/index.jsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/packages/concordia-app/src/components/PollView/index.jsx b/packages/concordia-app/src/components/PollView/index.jsx index 5698f64..2014cf7 100644 --- a/packages/concordia-app/src/components/PollView/index.jsx +++ b/packages/concordia-app/src/components/PollView/index.jsx @@ -2,7 +2,7 @@ import React, { useEffect, useMemo, useState } from 'react'; import { useDispatch, useSelector } from 'react-redux'; import { VOTING_CONTRACT } from 'concordia-shared/src/constants/contracts/ContractNames'; import { - Container, Header, Icon, Tab, + Container, Grid, Header, Icon, Placeholder, Tab, } from 'semantic-ui-react'; import { useTranslation } from 'react-i18next'; import PropTypes from 'prop-types'; @@ -32,6 +32,7 @@ const PollView = (props) => { const [voteCounts, setVoteCounts] = useState([]); const [voters, setVoters] = useState([]); const [pollHashValid, setPollHashValid] = useState(false); + const [pollQuestion, setPollQuestion] = useState(''); const [loading, setLoading] = useState(true); const dispatch = useDispatch(); const { t } = useTranslation(); @@ -77,6 +78,7 @@ const PollView = (props) => { if (pollHash && pollFound) { if (generatePollHash(pollFound[POLL_QUESTION], pollFound[POLL_OPTIONS]) === pollHash) { setPollHashValid(true); + setPollQuestion(pollFound[POLL_QUESTION]); setPollOptions(pollFound[POLL_OPTIONS].map((pollOption) => ({ label: pollOption, hash: generateHash(pollOption), @@ -143,8 +145,14 @@ const PollView = (props) => { return (
- - Do you thing asdf or fdsa? + + + + {loading + ? + : pollQuestion} + +