diff options
author | Abyss777 <abyss@fox5.ru> | 2016-06-26 00:51:33 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-06-26 00:51:33 +0500 |
commit | a25e7bd56c128fb2a1c673abf735b3e64706f9a8 (patch) | |
tree | a99d2cde526f97082d7bc95531772b6835064fcd /web/app/view/Notifications.js | |
parent | 67f46c80d3b5e34440a2644f52b81dddfbaba5fa (diff) | |
download | trackermap-server-a25e7bd56c128fb2a1c673abf735b3e64706f9a8.tar.gz trackermap-server-a25e7bd56c128fb2a1c673abf735b3e64706f9a8.tar.bz2 trackermap-server-a25e7bd56c128fb2a1c673abf735b3e64706f9a8.zip |
Added notifications via email
Added notifications settings
Diffstat (limited to 'web/app/view/Notifications.js')
-rw-r--r-- | web/app/view/Notifications.js | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/web/app/view/Notifications.js b/web/app/view/Notifications.js new file mode 100644 index 000000000..8efebd038 --- /dev/null +++ b/web/app/view/Notifications.js @@ -0,0 +1,58 @@ +/* + * Copyright 2016 Anton Tananaev (anton.tananaev@gmail.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +Ext.define('Traccar.view.Notifications', { + extend: 'Ext.grid.Panel', + xtype: 'notificationsView', + + requires: [ + 'Traccar.view.NotificationsController' + ], + + controller: 'notificationsController', + store: 'AllNotifications', + + selModel: { + selType: 'cellmodel', + }, + + columns: [{ + text: Strings.notificationType, + dataIndex: 'type', + flex: 1, + renderer: function (value) { + var typeKey = 'event' + value.charAt(0).toUpperCase() + value.slice(1); + return Strings[typeKey]; + } + }, { + text: Strings.notificationWeb, + dataIndex: 'web', + xtype: 'checkcolumn', + flex: 1, + listeners: { + checkChange: 'onCheckChange' + } + }, { + text: Strings.notificationMail, + dataIndex: 'mail', + xtype: 'checkcolumn', + flex: 1, + listeners: { + checkChange: 'onCheckChange' + } + }], + +}); |