forked from mishguruorg/angular-timezone-selector
-
Notifications
You must be signed in to change notification settings - Fork 1
/
angular-timezone-selector.js
176 lines (158 loc) · 5.94 KB
/
angular-timezone-selector.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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*global angular, _, moment, $, jstz*/
/**
* angular-timezone-selector
*
* A simple directive that allows a user to pick their timezone
*
* Author: Ashok Fernandez <ashok@mish.guru>
* Date: 12/06/2015
* License: MIT
*/
angular.module('angular-timezone-selector', [])
.constant('_', _)
.constant('moment', moment)
.factory('timezoneFactory', ['_', 'moment', function (_, moment) {
return {
get: function () {
var timezoneMap = {}
_.forEach(moment.tz.names(), function (zoneName) {
var tz = moment.tz(zoneName)
timezoneMap[zoneName] = {
id: zoneName,
name: zoneName.replace(/_/g, ' '),
offset: 'UTC' + tz.format('Z'),
nOffset: tz.utcOffset()
}
})
return timezoneMap
}
}
}])
// Timezone name to country codemap
.factory('zoneToCC', ['_', function (_) {
// Note: zones is populated with the data from 'data/zone.csv' when this file is built
var zones = []
var zoneMap = {}
_.forEach(zones, function (zone) {
zoneMap[zone.name] = zone.cca2
})
return zoneMap
}])
// Country code to country name map
.factory('CCToCountryName', ['_', function (_) {
// Note: codes is populated with the data from 'data/cca2_to_country_name.csv' when this file is built
var codes = []
var codeMap = {}
_.forEach(codes, function (code) {
codeMap[code.cca2] = code.name
})
return codeMap
}])
.directive('timezoneSelector', ['_', 'moment', 'timezoneFactory', 'zoneToCC', 'CCToCountryName', function (_, moment, timezoneFactory, zoneToCC, CCToCountryName) {
return {
restrict: 'E',
replace: true,
template: '<select style="min-width:300px;"></select>',
scope: {
ngModel: '=',
translations: '='
},
link: function ($scope, elem, attrs) {
var data = []
var timezones = timezoneFactory.get()
// Group the timezones by their country code
var timezonesGroupedByCC = {}
_.forEach(timezones, function (timezone) {
if (_.has(zoneToCC, timezone.id)) {
var CC = zoneToCC[timezone.id]
timezonesGroupedByCC[CC] = !timezonesGroupedByCC[CC] ? [] : timezonesGroupedByCC[CC]
timezonesGroupedByCC[CC].push(timezone)
}
})
// Add the grouped countries to the data array with their country name as the group option
_.forEach(timezonesGroupedByCC, function (zonesByCountry, CC) {
var zonesForCountry = {
text: CCToCountryName[CC] + ': ',
children: zonesByCountry,
firstNOffset: zonesByCountry[0].nOffset
}
data.push(zonesForCountry)
})
// Sort by UTC or country name
if (attrs.sortBy === 'offset') {
data = _.sortBy(data, 'firstNOffset')
_.forEach(data, function (zonesForCountry, key) {
zonesForCountry.children = _.sortBy(zonesForCountry.children, 'nOffset')
})
} else {
data = _.sortBy(data, 'text')
}
// add initial options forlocal
if (attrs.showLocal !== undefined) {
if (jstz !== undefined) {
// Make sure the tz from jstz has underscores replaced with spaces so it matches
// the format used in timezoneFactory
var extraTZs = _.filter(timezones, { 'id': jstz.determine().name().replace(/_/g, ' ') })
} else {
var localUTC = 'UTC' + moment().format('Z')
extraTZs = _.filter(timezones, {'offset': localUTC})
}
if (extraTZs !== undefined && extraTZs.length > 0) {
data.splice(0, 0, {
text: _.get($scope, 'translations.local', 'Local') + ': ',
children: extraTZs,
firstNOffset: extraTZs[0].nOffset,
firstOffset: extraTZs[0].offset
})
}
}
if (attrs.setLocal !== undefined) {
if (jstz !== undefined) {
$scope.ngModel || ($scope.ngModel = jstz.determine().name())
}
}
// add initial options
if (attrs.primaryChoices !== undefined) {
var primaryChoices = []
_.forEach(attrs.primaryChoices.split(' '), function (choice) {
primaryChoices.push(choice.replace('_', ' '))
})
extraTZs = _.filter(timezones, function (tz) { return _.includes(primaryChoices, tz.name) })
if (extraTZs !== undefined && extraTZs.length > 0) {
data.splice(0, 0, {
text: _.get($scope, 'translations.primary', 'Primary') + ': ',
children: extraTZs,
firstNOffset: extraTZs[0].nOffset,
firstOffset: extraTZs[0].offset
})
}
}
// Construct a select box with the timezones grouped by country
_.forEach(data, function (group) {
var optgroup = $('<optgroup label="' + group.text + '">')
group.children.forEach(function (option) {
if (attrs.displayUtc === 'true' && option.name.indexOf('(UTC') === -1) {
option.name = option.name + ' (' + option.offset + ')'
}
optgroup.append('<option value="' + option.id + '">' +
option.name + '</option>')
})
elem.append(optgroup)
})
// Initialise the chosen box
elem.chosen({
width: attrs.width || '300px',
include_group_label_in_selected: true,
search_contains: true,
no_results_text: _.get($scope, 'translations.no_results_text',
'No results, try searching for the name of your country or nearest major city.'),
placeholder_text_single: _.get($scope, 'translations.placeholder', 'Choose a timezone')
})
// Update the box if ngModel changes
$scope.$watch('ngModel', function () {
elem.val($scope.ngModel)
elem.trigger('chosen:updated')
})
}
}
}])