2021-07-16 16:41:58 +02:00
|
|
|
/*
|
2021-12-25 23:39:34 +01:00
|
|
|
* Copyright [2021] [wisemapping]
|
2021-07-16 16:41:58 +02:00
|
|
|
*
|
|
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
|
|
|
* "powered by wisemapping" text requirement on every single page;
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the license at
|
|
|
|
*
|
|
|
|
* http://www.wisemapping.org/license
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-12-05 18:25:16 +01:00
|
|
|
import { $assert } from '@wisemapping/core-js';
|
2021-12-05 17:33:09 +01:00
|
|
|
import $ from 'jquery';
|
2021-12-03 19:58:25 +01:00
|
|
|
|
|
|
|
class ToolbarNotifier {
|
|
|
|
constructor() {
|
2021-10-05 02:05:34 +02:00
|
|
|
this.container = $('#headerNotifier');
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
hide() {
|
|
|
|
this.container.hide();
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-12-03 19:58:25 +01:00
|
|
|
logMessage(msg) {
|
2021-10-05 02:05:34 +02:00
|
|
|
$assert(msg, 'msg can not be null');
|
|
|
|
// In case of print,embedded no message is displayed ....
|
|
|
|
if (this.container && !this.container.data('transitioning')) {
|
|
|
|
this.container.data('transitioning', true);
|
|
|
|
this.container.text(msg);
|
|
|
|
this.container.css({
|
|
|
|
top: '5px',
|
|
|
|
left: ($(window).width() - this.container.width()) / 2 - 9,
|
|
|
|
});
|
|
|
|
this.container.show().fadeOut(5000);
|
|
|
|
}
|
|
|
|
this.container.data('transitioning', false);
|
2021-12-03 19:58:25 +01:00
|
|
|
}
|
|
|
|
}
|
2021-07-16 16:41:58 +02:00
|
|
|
|
2021-10-05 02:05:34 +02:00
|
|
|
const toolbarNotifier = new ToolbarNotifier();
|
2021-12-03 19:58:25 +01:00
|
|
|
const $notify = (msg) => {
|
2021-10-05 02:05:34 +02:00
|
|
|
toolbarNotifier.logMessage(msg);
|
2021-07-16 16:41:58 +02:00
|
|
|
};
|
|
|
|
|
2021-09-02 18:32:23 +02:00
|
|
|
export { $notify };
|
2021-07-16 16:41:58 +02:00
|
|
|
export default ToolbarNotifier;
|