-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathNotifications.php
146 lines (123 loc) · 4.43 KB
/
Notifications.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?php
namespace webzop\notifications\widgets;
use Yii;
use yii\helpers\Html;
use yii\helpers\ArrayHelper;
use yii\helpers\Url;
use yii\helpers\Json;
use yii\db\Query;
use webzop\notifications\NotificationsAsset;
class Notifications extends \yii\base\Widget
{
public $options = ['class' => 'dropdown nav-notifications'];
public $linkOptions = [
'href' => '#',
'class' => 'dropdown-toggle',
'data-toggle' => 'dropdown'
];
public $spanOptions = [
'class' => 'glyphicon glyphicon-bell'
];
/**
* @var string the HTML options for the item count tag. Key 'tag' might be used here for the tag name specification.
* For example:
*
* ```php
* [
* 'tag' => 'span',
* 'class' => 'badge badge-warning',
* ]
* ```
*/
public $countOptions = [];
/**
* @var array additional options to be passed to the notification library.
* Please refer to the plugin project page for available options.
*/
public $clientOptions = [];
/**
* @var integer the XHR timeout in milliseconds
*/
public $xhrTimeout = 2000;
/**
* @var integer The delay between pulls in milliseconds
*/
public $pollInterval = 60000;
public function init()
{
parent::init();
if(!isset($this->options['id'])){
$this->options['id'] = $this->getId();
}
}
/**
* @inheritdoc
*/
public function run()
{
echo $this->renderNavbarItem();
$this->registerAssets();
}
/**
* @inheritdoc
*/
protected function renderNavbarItem()
{
$html = Html::beginTag('li', $this->options);
$html .= Html::beginTag('a', $this->linkOptions);
$html .= Html::tag('span', '', $this->spanOptions);
$count = self::getCountUnseen();
$countOptions = array_merge([
'tag' => 'span',
'data-count' => $count,
], $this->countOptions);
Html::addCssClass($countOptions, 'label label-warning navbar-badge notifications-count');
if(!$count){
$countOptions['style'] = 'display: none;';
}
$countTag = ArrayHelper::remove($countOptions, 'tag', 'span');
$html .= Html::tag($countTag, $count, $countOptions);
$html .= Html::endTag('a');
$html .= Html::begintag('div', ['class' => 'dropdown-menu']);
$header = Html::a(Yii::t('modules/notifications', 'Mark all as read'), '#', ['class' => 'read-all pull-right']);
$header .= Yii::t('modules/notifications', 'Notifications');
$html .= Html::tag('div', $header, ['class' => 'header']);
$html .= Html::begintag('div', ['class' => 'notifications-list']);
//$html .= Html::tag('div', '<span class="ajax-loader"></span>', ['class' => 'loading-row']);
$html .= Html::tag('div', Html::tag('span', Yii::t('modules/notifications', 'There are no notifications to show'), ['style' => 'display: none;']), ['class' => 'empty-row']);
$html .= Html::endTag('div');
$footer = Html::a(Yii::t('modules/notifications', 'View all'), ['/notifications/default/index']);
$html .= Html::tag('div', $footer, ['class' => 'footer']);
$html .= Html::endTag('div');
$html .= Html::endTag('li');
return $html;
}
/**
* Registers the needed assets
*/
public function registerAssets()
{
$this->clientOptions = array_merge([
'id' => $this->options['id'],
'url' => Url::to(['/notifications/default/list']),
'countUrl' => Url::to(['/notifications/default/count']),
'readUrl' => Url::to(['/notifications/default/read']),
'readAllUrl' => Url::to(['/notifications/default/read-all']),
'xhrTimeout' => Html::encode($this->xhrTimeout),
'pollInterval' => Html::encode($this->pollInterval),
], $this->clientOptions);
$js = 'Notifications(' . Json::encode($this->clientOptions) . ');';
$view = $this->getView();
NotificationsAsset::register($view);
$view->registerJs($js);
}
public static function getCountUnseen(){
$userId = Yii::$app->getUser()->getId();
$count = (new Query())
->from('{{%notifications}}')
->andWhere(['or', 'user_id = 0', 'user_id = :user_id'], [':user_id' => $userId])
->andWhere(['seen' => false])
->count();
return $count;
}
}