Files
iD/modules/ui/loading.js
Kushan Joshi 780960c711 interim
2016-07-06 00:34:35 +05:30

47 lines
1.1 KiB
JavaScript

import { modal } from './modal';
export function Loading(context) {
var message = '',
blocking = false,
modalSelection;
var loading = function(selection) {
modalSelection = modal(selection, blocking);
var loadertext = modalSelection.select('.content')
.classed('loading-modal', true)
.append('div')
.attr('class', 'modal-section fillL');
loadertext.append('img')
.attr('class', 'loader')
.attr('src', context.imagePath('loader-white.gif'));
loadertext.append('h3')
.text(message);
modalSelection.select('button.close')
.attr('class', 'hide');
return loading;
};
loading.message = function(_) {
if (!arguments.length) return message;
message = _;
return loading;
};
loading.blocking = function(_) {
if (!arguments.length) return blocking;
blocking = _;
return loading;
};
loading.close = function() {
modalSelection.remove();
};
return loading;
}