当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript ConfigurationChangeEvent.change方法代码示例

本文整理汇总了TypeScript中vs/platform/configuration/common/configurationModels.ConfigurationChangeEvent.change方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ConfigurationChangeEvent.change方法的具体用法?TypeScript ConfigurationChangeEvent.change怎么用?TypeScript ConfigurationChangeEvent.change使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在vs/platform/configuration/common/configurationModels.ConfigurationChangeEvent的用法示例。


在下文中一共展示了ConfigurationChangeEvent.change方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: test

	test('changeEvent affecting keys for resources', () => {
		let testObject = new ConfigurationChangeEvent();

		testObject.change(['window.title']);
		testObject.change(['window.zoomLevel'], URI.file('file1'));
		testObject.change(['workbench.editor.enablePreview'], URI.file('file2'));
		testObject.change(['window.restoreFullscreen'], URI.file('file1'));
		testObject.change(['window.restoreWindows'], URI.file('file2'));

		assert.deepEqual(testObject.affectedKeys, ['window.title', 'window.zoomLevel', 'window.restoreFullscreen', 'workbench.editor.enablePreview', 'window.restoreWindows']);

		assert.ok(testObject.affectsConfiguration('window.zoomLevel'));
		assert.ok(testObject.affectsConfiguration('window.zoomLevel', URI.file('file1')));
		assert.ok(!testObject.affectsConfiguration('window.zoomLevel', URI.file('file2')));

		assert.ok(testObject.affectsConfiguration('window.restoreFullscreen'));
		assert.ok(testObject.affectsConfiguration('window.restoreFullscreen', URI.file('file1')));
		assert.ok(!testObject.affectsConfiguration('window.restoreFullscreen', URI.file('file2')));

		assert.ok(testObject.affectsConfiguration('window.restoreWindows'));
		assert.ok(testObject.affectsConfiguration('window.restoreWindows', URI.file('file2')));
		assert.ok(!testObject.affectsConfiguration('window.restoreWindows', URI.file('file1')));

		assert.ok(testObject.affectsConfiguration('window.title'));
		assert.ok(testObject.affectsConfiguration('window.title', URI.file('file1')));
		assert.ok(testObject.affectsConfiguration('window.title', URI.file('file2')));

		assert.ok(testObject.affectsConfiguration('window'));
		assert.ok(testObject.affectsConfiguration('window', URI.file('file1')));
		assert.ok(testObject.affectsConfiguration('window', URI.file('file2')));

		assert.ok(testObject.affectsConfiguration('workbench.editor.enablePreview'));
		assert.ok(testObject.affectsConfiguration('workbench.editor.enablePreview', URI.file('file2')));
		assert.ok(!testObject.affectsConfiguration('workbench.editor.enablePreview', URI.file('file1')));

		assert.ok(testObject.affectsConfiguration('workbench.editor'));
		assert.ok(testObject.affectsConfiguration('workbench.editor', URI.file('file2')));
		assert.ok(!testObject.affectsConfiguration('workbench.editor', URI.file('file1')));

		assert.ok(testObject.affectsConfiguration('workbench'));
		assert.ok(testObject.affectsConfiguration('workbench', URI.file('file2')));
		assert.ok(!testObject.affectsConfiguration('workbench', URI.file('file1')));

		assert.ok(!testObject.affectsConfiguration('files'));
		assert.ok(!testObject.affectsConfiguration('files', URI.file('file1')));
		assert.ok(!testObject.affectsConfiguration('files', URI.file('file2')));
	});
开发者ID:VishalMadhvani,项目名称:vscode,代码行数:47,代码来源:configurationModels.test.ts

示例2: test

	test('changeEvent affecting workspace folders', () => {
		let configurationChangeEvent = new ConfigurationChangeEvent();
		configurationChangeEvent.change(['window.title']);
		configurationChangeEvent.change(['window.zoomLevel'], URI.file('folder1'));
		configurationChangeEvent.change(['workbench.editor.enablePreview'], URI.file('folder2'));
		configurationChangeEvent.change(['window.restoreFullscreen'], URI.file('folder1'));
		configurationChangeEvent.change(['window.restoreWindows'], URI.file('folder2'));
		configurationChangeEvent.telemetryData(ConfigurationTarget.WORKSPACE, {});

		let testObject = new WorkspaceConfigurationChangeEvent(configurationChangeEvent, new Workspace('id',
			[new WorkspaceFolder({ index: 0, name: '1', uri: URI.file('folder1') }),
			new WorkspaceFolder({ index: 1, name: '2', uri: URI.file('folder2') }),
			new WorkspaceFolder({ index: 2, name: '3', uri: URI.file('folder3') })]));

		assert.deepEqual(testObject.affectedKeys, ['window.title', 'window.zoomLevel', 'window.restoreFullscreen', 'workbench.editor.enablePreview', 'window.restoreWindows']);
		assert.equal(testObject.source, ConfigurationTarget.WORKSPACE);

		assert.ok(testObject.affectsConfiguration('window.zoomLevel'));
		assert.ok(testObject.affectsConfiguration('window.zoomLevel', URI.file('folder1')));
		assert.ok(testObject.affectsConfiguration('window.zoomLevel', URI.file(join('folder1', 'file1'))));
		assert.ok(!testObject.affectsConfiguration('window.zoomLevel', URI.file('file1')));
		assert.ok(!testObject.affectsConfiguration('window.zoomLevel', URI.file('file2')));
		assert.ok(!testObject.affectsConfiguration('window.zoomLevel', URI.file(join('folder2', 'file2'))));
		assert.ok(!testObject.affectsConfiguration('window.zoomLevel', URI.file(join('folder3', 'file3'))));

		assert.ok(testObject.affectsConfiguration('window.restoreFullscreen'));
		assert.ok(testObject.affectsConfiguration('window.restoreFullscreen', URI.file(join('folder1', 'file1'))));
		assert.ok(testObject.affectsConfiguration('window.restoreFullscreen', URI.file('folder1')));
		assert.ok(!testObject.affectsConfiguration('window.restoreFullscreen', URI.file('file1')));
		assert.ok(!testObject.affectsConfiguration('window.restoreFullscreen', URI.file('file2')));
		assert.ok(!testObject.affectsConfiguration('window.restoreFullscreen', URI.file(join('folder2', 'file2'))));
		assert.ok(!testObject.affectsConfiguration('window.restoreFullscreen', URI.file(join('folder3', 'file3'))));

		assert.ok(testObject.affectsConfiguration('window.restoreWindows'));
		assert.ok(testObject.affectsConfiguration('window.restoreWindows', URI.file('folder2')));
		assert.ok(testObject.affectsConfiguration('window.restoreWindows', URI.file(join('folder2', 'file2'))));
		assert.ok(!testObject.affectsConfiguration('window.restoreWindows', URI.file('file2')));
		assert.ok(!testObject.affectsConfiguration('window.restoreWindows', URI.file(join('folder1', 'file1'))));
		assert.ok(!testObject.affectsConfiguration('window.restoreWindows', URI.file(join('folder3', 'file3'))));

		assert.ok(testObject.affectsConfiguration('window.title'));
		assert.ok(testObject.affectsConfiguration('window.title', URI.file('folder1')));
		assert.ok(testObject.affectsConfiguration('window.title', URI.file(join('folder1', 'file1'))));
		assert.ok(testObject.affectsConfiguration('window.title', URI.file('folder2')));
		assert.ok(testObject.affectsConfiguration('window.title', URI.file(join('folder2', 'file2'))));
		assert.ok(testObject.affectsConfiguration('window.title', URI.file('folder3')));
		assert.ok(testObject.affectsConfiguration('window.title', URI.file(join('folder3', 'file3'))));
		assert.ok(testObject.affectsConfiguration('window.title', URI.file('file1')));
		assert.ok(testObject.affectsConfiguration('window.title', URI.file('file2')));
		assert.ok(testObject.affectsConfiguration('window.title', URI.file('file3')));

		assert.ok(testObject.affectsConfiguration('window'));
		assert.ok(testObject.affectsConfiguration('window', URI.file('folder1')));
		assert.ok(testObject.affectsConfiguration('window', URI.file(join('folder1', 'file1'))));
		assert.ok(testObject.affectsConfiguration('window', URI.file('folder2')));
		assert.ok(testObject.affectsConfiguration('window', URI.file(join('folder2', 'file2'))));
		assert.ok(testObject.affectsConfiguration('window', URI.file('folder3')));
		assert.ok(testObject.affectsConfiguration('window', URI.file(join('folder3', 'file3'))));
		assert.ok(testObject.affectsConfiguration('window', URI.file('file1')));
		assert.ok(testObject.affectsConfiguration('window', URI.file('file2')));
		assert.ok(testObject.affectsConfiguration('window', URI.file('file3')));

		assert.ok(testObject.affectsConfiguration('workbench.editor.enablePreview'));
		assert.ok(testObject.affectsConfiguration('workbench.editor.enablePreview', URI.file('folder2')));
		assert.ok(testObject.affectsConfiguration('workbench.editor.enablePreview', URI.file(join('folder2', 'file2'))));
		assert.ok(!testObject.affectsConfiguration('workbench.editor.enablePreview', URI.file('folder1')));
		assert.ok(!testObject.affectsConfiguration('workbench.editor.enablePreview', URI.file(join('folder1', 'file1'))));
		assert.ok(!testObject.affectsConfiguration('workbench.editor.enablePreview', URI.file('folder3')));

		assert.ok(testObject.affectsConfiguration('workbench.editor'));
		assert.ok(testObject.affectsConfiguration('workbench.editor', URI.file('folder2')));
		assert.ok(testObject.affectsConfiguration('workbench.editor', URI.file(join('folder2', 'file2'))));
		assert.ok(!testObject.affectsConfiguration('workbench.editor', URI.file('folder1')));
		assert.ok(!testObject.affectsConfiguration('workbench.editor', URI.file(join('folder1', 'file1'))));
		assert.ok(!testObject.affectsConfiguration('workbench.editor', URI.file('folder3')));

		assert.ok(testObject.affectsConfiguration('workbench'));
		assert.ok(testObject.affectsConfiguration('workbench', URI.file('folder2')));
		assert.ok(testObject.affectsConfiguration('workbench', URI.file(join('folder2', 'file2'))));
		assert.ok(!testObject.affectsConfiguration('workbench', URI.file('folder1')));
		assert.ok(!testObject.affectsConfiguration('workbench', URI.file('folder3')));

		assert.ok(!testObject.affectsConfiguration('files'));
		assert.ok(!testObject.affectsConfiguration('files', URI.file('folder1')));
		assert.ok(!testObject.affectsConfiguration('files', URI.file(join('folder1', 'file1'))));
		assert.ok(!testObject.affectsConfiguration('files', URI.file('folder2')));
		assert.ok(!testObject.affectsConfiguration('files', URI.file(join('folder2', 'file2'))));
		assert.ok(!testObject.affectsConfiguration('files', URI.file('folder3')));
		assert.ok(!testObject.affectsConfiguration('files', URI.file(join('folder3', 'file3'))));
	});
开发者ID:VishalMadhvani,项目名称:vscode,代码行数:90,代码来源:configurationModels.test.ts


注:本文中的vs/platform/configuration/common/configurationModels.ConfigurationChangeEvent.change方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。