Browse Source

fix: make votes unselectable

develop
Ezerous 4 years ago
parent
commit
47c8bdb864
  1. 9
      packages/concordia-app/src/assets/css/index.css
  2. 7
      packages/concordia-app/src/components/PostList/PostVoting/index.jsx

9
packages/concordia-app/src/assets/css/index.css

@ -58,3 +58,12 @@ div {
color: var(--secondary-color-highlighted) !important; color: var(--secondary-color-highlighted) !important;
box-shadow: 0 0 0 1px var(--secondary-color-highlighted) inset !important; box-shadow: 0 0 0 1px var(--secondary-color-highlighted) inset !important;
} }
.unselectable {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}

7
packages/concordia-app/src/components/PostList/PostVoting/index.jsx

@ -3,12 +3,11 @@ import React, {
} from 'react'; } from 'react';
import { Button } from 'semantic-ui-react'; import { Button } from 'semantic-ui-react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import './styles.css';
import { useSelector } from 'react-redux'; import { useSelector } from 'react-redux';
import { POST_VOTING_CONTRACT } from '../../../constants/contracts/ContractNames'; import { POST_VOTING_CONTRACT } from '../../../constants/contracts/ContractNames';
import { drizzle } from '../../../redux/store'; import { drizzle } from '../../../redux/store';
import { TRANSACTION_ERROR, TRANSACTION_SUCCESS } from '../../../constants/TransactionStatus'; import { TRANSACTION_ERROR, TRANSACTION_SUCCESS } from '../../../constants/TransactionStatus';
import './styles.css';
const CHOICE_DEFAULT = '0'; const CHOICE_DEFAULT = '0';
const CHOICE_UP = '1'; const CHOICE_UP = '1';
@ -63,7 +62,7 @@ const PostVoting = (props) => {
&& postId !== null && userAccount !== null) { && postId !== null && userAccount !== null) {
setGetVoteCallHash(getVoteChainData(postId, userAccount)); setGetVoteCallHash(getVoteChainData(postId, userAccount));
} }
}, [drizzleInitializationFailed, drizzleInitialized, ownVote, postId, totalVoteCount, userAccount]); }, [drizzleInitializationFailed, drizzleInitialized, ownVote, postId, userAccount]);
useEffect(() => { useEffect(() => {
if (getVoteCallHash && getVoteResults && getVoteResults[getVoteCallHash]) { if (getVoteCallHash && getVoteResults && getVoteResults[getVoteCallHash]) {
@ -107,7 +106,7 @@ const PostVoting = (props) => {
disabled={disableVoting} disabled={disableVoting}
onClick={() => vote(CHOICE_DOWN)} onClick={() => vote(CHOICE_DOWN)}
/> />
<span> <span className="unselectable">
&nbsp;&nbsp; &nbsp;&nbsp;
{totalVoteCount || 0} {totalVoteCount || 0}
&nbsp;&nbsp; &nbsp;&nbsp;

Loading…
Cancel
Save