mirror of
https://github.com/urbit/shrub.git
synced 2024-12-20 17:32:11 +03:00
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
import React, { Component } from 'react'
|
|
import classnames from 'classnames';
|
|
|
|
|
|
export default class PublishTile extends Component {
|
|
constructor(props){
|
|
super(props);
|
|
console.log("publish-tile", this.props);
|
|
}
|
|
|
|
|
|
render(){
|
|
|
|
let notificationsNum = this.props.data.notifications;
|
|
|
|
if (notificationsNum === 0) {
|
|
notificationsNum = "";
|
|
}
|
|
else if (notificationsNum > 99) {
|
|
notificationsNum = "99+";
|
|
}
|
|
else if (isNaN(notificationsNum)) {
|
|
notificationsNum = "";
|
|
}
|
|
|
|
return (
|
|
<div className={"w-100 h-100 relative bg-white bg-gray0-d " +
|
|
"ba b--black b--gray1-d"}>
|
|
<a className="w-100 h-100 db no-underline" href="/~publish">
|
|
<p className="black white-d f9 absolute" style={{ left: 8, top: 8 }}>
|
|
Publishing
|
|
</p>
|
|
<img
|
|
className="absolute invert-d"
|
|
style={{ left: 39, top: 39 }}
|
|
src="/~publish/tile.png"
|
|
width={48}
|
|
height={48}
|
|
/>
|
|
<div
|
|
className="absolute w-100 flex-col f9"
|
|
style={{ verticalAlign: "bottom", bottom: 8, left: 8 }}>
|
|
<span className="green2 white-d">{notificationsNum}</span>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
window.publishTile = PublishTile;
|