forked from zendesk/demo_apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
94 lines (80 loc) · 2.34 KB
/
app.js
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
(function() {
return {
events: {
'app.created': 'onAppCreated',
'click .hide-btn': 'onHideBtnClick',
'click .show-btn': 'onShowBtnClick',
'message.hide': 'onHideMessageRecieved',
'message.show': 'onShowMessageRecieved'
},
locations: {},
// Event Handlers
onAppCreated: function() {
this.initLocations();
this.renderControls();
},
onHideBtnClick: function(e) {
var location = this.$(e.target).parents('[data-location]').data('location');
this.hideLocation(location);
this.renderControls();
},
onShowBtnClick: function(e) {
var location = this.$(e.target).parents('[data-location]').data('location');
this.showLocation(location);
this.renderControls();
},
onHideMessageRecieved: function(data) {
this.locations[data.location].visible = false;
if (data.location == this.currentLocation()) {
this.hide();
}
this.renderControls();
},
onShowMessageRecieved: function(data) {
this.locations[data.location].visible = true;
if (data.location == this.currentLocation()) {
this.show();
}
this.renderControls();
},
// Actions
initLocations: function() {
this.locations = {
top_bar: {
name: this.I18n.t('locations.top_bar'),
visible: true
},
nav_bar: {
name: this.I18n.t('locations.nav_bar'),
visible: true
},
ticket_sidebar: {
name: this.I18n.t('locations.ticket_sidebar'),
visible: false // ticket_sidebar specified as noTemplate in the manfiest, therefore will be hidden by default
}
};
},
renderControls: function() {
this.switchTo('controls', {
currentLocation: this.locations[this.currentLocation()],
locations: this.locations
});
},
hideLocation: function(location) {
this.locations[location].visible = false;
if (location == this.currentLocation()) {
this.hide();
} else {
this.message('hide', {location: location});
}
},
showLocation: function(location) {
this.locations[location].visible = true;
if (location == this.currentLocation()) {
this.show();
} else {
this.message('show', {location: location});
}
}
};
}());