48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
import { useSubscription } from "@apollo/react-hooks";
|
|
import React from "react";
|
|
import { CONVERSATION_LIST_SUBSCRIPTION } from "../../graphql/conversations.queries";
|
|
import AlertComponent from "../alert/alert.component";
|
|
import LoadingSpinner from "../loading-spinner/loading-spinner.component";
|
|
import ChatAffixComponent from "./chat-affix.component";
|
|
import { Affix } from "antd";
|
|
import "./chat-affix.styles.scss";
|
|
|
|
import { connect } from "react-redux";
|
|
import { createStructuredSelector } from "reselect";
|
|
import { selectBodyshop } from "../../redux/user/user.selectors";
|
|
const mapStateToProps = createStructuredSelector({
|
|
bodyshop: selectBodyshop,
|
|
});
|
|
|
|
export function ChatAffixContainer({ bodyshop }) {
|
|
const { loading, error, data } = useSubscription(
|
|
CONVERSATION_LIST_SUBSCRIPTION,
|
|
{
|
|
skip: !bodyshop || (bodyshop && !bodyshop.messagingservicesid),
|
|
}
|
|
);
|
|
|
|
if (loading) return <LoadingSpinner />;
|
|
if (error) return <AlertComponent message={error.message} type="error" />;
|
|
|
|
return (
|
|
<Affix className="chat-affix">
|
|
<div>
|
|
{bodyshop && bodyshop.messagingservicesid ? (
|
|
<ChatAffixComponent
|
|
conversationList={(data && data.conversations) || []}
|
|
unreadCount={
|
|
(data &&
|
|
data.conversations.reduce((acc, val) => {
|
|
return (acc = acc + val.messages_aggregate.aggregate.count);
|
|
}, 0)) ||
|
|
0
|
|
}
|
|
/>
|
|
) : null}
|
|
</div>
|
|
</Affix>
|
|
);
|
|
}
|
|
export default connect(mapStateToProps, null)(ChatAffixContainer);
|