mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 04:05:42 +01:00
Merge pull request 'Show edit tab initially also when saved in preview tab previously' (#3969) from beowulf/show-edit-tab-initially-also-editing-comments-multiple-times-and-saving-in-preview-mode into forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3969 Reviewed-by: Gusted <gusted@noreply.codeberg.org>
This commit is contained in:
commit
0e7095720b
2 changed files with 34 additions and 0 deletions
31
tests/e2e/edit-comment.test.e2e.js
Normal file
31
tests/e2e/edit-comment.test.e2e.js
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
// @ts-check
|
||||||
|
import {test, expect} from '@playwright/test';
|
||||||
|
import {login_user, load_logged_in_context} from './utils_e2e.js';
|
||||||
|
|
||||||
|
test.beforeAll(async ({browser}, workerInfo) => {
|
||||||
|
await login_user(browser, workerInfo, 'user2');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Always focus edit tab first on edit', async ({browser}, workerInfo) => {
|
||||||
|
const context = await load_logged_in_context(browser, workerInfo, 'user2');
|
||||||
|
const page = await context.newPage();
|
||||||
|
const response = await page.goto('/user2/repo1/issues/1');
|
||||||
|
await expect(response?.status()).toBe(200);
|
||||||
|
|
||||||
|
// Switch to preview tab and save
|
||||||
|
await page.click('#issue-1 .comment-container .context-menu');
|
||||||
|
await page.click('#issue-1 .comment-container .menu>.edit-content');
|
||||||
|
await page.locator('#issue-1 .comment-container a[data-tab-for=markdown-previewer]').click();
|
||||||
|
await page.click('#issue-1 .comment-container .save');
|
||||||
|
|
||||||
|
await page.waitForLoadState('networkidle');
|
||||||
|
|
||||||
|
// Edit again and assert that edit tab should be active (and not preview tab)
|
||||||
|
await page.click('#issue-1 .comment-container .context-menu');
|
||||||
|
await page.click('#issue-1 .comment-container .menu>.edit-content');
|
||||||
|
const editTab = page.locator('#issue-1 .comment-container a[data-tab-for=markdown-writer]');
|
||||||
|
const previewTab = page.locator('#issue-1 .comment-container a[data-tab-for=markdown-previewer]');
|
||||||
|
|
||||||
|
await expect(editTab).toHaveClass(/active/);
|
||||||
|
await expect(previewTab).not.toHaveClass(/active/);
|
||||||
|
});
|
|
@ -479,6 +479,9 @@ async function onEditContent(event) {
|
||||||
editContentZone.addEventListener('ce-quick-submit', saveAndRefresh);
|
editContentZone.addEventListener('ce-quick-submit', saveAndRefresh);
|
||||||
editContentZone.querySelector('.cancel.button').addEventListener('click', cancelAndReset);
|
editContentZone.querySelector('.cancel.button').addEventListener('click', cancelAndReset);
|
||||||
editContentZone.querySelector('.save.button').addEventListener('click', saveAndRefresh);
|
editContentZone.querySelector('.save.button').addEventListener('click', saveAndRefresh);
|
||||||
|
} else {
|
||||||
|
const tabEditor = editContentZone.querySelector('.combo-markdown-editor').querySelector('.tabular.menu > a[data-tab-for=markdown-writer]');
|
||||||
|
tabEditor?.click();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show write/preview tab and copy raw content as needed
|
// Show write/preview tab and copy raw content as needed
|
||||||
|
|
Loading…
Reference in a new issue