ep_author_hover 11.0.17 → 11.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -15,6 +15,7 @@ jobs:
|
|
|
15
15
|
uses: actions/checkout@v6
|
|
16
16
|
with:
|
|
17
17
|
repository: ether/etherpad-lite
|
|
18
|
+
path: etherpad-lite
|
|
18
19
|
- uses: pnpm/action-setup@v6
|
|
19
20
|
name: Install pnpm
|
|
20
21
|
with:
|
|
@@ -32,63 +33,36 @@ jobs:
|
|
|
32
33
|
restore-keys: |
|
|
33
34
|
${{ runner.os }}-pnpm-store-
|
|
34
35
|
-
|
|
35
|
-
name:
|
|
36
|
+
name: Checkout plugin repository
|
|
36
37
|
uses: actions/checkout@v6
|
|
37
38
|
with:
|
|
38
|
-
path:
|
|
39
|
-
-
|
|
40
|
-
name: export GIT_HASH to env
|
|
41
|
-
id: environment
|
|
42
|
-
run: |
|
|
43
|
-
cd ./node_modules/__tmp
|
|
44
|
-
echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
|
|
45
|
-
-
|
|
46
|
-
name: Determine plugin name
|
|
47
|
-
id: plugin_name
|
|
48
|
-
run: |
|
|
49
|
-
cd ./node_modules/__tmp
|
|
50
|
-
npx -c 'printf %s\\n "::set-output name=plugin_name::${npm_package_name}"'
|
|
51
|
-
-
|
|
52
|
-
name: Rename plugin directory
|
|
53
|
-
env:
|
|
54
|
-
PLUGIN_NAME: ${{ steps.plugin_name.outputs.plugin_name }}
|
|
55
|
-
run: |
|
|
56
|
-
mv ./node_modules/__tmp ./node_modules/"${PLUGIN_NAME}"
|
|
57
|
-
-
|
|
58
|
-
name: Install plugin dependencies
|
|
59
|
-
env:
|
|
60
|
-
PLUGIN_NAME: ${{ steps.plugin_name.outputs.plugin_name }}
|
|
61
|
-
run: |
|
|
62
|
-
cd ./node_modules/"${PLUGIN_NAME}"
|
|
63
|
-
pnpm i
|
|
64
|
-
# Etherpad core dependencies must be installed after installing the
|
|
65
|
-
# plugin's dependencies, otherwise npm will try to hoist common
|
|
66
|
-
# dependencies by removing them from src/node_modules and installing them
|
|
67
|
-
# in the top-level node_modules. As of v6.14.10, npm's hoist logic appears
|
|
68
|
-
# to be buggy, because it sometimes removes dependencies from
|
|
69
|
-
# src/node_modules but fails to add them to the top-level node_modules.
|
|
70
|
-
# Even if npm correctly hoists the dependencies, the hoisting seems to
|
|
71
|
-
# confuse tools such as `npm outdated`, `npm update`, and some ESLint
|
|
72
|
-
# rules.
|
|
39
|
+
path: plugin
|
|
73
40
|
-
|
|
74
41
|
name: Install Etherpad core dependencies
|
|
42
|
+
working-directory: ./etherpad-lite
|
|
75
43
|
run: bin/installDeps.sh
|
|
44
|
+
- name: Install plugin
|
|
45
|
+
working-directory: ./etherpad-lite
|
|
46
|
+
run: |
|
|
47
|
+
pnpm run plugins i --path ../../plugin
|
|
76
48
|
- name: Create settings.json
|
|
49
|
+
working-directory: ./etherpad-lite
|
|
77
50
|
run: cp ./src/tests/settings.json settings.json
|
|
78
51
|
- name: Run the frontend tests
|
|
52
|
+
working-directory: ./etherpad-lite
|
|
79
53
|
shell: bash
|
|
80
54
|
run: |
|
|
81
55
|
pnpm run dev &
|
|
82
56
|
connected=false
|
|
83
57
|
can_connect() {
|
|
84
|
-
|
|
85
|
-
|
|
58
|
+
curl -sSfo /dev/null http://localhost:9001/ || return 1
|
|
59
|
+
connected=true
|
|
86
60
|
}
|
|
87
61
|
now() { date +%s; }
|
|
88
62
|
start=$(now)
|
|
89
|
-
while [ $(($(now) - $start)) -le
|
|
90
|
-
|
|
63
|
+
while [ $(($(now) - $start)) -le 30 ] && ! can_connect; do
|
|
64
|
+
sleep 1
|
|
91
65
|
done
|
|
92
66
|
cd src
|
|
93
|
-
pnpm exec playwright install chromium
|
|
67
|
+
pnpm exec playwright install chromium --with-deps
|
|
94
68
|
pnpm run test-ui --project=chromium
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
},
|
|
7
7
|
"name": "ep_author_hover",
|
|
8
8
|
"description": "Adds author names to span titles (shows on hover), works as authors change their name. Hover includes author color and fast switching between author spans. Hat tip to Martyn York for the initial work on this.",
|
|
9
|
-
"version": "11.0.
|
|
9
|
+
"version": "11.0.19",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "https://github.com/ether/ep_author_hover.git"
|
|
@@ -1,11 +1,28 @@
|
|
|
1
1
|
import {expect, test} from '@playwright/test';
|
|
2
2
|
import {goToNewPad} from 'ep_etherpad-lite/tests/frontend-new/helper/padHelper';
|
|
3
|
-
import {showSettings} from 'ep_etherpad-lite/tests/frontend-new/helper/settingsHelper';
|
|
4
3
|
|
|
5
4
|
test.beforeEach(async ({page}) => {
|
|
6
5
|
await goToNewPad(page);
|
|
7
6
|
});
|
|
8
7
|
|
|
8
|
+
// Inline replacement for the shared `showSettings` helper. The shared helper
|
|
9
|
+
// performs a regular `.click()` on the settings cog, which times out in
|
|
10
|
+
// CI because core's `#toolbar-overlay` div intercepts pointer events while
|
|
11
|
+
// the editor is focused (the same root cause that required `force:true`
|
|
12
|
+
// in `clearAuthorship` / the ep_align fix). The overlay is purely cosmetic,
|
|
13
|
+
// so dispatching the click with `force:true` is the supported workaround.
|
|
14
|
+
const openSettingsPopup = async (page: import('@playwright/test').Page) => {
|
|
15
|
+
const settings = page.locator('#settings');
|
|
16
|
+
const isShown = async () =>
|
|
17
|
+
((await settings.getAttribute('class')) || '').includes('popup-show');
|
|
18
|
+
if (await isShown()) return;
|
|
19
|
+
await page
|
|
20
|
+
.locator("button[data-l10n-id='pad.toolbar.settings.title']")
|
|
21
|
+
.click({force: true});
|
|
22
|
+
await page.waitForFunction(
|
|
23
|
+
() => document.querySelector('#settings')!.classList.contains('popup-show'));
|
|
24
|
+
};
|
|
25
|
+
|
|
9
26
|
test.describe('ep_author_hover', () => {
|
|
10
27
|
test('plugin is loaded and exposes itself in clientVars', async ({page}) => {
|
|
11
28
|
const enabled = await page.evaluate(
|
|
@@ -14,7 +31,7 @@ test.describe('ep_author_hover', () => {
|
|
|
14
31
|
});
|
|
15
32
|
|
|
16
33
|
test('settings popup exposes the author-hover toggle', async ({page}) => {
|
|
17
|
-
await
|
|
34
|
+
await openSettingsPopup(page);
|
|
18
35
|
// The plugin renders into #mySettings via the eejsBlock_mySettings
|
|
19
36
|
// hook; its checkbox is identified by id="options-author-hover".
|
|
20
37
|
await expect(page.locator('#options-author-hover')).toBeAttached();
|