notificationwidget.js
88 lines
| 2.8 KiB
| application/javascript
|
JavascriptLexer
Brian Granger
|
r6047 | //---------------------------------------------------------------------------- | ||
// Copyright (C) 2008-2011 The IPython Development Team | ||||
// | ||||
// Distributed under the terms of the BSD License. The full license is in | ||||
// the file COPYING, distributed as part of this software. | ||||
//---------------------------------------------------------------------------- | ||||
//============================================================================ | ||||
// Notification widget | ||||
//============================================================================ | ||||
var IPython = (function (IPython) { | ||||
Matthias BUSSONNIER
|
r8206 | "use strict"; | ||
Brian Granger
|
r6047 | var utils = IPython.utils; | ||
var NotificationWidget = function (selector) { | ||||
this.selector = selector; | ||||
this.timeout = null; | ||||
this.busy = false; | ||||
if (this.selector !== undefined) { | ||||
this.element = $(selector); | ||||
this.style(); | ||||
} | ||||
Matthias BUSSONNIER
|
r8025 | this.element.button(); | ||
this.element.hide(); | ||||
var that = this; | ||||
Matthias BUSSONNIER
|
r8074 | |||
Matthias BUSSONNIER
|
r15042 | this.inner = $('<span/>'); | ||
this.element.append(this.inner); | ||||
Brian Granger
|
r6047 | }; | ||
NotificationWidget.prototype.style = function () { | ||||
MinRK
|
r10932 | this.element.addClass('notification_widget pull-right'); | ||
Brian Granger
|
r6047 | this.element.addClass('border-box-sizing'); | ||
}; | ||||
Matthias BUSSONNIER
|
r8074 | // msg : message to display | ||
// timeout : time in ms before diseapearing | ||||
// | ||||
// if timeout <= 0 | ||||
// click_callback : function called if user click on notification | ||||
// could return false to prevent the notification to be dismissed | ||||
Matthias BUSSONNIER
|
r15042 | NotificationWidget.prototype.set_message = function (msg, timeout, click_callback, opts) { | ||
var opts = opts || {}; | ||||
Matthias BUSSONNIER
|
r8205 | var callback = click_callback || function() {return false;}; | ||
Brian Granger
|
r6047 | var that = this; | ||
Matthias BUSSONNIER
|
r15042 | this.inner.attr('class', opts.icon); | ||
this.inner.attr('title', opts.title); | ||||
this.inner.text(msg); | ||||
Brian Granger
|
r6047 | this.element.fadeIn(100); | ||
if (this.timeout !== null) { | ||||
clearTimeout(this.timeout); | ||||
this.timeout = null; | ||||
Matthias BUSSONNIER
|
r8205 | } | ||
Matthias BUSSONNIER
|
r8025 | if (timeout !== undefined && timeout >=0) { | ||
Brian Granger
|
r6047 | this.timeout = setTimeout(function () { | ||
Matthias BUSSONNIER
|
r15042 | that.element.fadeOut(100, function () {that.inner.text('');}); | ||
Brian Granger
|
r6047 | that.timeout = null; | ||
Matthias BUSSONNIER
|
r8025 | }, timeout); | ||
Matthias BUSSONNIER
|
r8074 | } else { | ||
Matthias BUSSONNIER
|
r8205 | this.element.click(function() { | ||
if( callback() != false ) { | ||||
Matthias BUSSONNIER
|
r15042 | that.element.fadeOut(100, function () {that.inner.text('');}); | ||
Matthias BUSSONNIER
|
r8205 | that.element.unbind('click'); | ||
Matthias BUSSONNIER
|
r8074 | } | ||
if (that.timeout !== undefined) { | ||||
Matthias BUSSONNIER
|
r8205 | that.timeout = undefined; | ||
Matthias BUSSONNIER
|
r8074 | clearTimeout(that.timeout); | ||
} | ||||
}); | ||||
} | ||||
Brian Granger
|
r6047 | }; | ||
NotificationWidget.prototype.get_message = function () { | ||||
Matthias BUSSONNIER
|
r15042 | return this.inner.html(); | ||
Brian Granger
|
r6047 | }; | ||
IPython.NotificationWidget = NotificationWidget; | ||||
return IPython; | ||||
}(IPython)); | ||||