17 lines
777 B
TypeScript
17 lines
777 B
TypeScript
|
import { BindingHandlersRegisterer } from "./Bindings/BindingHandlersRegisterer";
|
||
|
import { MessageHandler } from "./Common/MessageHandler";
|
||
|
import * as ko from "knockout";
|
||
|
import { Explorer } from "./Contracts/ViewModels";
|
||
|
|
||
|
export const applyExplorerBindings = (explorer: Explorer) => {
|
||
|
if (!!explorer) {
|
||
|
ko.applyBindings(explorer);
|
||
|
// This message should ideally be sent immediately after explorer has been initialized for optimal data explorer load times.
|
||
|
// TODO: Send another message to describe that the bindings have been applied, and handle message transfers accordingly in the portal
|
||
|
MessageHandler.sendMessage("ready");
|
||
|
window.dataExplorer = explorer;
|
||
|
BindingHandlersRegisterer.registerBindingHandlers();
|
||
|
$("#divExplorer").show();
|
||
|
}
|
||
|
};
|