aboutsummaryrefslogtreecommitdiffstats
path: root/ui/imports/ui/components/loading/loading.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/imports/ui/components/loading/loading.js')
-rw-r--r--ui/imports/ui/components/loading/loading.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/ui/imports/ui/components/loading/loading.js b/ui/imports/ui/components/loading/loading.js
new file mode 100644
index 0000000..a83f6d3
--- /dev/null
+++ b/ui/imports/ui/components/loading/loading.js
@@ -0,0 +1,30 @@
+/////////////////////////////////////////////////////////////////////////////////////////
+// Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems) and others /
+// /
+// All rights reserved. This program and the accompanying materials /
+// are made available under the terms of the Apache License, Version 2.0 /
+// which accompanies this distribution, and is available at /
+// http://www.apache.org/licenses/LICENSE-2.0 /
+/////////////////////////////////////////////////////////////////////////////////////////
+import './loading.html';
+
+Template.loading.rendered = function () {
+ if ( ! Session.get('loadingSplash') ) {
+ this.loading = window.pleaseWait({
+ logo: '/cisco-logo-load.png',
+ // logo: '',
+ backgroundColor: '#2196F3',
+ loadingHtml: message + spinner
+ });
+ Session.set('loadingSplash', true); // just show loading splash once
+ }
+};
+
+Template.loading.destroyed = function () {
+ if ( this.loading ) {
+ this.loading.finish();
+ }
+};
+
+var message = '<p class="loading-message">Loading Calipso</p>';
+var spinner = '<div class="sk-spinner sk-spinner-rotating-plane"></div>';