2013-11-27 11:12:50 +01:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2014-01-11 03:26:53 +01:00
|
|
|
(function($) {
|
|
|
|
"use strict";
|
|
|
|
|
2014-01-11 20:56:21 +01:00
|
|
|
if (window._uhr !== undefined) {
|
2014-01-11 03:26:53 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-11 20:56:21 +01:00
|
|
|
window._uhr = {
|
2014-01-11 03:26:53 +01:00
|
|
|
id: 0,
|
2014-01-11 20:56:21 +01:00
|
|
|
languages: new Array()
|
|
|
|
};
|
|
|
|
$.widget("fritteli.uhr", {
|
|
|
|
options: {
|
|
|
|
width: '100%',
|
|
|
|
status: 'on',
|
|
|
|
language: 'de_CH',
|
|
|
|
theme: 'black',
|
2014-01-20 15:47:13 +01:00
|
|
|
force: false,
|
|
|
|
controls: true
|
2014-01-11 20:56:21 +01:00
|
|
|
},
|
|
|
|
start: function() {
|
|
|
|
if (!this._isOn()) {
|
|
|
|
var uhr = this;
|
|
|
|
this._timer = window.setInterval(function() {
|
|
|
|
uhr._update();
|
|
|
|
}, 1000);
|
|
|
|
this._update();
|
|
|
|
$.cookie('uhr-status' + this._id, 'on', {expires: 365, path: '/'});
|
|
|
|
} else {
|
|
|
|
}
|
|
|
|
},
|
|
|
|
stop: function() {
|
|
|
|
if(this._isOn()) {
|
|
|
|
window.clearInterval(this._timer);
|
|
|
|
this._timer = null;
|
|
|
|
this._update();
|
|
|
|
$.cookie('uhr-status' + this._id, 'off', {expires: 365, path: '/'});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
toggle: function() {
|
|
|
|
if(this._isOn()) {
|
|
|
|
this.stop();
|
|
|
|
} else {
|
|
|
|
this.start();
|
2014-01-11 03:26:53 +01:00
|
|
|
}
|
|
|
|
},
|
2014-01-11 20:56:21 +01:00
|
|
|
language: function(languageKey) {
|
|
|
|
if (languageKey !== this.options.language) {
|
|
|
|
this.options.language = languageKey;
|
|
|
|
var renderer = new UhrRenderer(this._language(), this.element.find('.letterarea'));
|
2014-01-11 22:54:46 +01:00
|
|
|
var uhr = this;
|
|
|
|
renderer.render(this, function() {
|
|
|
|
uhr._currentMinute = -1;
|
|
|
|
uhr._update();
|
|
|
|
});
|
2014-01-11 20:56:21 +01:00
|
|
|
$.cookie('uhr-language' + this._id, languageKey, {expires: 365, path: '/'});
|
|
|
|
this._update();
|
2014-01-11 03:26:53 +01:00
|
|
|
}
|
|
|
|
},
|
2014-01-11 20:56:21 +01:00
|
|
|
theme: function(theme) {
|
|
|
|
if (theme != this.options.theme) {
|
|
|
|
this.element.removeClass(this.options.theme).addClass(theme);
|
|
|
|
$('#uhr-onoffswitch' + this._id).removeClass(this.options.theme).addClass(theme);
|
|
|
|
this.options.theme = theme;
|
|
|
|
$.cookie('uhr-theme' + this._id, theme, {expires: 365, path: '/'});
|
|
|
|
}
|
|
|
|
},
|
2014-01-11 22:54:46 +01:00
|
|
|
time: function(time) {
|
|
|
|
this.options.time = time;
|
|
|
|
if (time == null) {
|
|
|
|
this._currentMinute = -1;
|
|
|
|
this._update();
|
|
|
|
} else {
|
|
|
|
if (this._timer != null) {
|
|
|
|
window.clearInterval(this._timer);
|
|
|
|
}
|
|
|
|
var renderer = new UhrRenderer(this._language(), this.element.find('.letterarea'));
|
|
|
|
var uhr = this;
|
|
|
|
renderer.render(this, function() {
|
|
|
|
uhr._show(time);
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
2014-01-11 20:56:21 +01:00
|
|
|
// private variables
|
|
|
|
_id: -1,
|
|
|
|
_timer: null,
|
|
|
|
_currentMinute: -1,
|
|
|
|
// private methods
|
|
|
|
_isOn: function() {
|
|
|
|
return this._timer !== null;
|
|
|
|
},
|
|
|
|
_update: function() {
|
|
|
|
if (this._isOn()) {
|
2014-01-11 22:54:46 +01:00
|
|
|
var time = new Date();
|
|
|
|
if (time.getMinutes() == this._currentMinute) {
|
2014-01-11 03:26:53 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-01-11 22:54:46 +01:00
|
|
|
this._currentMinute = time.getMinutes();
|
|
|
|
this._show(time);
|
2014-01-11 03:26:53 +01:00
|
|
|
} else {
|
2014-01-11 20:56:21 +01:00
|
|
|
this._clear();
|
|
|
|
this._currentMinute = -1;
|
2014-01-11 03:26:53 +01:00
|
|
|
}
|
|
|
|
},
|
2014-01-11 22:54:46 +01:00
|
|
|
_show: function(time) {
|
|
|
|
var dotMinute = this._getDotMinute(time);
|
|
|
|
var hour = this._getHour(time);
|
|
|
|
var coarseMinute = this._getCoarseMinute(time);
|
|
|
|
this._clear();
|
|
|
|
this._highlight('on');
|
|
|
|
for (var i = 1; i <= dotMinute; i++) {
|
|
|
|
this._highlight('dot' + i);
|
|
|
|
}
|
|
|
|
this._highlight('minute' + coarseMinute);
|
|
|
|
hour = this._normalizeHour(hour);
|
|
|
|
this._highlight('hour' + hour);
|
|
|
|
if (coarseMinute == 0) {
|
|
|
|
this._highlight('sharphour');
|
|
|
|
}
|
|
|
|
},
|
2014-01-11 20:56:21 +01:00
|
|
|
_language: function() {
|
|
|
|
return window._uhr.languages[this.options.language];
|
2014-01-11 03:26:53 +01:00
|
|
|
},
|
2014-01-11 20:56:21 +01:00
|
|
|
_highlight: function(itemClass) {
|
|
|
|
this.element.find('.item.' + itemClass).addClass('active');
|
2014-01-11 03:26:53 +01:00
|
|
|
},
|
2014-01-11 20:56:21 +01:00
|
|
|
_clear: function() {
|
|
|
|
this.element.find('.item').removeClass('active');
|
2014-01-11 03:26:53 +01:00
|
|
|
},
|
2014-01-11 20:56:21 +01:00
|
|
|
_getHour: function(date) {
|
|
|
|
if (typeof this._language().getHour === 'function') {
|
|
|
|
return this._language().getHour(date);
|
2014-01-11 03:26:53 +01:00
|
|
|
}
|
|
|
|
var hour = date.getHours();
|
|
|
|
if (date.getMinutes() >= 25) {
|
|
|
|
return hour + 1;
|
|
|
|
}
|
|
|
|
return hour;
|
|
|
|
},
|
2014-01-11 20:56:21 +01:00
|
|
|
_getCoarseMinute: function(date) {
|
|
|
|
if (typeof this._language().getCoarseMinute === 'function') {
|
|
|
|
return this._language().getCoarseMinute(date);
|
2014-01-11 03:26:53 +01:00
|
|
|
}
|
|
|
|
var minutes = date.getMinutes();
|
2014-01-11 20:56:21 +01:00
|
|
|
return minutes - this._getDotMinute(date);
|
2014-01-11 03:26:53 +01:00
|
|
|
},
|
2014-01-11 20:56:21 +01:00
|
|
|
_getDotMinute: function(date) {
|
|
|
|
if (typeof this._language().getDotMinute === 'function') {
|
|
|
|
return this._language().getDotMinute(date);
|
2014-01-11 03:26:53 +01:00
|
|
|
}
|
|
|
|
var minutes = date.getMinutes();
|
|
|
|
return minutes % 5;
|
|
|
|
},
|
2014-01-11 20:56:21 +01:00
|
|
|
_normalizeHour: function(hour) {
|
2014-01-11 03:26:53 +01:00
|
|
|
if (hour > 12) {
|
|
|
|
hour %= 12;
|
|
|
|
}
|
|
|
|
if (hour == 0) {
|
|
|
|
return 12;
|
|
|
|
}
|
|
|
|
return hour;
|
2014-01-11 12:18:11 +01:00
|
|
|
},
|
2014-01-11 20:56:21 +01:00
|
|
|
_create: function() {
|
|
|
|
this._id = window._uhr.id++;
|
|
|
|
this._setupHTML();
|
|
|
|
this._wireFunctionality();
|
2014-01-11 22:54:46 +01:00
|
|
|
if (this.options.time !== undefined) {
|
|
|
|
this.time(this.options.time);
|
|
|
|
}
|
2014-01-11 12:18:11 +01:00
|
|
|
},
|
2014-01-11 20:56:21 +01:00
|
|
|
_setupHTML: function() {
|
|
|
|
var e = this.element;
|
|
|
|
// Base clock area
|
2014-01-11 03:26:53 +01:00
|
|
|
e.addClass('uhr');
|
|
|
|
e.empty();
|
|
|
|
e.append('<span class="item dot dot1"></span>');
|
|
|
|
e.append('<span class="item dot dot2"></span>');
|
|
|
|
e.append('<span class="item dot dot3"></span>');
|
|
|
|
e.append('<span class="item dot dot4"></span>');
|
|
|
|
e.append('<div class="letterarea"></div>');
|
|
|
|
e.append('<div class="reflection"></div>');
|
2014-01-11 20:56:21 +01:00
|
|
|
e.css('width', this.options.width);
|
2014-01-11 03:26:53 +01:00
|
|
|
var realWidth = e.width()
|
|
|
|
e.width(realWidth);
|
|
|
|
e.height(realWidth);
|
|
|
|
e.css('font-size', (realWidth / 40) + 'px');
|
|
|
|
|
2014-01-20 15:47:13 +01:00
|
|
|
if (this.options.controls) {
|
|
|
|
// on/off switch
|
|
|
|
var toggleSwitch = $('<div class="onoffswitch" id="uhr-onoffswitch' + this._id + '"></div>');
|
|
|
|
toggleSwitch.append('<input type="checkbox" class="onoffswitch-checkbox" id="uhr-onoffswitch-checkbox' + this._id + '" checked="checked" />');
|
|
|
|
toggleSwitch.append('<label class="onoffswitch-label" for="uhr-onoffswitch-checkbox' + this._id + '">'
|
|
|
|
+ '<div class="onoffswitch-inner"></div>'
|
|
|
|
+ '<div class="onoffswitch-switch"></div>'
|
|
|
|
+ '</label>');
|
|
|
|
e.after(toggleSwitch);
|
2014-01-11 03:26:53 +01:00
|
|
|
|
2014-01-20 15:47:13 +01:00
|
|
|
// language chooser
|
|
|
|
var languageChooser = $('<select id="uhr-languagechooser' + this._id + '"></select>')
|
|
|
|
for (var code in window._uhr.languages) {
|
|
|
|
if (window._uhr.languages.hasOwnProperty(code)) {
|
|
|
|
var language = window._uhr.languages[code];
|
|
|
|
languageChooser.append('<option value="' + code + '">' + language.language + '</option>');
|
|
|
|
}
|
2014-01-11 03:26:53 +01:00
|
|
|
}
|
2014-01-20 15:47:13 +01:00
|
|
|
e.after(languageChooser);
|
2014-01-11 03:26:53 +01:00
|
|
|
|
2014-01-20 15:47:13 +01:00
|
|
|
// theme chooser
|
|
|
|
var themeChooser = $('<select id="uhr-themechooser' + this._id + '"></select>');
|
|
|
|
themeChooser.append('<option value="black">Schwarz</option>');
|
|
|
|
themeChooser.append('<option value="red">Rot</option>');
|
|
|
|
themeChooser.append('<option value="blue">Blau</option>');
|
|
|
|
themeChooser.append('<option value="green">Grün</option>');
|
|
|
|
themeChooser.append('<option value="white">Weiss</option>');
|
|
|
|
e.after(themeChooser);
|
|
|
|
}
|
2014-01-11 20:56:21 +01:00
|
|
|
},
|
|
|
|
_wireFunctionality: function() {
|
|
|
|
var e = this.element;
|
|
|
|
var uhr = this;
|
2014-01-11 03:26:53 +01:00
|
|
|
|
2014-01-11 20:56:21 +01:00
|
|
|
// on/off switch
|
|
|
|
var toggleSwitch = $('#uhr-onoffswitch-checkbox' + this._id);
|
|
|
|
toggleSwitch.on('click', function() {
|
|
|
|
uhr.toggle();
|
2014-01-11 03:26:53 +01:00
|
|
|
});
|
2014-01-11 20:56:21 +01:00
|
|
|
var status = $.cookie('uhr-status' + this._id);
|
|
|
|
if (status == undefined || this.options.force) {
|
|
|
|
status = this.options.status;
|
2014-01-11 03:26:53 +01:00
|
|
|
}
|
2014-01-11 20:56:21 +01:00
|
|
|
toggleSwitch.prop('checked', status == 'on');
|
2014-01-11 03:26:53 +01:00
|
|
|
if (status == 'on') {
|
2014-01-11 20:56:21 +01:00
|
|
|
this.start();
|
2014-01-11 03:26:53 +01:00
|
|
|
} else {
|
2014-01-11 20:56:21 +01:00
|
|
|
this.stop();
|
2014-01-11 03:26:53 +01:00
|
|
|
}
|
|
|
|
|
2014-01-11 20:56:21 +01:00
|
|
|
// language chooser
|
|
|
|
var languageChooser = $('#uhr-languagechooser' + this._id);
|
|
|
|
languageChooser.on('change', function() {
|
|
|
|
uhr.language(this.value);
|
2014-01-11 03:26:53 +01:00
|
|
|
});
|
2014-01-11 20:56:21 +01:00
|
|
|
var selectedLanguage = $.cookie('uhr-language' + this._id);
|
|
|
|
if (selectedLanguage == undefined || this.options.force) {
|
|
|
|
selectedLanguage = this.options.language;
|
2014-01-11 03:26:53 +01:00
|
|
|
}
|
2014-01-11 20:56:21 +01:00
|
|
|
languageChooser.val(selectedLanguage);
|
|
|
|
this.options.language = "";
|
|
|
|
this.language(selectedLanguage);
|
2014-01-11 03:26:53 +01:00
|
|
|
|
2014-01-11 20:56:21 +01:00
|
|
|
// theme chooser
|
|
|
|
var themeChooser = $('#uhr-themechooser' + this._id);
|
|
|
|
themeChooser.on('change', function() {
|
|
|
|
uhr.theme(this.value);
|
2014-01-11 03:26:53 +01:00
|
|
|
});
|
2014-01-11 20:56:21 +01:00
|
|
|
var selectedTheme = $.cookie('uhr-theme' + this._id);
|
|
|
|
if (selectedTheme == undefined || this.options.force) {
|
|
|
|
selectedTheme = this.options.theme;
|
2014-01-11 03:26:53 +01:00
|
|
|
}
|
2014-01-11 20:56:21 +01:00
|
|
|
themeChooser.val(selectedTheme);
|
|
|
|
this.options.theme = "";
|
|
|
|
this.theme(selectedTheme);
|
2013-11-26 13:25:50 +01:00
|
|
|
}
|
2013-11-28 08:51:37 +01:00
|
|
|
});
|
2014-01-11 12:18:11 +01:00
|
|
|
})(jQuery);
|
2014-01-11 20:56:21 +01:00
|
|
|
|
2013-11-26 13:25:50 +01:00
|
|
|
/**
|
|
|
|
* Hilfsklasse zum Rendern der Uhr.
|
|
|
|
* @param layout Layout-Objekt, das gerendert werden soll.
|
|
|
|
* @param renderarea Das jQuery-gewrappte HTML-Element, auf dem gerendert werden soll.
|
|
|
|
*/
|
|
|
|
function UhrRenderer(layout, renderarea) {
|
|
|
|
this.layout = layout;
|
|
|
|
this.renderarea = renderarea;
|
|
|
|
}
|
2014-01-11 22:54:46 +01:00
|
|
|
UhrRenderer.prototype.render = function(uhr, beforeshow) {
|
2013-11-26 13:25:50 +01:00
|
|
|
var renderer = this;
|
|
|
|
this.renderarea.fadeOut('fast', function() {
|
|
|
|
renderer.renderarea.empty();
|
|
|
|
for (var y = 0; y < renderer.layout.values.length; y++) {
|
|
|
|
for (var x = 0; x < renderer.layout.values[y].length; x++) {
|
|
|
|
var letter = renderer.layout.values[y][x];
|
|
|
|
renderer.renderarea.append(letter.toString());
|
|
|
|
}
|
|
|
|
if (y < renderer.layout.values.length - 1) {
|
|
|
|
renderer.renderarea.append('<br/>');
|
|
|
|
}
|
|
|
|
}
|
2014-01-11 22:54:46 +01:00
|
|
|
if (typeof beforeshow === 'function') {
|
|
|
|
beforeshow();
|
|
|
|
}
|
2013-11-26 13:25:50 +01:00
|
|
|
renderer.renderarea.fadeIn('fast');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Ein Buchstabe. Hilfsklasse für den Renderer und Inhalt der Layout-Arrays.
|
|
|
|
* @param value Der Buchstabe, der Dargestellt werden soll.
|
|
|
|
* @param style Die CSS-Styleklassen des Buchstabens.
|
|
|
|
*/
|
2013-11-25 16:58:21 +01:00
|
|
|
function Letter(value, style) {
|
2013-11-25 10:57:30 +01:00
|
|
|
this.value = value;
|
2013-11-25 16:58:21 +01:00
|
|
|
this.style = style || '';
|
2013-11-25 10:57:30 +01:00
|
|
|
this.getStyle = function() {
|
2013-11-26 13:25:50 +01:00
|
|
|
return 'item letter ' + style;
|
2013-11-25 10:57:30 +01:00
|
|
|
}
|
|
|
|
this.getValue = function() {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Letter.prototype.toString = function letterToString() {
|
2013-11-26 13:25:50 +01:00
|
|
|
return '<span class="' + this.getStyle() + '">' + this.getValue() + '</span>';
|
2013-11-25 10:57:30 +01:00
|
|
|
}
|
2013-11-25 11:05:25 +01:00
|
|
|
/**
|
|
|
|
* Hilfsfunktion, um einen Buchstaben zu erzeugen.
|
|
|
|
*
|
|
|
|
* @param letter string: Der Buchstabe, der angezeigt werden soll
|
|
|
|
* @example l('I', 'is') erzeugt den Buchstaben 'I' mit der CSS-Styleklasse 'is'
|
|
|
|
*/
|
2013-11-25 10:57:30 +01:00
|
|
|
function l(letter, style) {
|
|
|
|
return new Letter(letter, style);
|
|
|
|
}
|
2013-11-25 11:05:25 +01:00
|
|
|
/**
|
|
|
|
* Hilfsfunktion, um einen Buchstaben zu erzeugen, der zu einem Stunden-Wort gehört.
|
|
|
|
*
|
2013-11-25 12:53:54 +01:00
|
|
|
* @param letter string: Der Buchstabe, der angezeigt werden soll
|
|
|
|
* @param hours... integer: Eine Aufzählung von Stundenwerten, zu welchen der Buchstabe als aktiv angezeigt werden soll
|
2014-01-11 23:33:17 +01:00
|
|
|
* @example h('Z', 2, 11) erzeugt den Buchstaben 'Z', der um 2:xx, 11:xx, 14:xx und 23:xx aktiv angezeigt wird
|
2013-11-25 11:05:25 +01:00
|
|
|
*/
|
2013-11-25 12:53:54 +01:00
|
|
|
function h(letter) {
|
|
|
|
var style = '';
|
|
|
|
for (var i = 1; i < arguments.length; i++) {
|
|
|
|
style += ' hour' + arguments[i];
|
|
|
|
}
|
|
|
|
return l(letter, style);
|
2013-11-25 10:57:30 +01:00
|
|
|
}
|
2013-11-25 11:05:25 +01:00
|
|
|
/**
|
|
|
|
* Hilfsfunktion, um einen Buchstaben zu erzeugen, der zu einem Minuten-Wort gehört.
|
|
|
|
*
|
|
|
|
* @param letter string: Der Buchstabe, der angezeigt werden soll
|
2013-11-25 12:53:54 +01:00
|
|
|
* @param minutes... integer: Eine Aufzählung von Minutenwerten, zu welchen der Buchstabe als aktiv angezeigt werden soll
|
2013-11-25 11:05:25 +01:00
|
|
|
* @example m('A', 5, 10, 15, 20, 35) erzeugt den Buchstaben 'A' der um :05, :10, :15, :20 und :35 aktiv angezeigt wird
|
|
|
|
*/
|
2013-11-25 10:57:30 +01:00
|
|
|
function m(letter) {
|
|
|
|
var style = '';
|
|
|
|
for (var i = 1; i < arguments.length; i++) {
|
|
|
|
style += ' minute' + arguments[i];
|
|
|
|
}
|
|
|
|
return l(letter, style);
|
|
|
|
}
|