mirror of
https://github.com/urbit/shrub.git
synced 2024-12-21 01:41:37 +03:00
60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
import React, { Component } from 'react';
|
|
import classnames from 'classnames';
|
|
import _ from 'lodash';
|
|
|
|
|
|
export default class ChatTile extends Component {
|
|
|
|
render() {
|
|
const { props } = this;
|
|
|
|
let data = _.get(props.data, 'chat-configs', false);
|
|
|
|
let inviteNum = 0;
|
|
let msgNum = 0;
|
|
|
|
if (data) {
|
|
Object.keys(data).forEach((conf) => {
|
|
console.log(conf);
|
|
msgNum = msgNum + data[conf].length - data[conf].read;
|
|
});
|
|
}
|
|
|
|
let notificationsNum = inviteNum + msgNum;
|
|
|
|
let numNotificationsElem =
|
|
notificationsNum > 0 ? (
|
|
<p
|
|
className="absolute green2"
|
|
style={{
|
|
bottom: 6,
|
|
fontWeight: 400,
|
|
fontSize: 12,
|
|
lineHeight: "20px"
|
|
}}>
|
|
{notificationsNum > 99 ? "99+" : notificationsNum}
|
|
</p>
|
|
) : (
|
|
<div />
|
|
);
|
|
|
|
return (
|
|
<div className="w-100 h-100 relative bg-white ba b--black">
|
|
<a className="w-100 h-100 db pa2 no-underline" href="/~chat">
|
|
<p className="black gray absolute f9" style={{left: 8, top: 8}}>Messaging</p>
|
|
<img
|
|
className="absolute"
|
|
style={{ left: 39, top: 39 }}
|
|
src="/~chat/img/Tile.png"
|
|
width={48}
|
|
height={48} />
|
|
{numNotificationsElem}
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
window['chat-viewTile'] = ChatTile;
|