Skip to content

Instantly share code, notes, and snippets.

@JacobKnaack
Last active June 14, 2019 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JacobKnaack/725d5ba64dd26904f2b7c8dda3872790 to your computer and use it in GitHub Desktop.
Save JacobKnaack/725d5ba64dd26904f2b7c8dda3872790 to your computer and use it in GitHub Desktop.
Comic Messenger user list component
import React from 'react';
import gql from 'graphql-tag';
import { graphql } from 'react-apollo';
import Socket from '../../lib/socket.js';
const GET_USERS = gql`
query UserList($read_key: String!) {
objectsByType(bucket_slug: "cosmic-messenger", type_slug: "users", read_key: $read_key ) {
_id
title
created_at
metadata
}
}
`
class UserList extends React.Component {
constructor(props) {
super(props)
this.state = {
users: []
}
this.handleUserIsOnline = this.handleUserIsOnline.bind(this);
}
componentDidMount() {
Socket.subscribeToRegister(this.props.data.refetch);
Socket.subscribeToLogout(this.props.data.refetch);
}
static getDerivedStateFromProps(props, state) {
let userFound = false;
const tempState = Object.assign({}, state);
if (props.data.objectsByType) {
for (const user of props.data.objectsByType) {
if (user._id === props.user._id) {
userFound = true
}
}
if (!userFound) {
props.handleLogout();
}
tempState.users = props.data.objectsByType
}
return tempState
}
render() {
return (
<div className={`userList-container ${this.props.mobileMenuActive}`}>
<div
className={`mobileMenuModal ${this.props.mobileMenuActive}`}
onClick={this.props.handleMobileMenu}
/>
{this.state.users.map(user => {
if (user._id !== this.props.user._id) {
return (
<p key={user._id}>{user.title}</p>
)
}
return null
})}
{this.state.users.length < 2
? <div>No Users in chat</div>
: null
}
</div>
)
}
handleUserIsOnline(user) {
let temp = Object.assign([], this.state.users);
for (const u of temp) {
if (u._id === user._id) {
u.isOnline = true;
}
}
this.setState({ users: temp });
}
}
export default graphql(GET_USERS, {
options: {
variables: {
read_key: __COSMIC_READ_KEY__,
}
},
props: ({ data }) => ({
data,
})
})(UserList);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment