summaryrefslogtreecommitdiff
path: root/web-ui/app
diff options
context:
space:
mode:
authorGiovane <giovaneliberato@gmail.com>2015-12-01 23:04:34 -0200
committerGiovane <giovaneliberato@gmail.com>2015-12-29 15:13:53 -0200
commit14f0e57ccbda82206cd8149018b306c6f17032d9 (patch)
tree345770216b5e5991a5a573a809e8d7cc2f31653b /web-ui/app
parent8614202031525b87a55b16517a12f61c05b8b33a (diff)
Shows unread count on title bar
- This commit creates the unread_count_title component
Diffstat (limited to 'web-ui/app')
-rw-r--r--web-ui/app/index.html2
-rw-r--r--web-ui/app/js/page/default.js6
-rw-r--r--web-ui/app/js/page/unread_count_title.js40
-rw-r--r--web-ui/app/js/views/templates.js1
-rw-r--r--web-ui/app/templates/page/unread_count_title.hbs1
5 files changed, 48 insertions, 2 deletions
diff --git a/web-ui/app/index.html b/web-ui/app/index.html
index 9ffeee82..f11b05f8 100644
--- a/web-ui/app/index.html
+++ b/web-ui/app/index.html
@@ -6,7 +6,7 @@
href="assets/images/Favicon.png">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-<title>$account_email - Pixelated Mail</title>
+<title><span id="unread-count-title"></span> $account_email - Pixelated Mail</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link href="assets/bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
diff --git a/web-ui/app/js/page/default.js b/web-ui/app/js/page/default.js
index 3005c027..1ca10b50 100644
--- a/web-ui/app/js/page/default.js
+++ b/web-ui/app/js/page/default.js
@@ -50,6 +50,7 @@ define(
'mail_view/ui/feedback_box',
'mail_view/data/feedback_sender',
'page/version',
+ 'page/unread_count_title',
],
function (
@@ -86,7 +87,8 @@ define(
feedback,
feedbackBox,
feedbackSender,
- version) {
+ version,
+ unreadCountTitle) {
'use strict';
function initialize(path) {
@@ -125,6 +127,8 @@ define(
feedback.attachTo('#feedback');
feedbackSender.attachTo(document);
+
+ unreadCountTitle.attachTo('#unread-count-title');
}
return initialize;
diff --git a/web-ui/app/js/page/unread_count_title.js b/web-ui/app/js/page/unread_count_title.js
new file mode 100644
index 00000000..f60f5668
--- /dev/null
+++ b/web-ui/app/js/page/unread_count_title.js
@@ -0,0 +1,40 @@
+/*
+ * Copyright (c) 2015 ThoughtWorks, Inc.
+ *
+ * Pixelated is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Pixelated is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+define(
+ [
+ 'flight/lib/component',
+ 'views/templates',
+ 'page/events',
+ ],
+
+ function (defineComponent, templates, events) {
+ 'use strict';
+
+ return defineComponent(function () {
+ this.render = function () {
+ var unreadCountTitleHTML = templates.page.unreadCountTitle();
+ this.$node.html(unreadCountTitleHTML);
+ };
+
+ this.after('initialize', function () {
+ this.render();
+ });
+
+ });
+});
diff --git a/web-ui/app/js/views/templates.js b/web-ui/app/js/views/templates.js
index e3b8d1f2..99bffae9 100644
--- a/web-ui/app/js/views/templates.js
+++ b/web-ui/app/js/views/templates.js
@@ -62,6 +62,7 @@ define(['hbs/templates'], function (templates) {
userSettingsBox: window.Pixelated['app/templates/page/user_settings_box.hbs'],
logout: window.Pixelated['app/templates/page/logout.hbs'],
logoutShortcut: window.Pixelated['app/templates/page/logout_shortcut.hbs'],
+ unreadCountTitle: window.Pixelated['app/templates/page/unread_count_title.hbs'],
version: window.Pixelated['app/templates/page/version.hbs']
},
feedback: {
diff --git a/web-ui/app/templates/page/unread_count_title.hbs b/web-ui/app/templates/page/unread_count_title.hbs
new file mode 100644
index 00000000..1ae379b6
--- /dev/null
+++ b/web-ui/app/templates/page/unread_count_title.hbs
@@ -0,0 +1 @@
+<span>(1)</span>