Files
Iris/src/js/components/Notifications.js

115 lines
2.7 KiB
JavaScript
Raw Normal View History

2016-12-13 11:08:13 +13:00
import React, { PropTypes } from 'react'
import FontAwesome from 'react-fontawesome'
export default class Notifications extends React.Component{
2016-12-13 11:08:13 +13:00
constructor(props) {
super(props)
}
renderNotifications(){
if (!this.props.notifications || this.props.notifications.length <= 0) return null
2016-12-13 11:08:13 +13:00
return (
<span>
{
this.props.notifications.map(notification => {
switch (notification.type){
case 'shortcut':
return (
2017-04-05 20:28:41 +12:00
<div className="shortcut-notification" key={notification.key}>
<FontAwesome name={notification.content} />
</div>
)
default:
return (
<div className={notification.type+" notification"} key={notification.key} data-key={notification.key}>
2017-04-05 20:28:41 +12:00
<FontAwesome name="close" className="close-button" onClick={ e => this.props.uiActions.removeNotification(notification.key) } />
2017-05-29 16:29:49 +12:00
{notification.title ? <h4>{notification.title}</h4> : null}
<p dangerouslySetInnerHTML={{__html: notification.content}}></p>
</div>
)
}
})
}
</span>
)
2016-12-13 11:08:13 +13:00
}
2017-04-06 09:01:53 +12:00
renderProcesses(){
if (!this.props.processes || this.props.processes.length <= 0) return null
var processes = this.props.processes
var items = []
for (var key in processes){
if (processes.hasOwnProperty(key)){
if (processes[key].cancelling){
items.push(
<div className="process notification cancelling" key={key}>
<div className="loader"></div>
2017-04-06 09:01:53 +12:00
Cancelling
</div>
)
} else {
items.push(
<div className="process notification" key={key}>
<div className="loader"></div>
2017-08-13 21:04:59 +12:00
{processes[key].message}
<FontAwesome name="close" className="close-button" onClick={e => this.props.uiActions.cancelProcess(key)} />
2017-04-06 09:01:53 +12:00
</div>
)
}
}
}
return (
<span>
{items}
</span>
)
}
// do we want the loading of everything to be displayed?
// not likely...
renderLoader(){
if (!this.props.load_queue){
return null
}
var load_queue = this.props.load_queue
var load_count = 0
for (var key in load_queue){
if (load_queue.hasOwnProperty(key)){
load_count++
}
}
if (load_count > 0){
var className = "loading "
if (load_count > 20){
className += 'high'
} else if (load_count > 5){
className += 'medium'
} else {
className += 'low'
}
return (
<div className={className}></div>
)
} else {
return null
}
2016-12-13 11:08:13 +13:00
}
render(){
return (
<div className="notifications">
{this.renderLoader()}
{this.renderNotifications()}
2017-04-06 09:01:53 +12:00
{this.renderProcesses()}
</div>
)
}
}