Skip to content

Instantly share code, notes, and snippets.

@sklise
Last active October 28, 2019 16:10
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save sklise/667cc198fa30d7f7d313 to your computer and use it in GitHub Desktop.
Save sklise/667cc198fa30d7f7d313 to your computer and use it in GitHub Desktop.
World Clock for Dashing

World Clock

Requirements

This widget requires a library for the timezone manipulation, moment.js and moment-timezone.js and then also build the necessary data at moment-timezone-data

Then in assets/javascripts/application.coffee add the following three lines above #= require_directory .

#= require moment
#= require moment-timezone
#= require moment-timezone-data

To add a clock to your dashboard, modify this snippet:

<li data-row="3" data-col="6" data-sizex="1" data-sizey="1">
  <div data-id="sebastopol" data-view="Worldclock" data-timezone="America/Los_Angeles" data-title="Sebastapol"></div>
</li>

Where data-timezone is a timezone string corresponding to data in moment-timezone-data.js and data-title is what you'd like to see in your dashboard.

License

The MIT License (MIT)

Copyright (c) 2014 Steve Klise

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

# Requires moment, moment-timezone and moment-timezone-data be added to the
# assets. And in the html view:
#
# data-title: Display name for location
# data-timezone: string designation for timezone (http://momentjs.com/timezone/data/)
# data-view: Worldclock
# data-id: whatever
class Dashing.Worldclock extends Dashing.Widget
ready: ->
setInterval(@startTime, 500)
startTime: =>
today = moment(new Date()).tz(@get('timezone'))
@set('time', today.format('h:mm a'))
@set('date', today.format("MMM Do"))
<h1 class="title" data-bind="title"></h1>
<h2 data-bind="time"></h2>
<h1 data-bind="date"></h1>
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$background-color: #DA8537;
// ----------------------------------------------------------------------------
// Widget-clock styles
// ----------------------------------------------------------------------------
.widget-worldclock {
background-color: $background-color;
}
@linweic
Copy link

linweic commented Jun 2, 2015

@manifolded
Copy link

For those folks trying to get this widget to work, I recommend taking a look at the instructions for this similar widget: https://gist.github.com/weilu/7688343

The setup is very similar, the description considerably less terse and with fewer omissions, and the discussion is much more active.

@amarnaud2
Copy link

amarnaud2 commented Oct 28, 2019

http://momentjs.com/timezone/data/ is not available

The momentjs website is reachable at => https://momentjs.com/timezone/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment