import { Code } from './code';
export class Editors {
constructor(private code: Code) { }
async saveOpenedFile(): Promise<any> {
await this.code.dispatchKeybinding(process.platform === 'darwin' ? 'cmd+s' : 'ctrl+s', async () => {
await this.code.waitForElements('.tab.active.dirty', false, results => results.length === 0);
});
}
async selectTab(fileName: string): Promise<void> {
let error: unknown | undefined = undefined;
let retries = 0;
while (retries < 10) {
await this.code.waitAndClick(`.tabs-container div.tab[data-resource-name$="${fileName}"]`);
try {
await this.waitForEditorFocus(fileName, 5 );
return;
} catch (e) {
error = e;
retries++;
}
}
throw error;
}
async waitForEditorFocus(fileName: string, retryCount?: number): Promise<void> {
await this.waitForActiveTab(fileName, undefined, retryCount);
await this.waitForActiveEditor(fileName, retryCount);
}
async waitForActiveTab(fileName: string, isDirty: boolean = false, retryCount?: number): Promise<void> {
await this.code.waitForElement(`.tabs-container div.tab.active${isDirty ? '.dirty' : ''}[aria-selected="true"][data-resource-name$="${fileName}"]`, undefined, retryCount);
}
async waitForActiveEditor(fileName: string, retryCount?: number): Promise<any> {
const selector = `.editor-instance .monaco-editor[data-uri$="${fileName}"] ${!this.code.editContextEnabled ? 'textarea' : '.native-edit-context'}`;
return this.code.waitForActiveElement(selector, retryCount);
}
async waitForTab(fileName: string, isDirty: boolean = false): Promise<void> {
await this.code.waitForElement(`.tabs-container div.tab${isDirty ? '.dirty' : ''}[data-resource-name$="${fileName}"]`);
}
async newUntitledFile(): Promise<void> {
const accept = () => this.waitForEditorFocus('Untitled-1');
if (process.platform === 'darwin') {
await this.code.dispatchKeybinding('cmd+n', accept);
} else {
await this.code.dispatchKeybinding('ctrl+n', accept);
}
}
}