aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Contacts.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2019-05-04 21:13:12 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:54 +0300
commitf470636a70943a8ecad8bddc791a1c2dddd28e1e (patch)
treec43d109d88adbde9a696084070cdd92c6b9a004b /vnext/src/components/Contacts.js
parent3d7d213e3ddc5bf4f71d536f31677b768aa3b7c0 (diff)
Components -> UI
Diffstat (limited to 'vnext/src/components/Contacts.js')
-rw-r--r--vnext/src/components/Contacts.js49
1 files changed, 0 insertions, 49 deletions
diff --git a/vnext/src/components/Contacts.js b/vnext/src/components/Contacts.js
deleted file mode 100644
index 3852b26f..00000000
--- a/vnext/src/components/Contacts.js
+++ /dev/null
@@ -1,49 +0,0 @@
-import React, { useEffect, useState } from 'react';
-
-import { getChats } from '../api';
-
-
-import Contact from './Contact.js';
-import { ChatSpinner } from './Spinner';
-
-export default function Contacts(props) {
- const [pms, setPms] = useState([]);
- useEffect(() => {
- getChats()
- .then(response => {
- setPms(response.data.pms);
- });
- }, []);
- return (
- <div className="msg-cont">
- <div style={chatListStyle}>
- {
- pms.length ? pms.map((chat) =>
- <Contact key={chat.uname} user={chat} style={chatTitleStyle} />
- ) : <><ChatSpinner /><ChatSpinner /><ChatSpinner /><ChatSpinner /><ChatSpinner /></>
- }
- </div>
- </div>
- );
-}
-
-const wrapperStyle = {
- display: 'flex',
- backgroundColor: '#fff'
-};
-
-const chatListStyle = {
- display: 'flex',
- flexDirection: 'column',
- width: '100%',
- padding: '12px'
-};
-
-const chatTitleStyle = {
- width: '100%',
- padding: '12px',
- textAlign: 'left',
- background: '#fff',
- color: '#222',
- borderBottom: '1px solid #eee'
-};