本文整理匯總了TypeScript中vs/base/common/objects.toObject函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript toObject函數的具體用法?TypeScript toObject怎麽用?TypeScript toObject使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了toObject函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: constructor
constructor(
container: HTMLElement,
private delegate: IDelegate<T>,
renderers: IRenderer<T, any>[],
options: IListViewOptions = DefaultOptions
) {
this.items = [];
this.itemId = 0;
this.rangeMap = new RangeMap();
this.renderers = toObject<IRenderer<T, any>, IRenderer<T, any>>(renderers, r => r.templateId);
this.cache = new RowCache(this.renderers);
this.lastRenderTop = 0;
this.lastRenderHeight = 0;
this._domNode = document.createElement('div');
this._domNode.className = 'monaco-list';
this.rowsContainer = document.createElement('div');
this.rowsContainer.className = 'monaco-list-rows';
this.gesture = new Gesture(this.rowsContainer);
this.scrollableElement = new ScrollableElement(this.rowsContainer, {
canUseTranslate3d: false,
alwaysConsumeMouseWheel: true,
horizontal: ScrollbarVisibility.Hidden,
vertical: ScrollbarVisibility.Auto,
useShadows: getOrDefault(options, o => o.useShadows, DefaultOptions.useShadows),
saveLastScrollTimeOnClassName: 'monaco-list-row'
});
this._domNode.appendChild(this.scrollableElement.getDomNode());
container.appendChild(this._domNode);
this.disposables = [this.rangeMap, this.gesture, this.scrollableElement];
this.scrollableElement.onScroll(this.onScroll, this, this.disposables);
domEvent(this.rowsContainer, TouchEventType.Change)(this.onTouchChange, this, this.disposables);
this.layout();
}
示例2: constructor
constructor(
container: HTMLElement,
private delegate: IDelegate<T>,
renderers: IRenderer<T, any>[]
) {
this.items = [];
this.itemId = 0;
this.rangeMap = new RangeMap();
this.renderers = toObject<IRenderer<T, any>, IRenderer<T, any>>(renderers, r => r.templateId);
this.cache = new RowCache(this.renderers);
this.lastRenderTop = 0;
this.lastRenderHeight = 0;
this._domNode = document.createElement('div');
this._domNode.className = 'monaco-list';
this._domNode.tabIndex = 0;
this.rowsContainer = document.createElement('div');
this.rowsContainer.className = 'monaco-list-rows';
this.gesture = new Gesture(this.rowsContainer);
this.scrollableElement = new ScrollableElement(this.rowsContainer, {
forbidTranslate3dUse: true,
horizontal: 'hidden',
vertical: 'auto',
useShadows: false,
saveLastScrollTimeOnClassName: 'monaco-list-row'
});
this.scrollableElement.onScroll((e) => {
this.render(e.scrollTop, e.height);
});
this._domNode.appendChild(this.scrollableElement.getDomNode());
container.appendChild(this._domNode);
this.toDispose = [this.rangeMap, this.gesture, this.scrollableElement];
this.layout();
}