Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
circlestack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
9012bf31
authored
Apr 15, 2016
by
Czémán Arnold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dashboard: improve and make switchable desktop notifications
parent
cf9e0077
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
36 additions
and
6 deletions
+36
-6
circle/dashboard/forms.py
+1
-1
circle/dashboard/migrations/0004_profile_desktop_notifications.py
+19
-0
circle/dashboard/models.py
+4
-0
circle/dashboard/static/dashboard/activity.js
+10
-5
circle/dashboard/templates/dashboard/_display-name.html
+2
-0
No files found.
circle/dashboard/forms.py
View file @
9012bf31
...
...
@@ -1223,7 +1223,7 @@ class MyProfileForm(forms.ModelForm):
class
Meta
:
fields
=
(
'preferred_language'
,
'email_notifications'
,
'use_gravatar'
,
)
'
desktop_notifications'
,
'
use_gravatar'
,
)
model
=
Profile
@property
...
...
circle/dashboard/migrations/0004_profile_desktop_notifications.py
0 → 100644
View file @
9012bf31
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
models
,
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'dashboard'
,
'0003_message'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'profile'
,
name
=
'desktop_notifications'
,
field
=
models
.
BooleanField
(
default
=
False
,
help_text
=
'Whether user wants to get desktop notification when an activity has finished and the window not in focus.'
,
verbose_name
=
'Desktop notifications'
),
),
]
circle/dashboard/models.py
View file @
9012bf31
...
...
@@ -184,6 +184,10 @@ class Profile(Model):
email_notifications
=
BooleanField
(
verbose_name
=
_
(
"Email notifications"
),
default
=
True
,
help_text
=
_
(
'Whether user wants to get digested email notifications.'
))
desktop_notifications
=
BooleanField
(
verbose_name
=
_
(
"Desktop notifications"
),
default
=
False
,
help_text
=
_
(
'Whether user wants to get desktop notification when '
'an activity has finished and the window not in focus.'
))
smb_password
=
CharField
(
max_length
=
20
,
verbose_name
=
_
(
'Samba password'
),
...
...
circle/dashboard/static/dashboard/activity.js
View file @
9012bf31
...
...
@@ -169,7 +169,7 @@ $(function() {
);
}
else
{
in_progress
=
false
;
if
(
windowHasFocus
===
false
){
if
(
windowHasFocus
===
false
&&
userWantNotifications
()
){
sendNotification
(
generateMessageFromLastActivity
());
}
if
(
reload_vm_detail
)
location
.
reload
();
...
...
@@ -186,6 +186,7 @@ $(function() {
// Notification init
$
(
function
(){
if
(
userWantNotifications
())
Notification
.
requestPermission
();
});
...
...
@@ -200,10 +201,10 @@ $(window).focus(function(){
function
generateMessageFromLastActivity
(){
var
ac
=
$
(
'div.activity'
).
first
();
if
(
ac
.
length
===
0
)
return
""
;
var
error
=
$
(
ac
[
0
]).
children
(
".timeline-icon-failed"
).
length
;
var
error
=
ac
.
children
(
".timeline-icon-failed"
).
length
;
var
sign
=
(
error
===
1
)
?
"❌ "
:
"✓ "
;
return
sign
+
ac
[
0
].
innerText
.
split
(
","
)[
0
];
var
msg
=
ac
.
children
(
"strong"
).
text
().
trim
();
return
sign
+
msg
;
}
function
sendNotification
(
message
)
{
...
...
@@ -219,6 +220,11 @@ function sendNotification(message) {
}
}
function
userWantNotifications
(){
var
dn
=
$
(
"#user-options"
).
data
(
"desktop_notifications"
);
return
dn
===
"True"
;
}
function
addConnectText
()
{
var
activities
=
$
(
".timeline .activity"
);
if
(
activities
.
length
>
1
)
{
...
...
@@ -229,7 +235,6 @@ function addConnectText() {
}
}
String
.
prototype
.
hashCode
=
function
()
{
var
hash
=
0
,
i
,
chr
,
len
;
if
(
this
.
length
===
0
)
return
hash
;
...
...
circle/dashboard/templates/dashboard/_display-name.html
View file @
9012bf31
...
...
@@ -15,4 +15,6 @@
{% endif %}
{% endif %}
<span
id=
"user-options"
data-desktop_notifications=
"{{ user.profile.desktop_notifications }}"
><span>
{% endif %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment