Last active
August 29, 2015 13:57
-
-
Save mathieucarbou/9760631 to your computer and use it in GitHub Desktop.
Javascript Clock based on timeZone to overcome moment issue https://github.com/moment/moment-timezone/issues/66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Clock = function (timeZone) { | |
this.timeZone = timeZone; | |
}; | |
Clock.prototype = { | |
now: function () { | |
var nowZone = moment.tz(this.timeZone).zone(); | |
return moment().zone(nowZone); | |
}, | |
/** | |
* parse a ISO8601 string with tz information | |
*/ | |
parse: function (o) { | |
if (/^(\d{4}\-\d\d\-\d\d([tT][\d:\.]*)?)([zZ]|([+\-])(\d\d):(\d\d))$/.test(o)) { | |
var from = moment.parseZone(o), | |
fromZ = from.zone(), | |
to = from.tz(this.timeZone), | |
toZ = to.zone(); | |
return to.add(fromZ - toZ, 'minutes'); | |
} | |
throw new Error('Missing timeZone information'); | |
}, | |
/** | |
* parse as a day from [y,m,d] or String or Date | |
*/ | |
parseDay: function (o) { | |
var mom = this.today(), y, m, d, z; | |
if (typeof o === 'string') { | |
mom = moment.parseZone(o); | |
y = mom.year(); | |
m = mom.month(); | |
d = mom.date(); | |
} else if (o instanceof Array) { | |
y = o.length > 0 ? o[0] : mom.year(); | |
m = o.length > 1 ? o[1] : mom.month(); | |
d = o.length > 2 ? o[2] : mom.date(); | |
} else if (o instanceof Date) { | |
y = o.getFullYear(); | |
m = o.getMonth(); | |
d = o.getDate(); | |
} else { | |
y = mom.year(); | |
m = mom.month(); | |
d = mom.date(); | |
} | |
mom = moment.parseZone([y, m, d]); | |
z = mom.zone(); | |
return mom.tz(this.timeZone).subtract(z, 'minutes'); | |
}, | |
today: function () { | |
return this.now().clone().startOf('day'); | |
}, | |
toString: function () { | |
return this.now().format(); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
outputs
and
outputs