|
@ -8,15 +8,15 @@ import PropTypes from 'prop-types'; |
|
|
import { useTranslation } from 'react-i18next'; |
|
|
import { useTranslation } from 'react-i18next'; |
|
|
import { useDispatch, useSelector } from 'react-redux'; |
|
|
import { useDispatch, useSelector } from 'react-redux'; |
|
|
import determineKVAddress from '../../utils/orbitUtils'; |
|
|
import determineKVAddress from '../../utils/orbitUtils'; |
|
|
import { POSTS_DATABASE, USER_DATABASE } from '../../constants/OrbitDatabases'; |
|
|
import { POSTS_DATABASE, USER_DATABASE } from '../../constants/orbit/OrbitDatabases'; |
|
|
import { FETCH_USER_DATABASE } from '../../redux/actions/peerDbReplicationActions'; |
|
|
import { FETCH_USER_DATABASE } from '../../redux/actions/peerDbReplicationActions'; |
|
|
import { USER_PROFILE_PICTURE } from '../../constants/UserDatabaseKeys'; |
|
|
import { USER_PROFILE_PICTURE } from '../../constants/orbit/UserDatabaseKeys'; |
|
|
import { breeze, drizzle } from '../../redux/store'; |
|
|
import { breeze, drizzle } from '../../redux/store'; |
|
|
import './styles.css'; |
|
|
import './styles.css'; |
|
|
import { TRANSACTION_ERROR, TRANSACTION_SUCCESS } from '../../constants/TransactionStatus'; |
|
|
import { TRANSACTION_ERROR, TRANSACTION_SUCCESS } from '../../constants/TransactionStatus'; |
|
|
import { POST_CONTENT, POST_SUBJECT } from '../../constants/PostsDatabaseKeys'; |
|
|
import { POST_CONTENT, POST_SUBJECT } from '../../constants/orbit/PostsDatabaseKeys'; |
|
|
import { FORUM_CONTRACT } from '../../constants/ContractNames'; |
|
|
import { FORUM_CONTRACT } from '../../constants/contracts/ContractNames'; |
|
|
import { POST_CREATED_EVENT } from '../../constants/ForumContractEvents'; |
|
|
import { POST_CREATED_EVENT } from '../../constants/contracts/events/ForumContractEvents'; |
|
|
|
|
|
|
|
|
const { contracts: { [FORUM_CONTRACT]: { methods: { createPost } } } } = drizzle; |
|
|
const { contracts: { [FORUM_CONTRACT]: { methods: { createPost } } } } = drizzle; |
|
|
const { orbit } = breeze; |
|
|
const { orbit } = breeze; |
|
|