mapserver/static/js/search/SearchMenu.js

37 lines
884 B
JavaScript
Raw Normal View History

2019-06-11 15:16:41 +03:00
import SearchService from './SearchService.js';
import SearchStore from './SearchStore.js';
import SearchResult from './SearchResult.js';
export default {
2019-04-20 18:59:22 +03:00
view: function(vnode){
var style = {};
2019-04-21 22:51:43 +03:00
if (!SearchStore.show) {
style.display = "none";
}
2019-04-14 20:51:31 +03:00
function close(){
2019-04-15 08:54:11 +03:00
SearchService.clear();
2019-04-14 20:51:31 +03:00
}
2019-04-21 22:51:43 +03:00
function getContent(){
if (SearchStore.busy){
return m("div", m("i", { class: "fa fa-spinner"}));
} else {
return m(SearchResult, { map: vnode.attrs.map });
}
}
return m("div", { class: "card", id: "search-menu", style: style }, [
2019-04-14 20:51:31 +03:00
m("div", { class: "card-header" }, [
m("i", { class: "fa fa-search"}),
"Search",
m("i", { class: "fa fa-times float-right", onclick: close }),
]),
2019-04-21 22:51:43 +03:00
m("div", { class: "card-body", style: {overflow: "auto"} }, getContent())
]);
}
2019-04-15 08:54:11 +03:00
};