pressship 0.1.11 → 0.1.13
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.
- package/.claude/skills/wordpress-plugin-publish/SKILL.md +58 -5
- package/README.md +13 -0
- package/assets/web/app.js +6425 -0
- package/assets/web/harness-sdk-icon-mono.svg +33 -0
- package/assets/web/harness-sdk-icon.svg +120 -0
- package/assets/web/index.html +392 -0
- package/assets/web/style.css +6454 -0
- package/dist/cli.js +14 -0
- package/dist/cli.js.map +1 -1
- package/dist/plugin/demo.d.ts +75 -4
- package/dist/plugin/demo.js +520 -31
- package/dist/plugin/demo.js.map +1 -1
- package/dist/utils/paths.d.ts +5 -0
- package/dist/utils/paths.js +15 -0
- package/dist/utils/paths.js.map +1 -1
- package/dist/web/ai-assistance.d.ts +70 -0
- package/dist/web/ai-assistance.js +262 -0
- package/dist/web/ai-assistance.js.map +1 -0
- package/dist/web/index.d.ts +9 -0
- package/dist/web/index.js +34 -0
- package/dist/web/index.js.map +1 -0
- package/dist/web/jobs.d.ts +33 -0
- package/dist/web/jobs.js +155 -0
- package/dist/web/jobs.js.map +1 -0
- package/dist/web/open-url.d.ts +1 -0
- package/dist/web/open-url.js +13 -0
- package/dist/web/open-url.js.map +1 -0
- package/dist/web/plugin-check-state.d.ts +47 -0
- package/dist/web/plugin-check-state.js +107 -0
- package/dist/web/plugin-check-state.js.map +1 -0
- package/dist/web/plugin-check.d.ts +11 -0
- package/dist/web/plugin-check.js +124 -0
- package/dist/web/plugin-check.js.map +1 -0
- package/dist/web/ports.d.ts +2 -0
- package/dist/web/ports.js +38 -0
- package/dist/web/ports.js.map +1 -0
- package/dist/web/registry.d.ts +49 -0
- package/dist/web/registry.js +106 -0
- package/dist/web/registry.js.map +1 -0
- package/dist/web/release.d.ts +87 -0
- package/dist/web/release.js +413 -0
- package/dist/web/release.js.map +1 -0
- package/dist/web/server.d.ts +24 -0
- package/dist/web/server.js +1419 -0
- package/dist/web/server.js.map +1 -0
- package/dist/web/settings.d.ts +36 -0
- package/dist/web/settings.js +72 -0
- package/dist/web/settings.js.map +1 -0
- package/dist/web/version-state.d.ts +28 -0
- package/dist/web/version-state.js +114 -0
- package/dist/web/version-state.js.map +1 -0
- package/dist/wordpress-org/publish.d.ts +1 -0
- package/dist/wordpress-org/publish.js +4 -2
- package/dist/wordpress-org/publish.js.map +1 -1
- package/dist/wordpress-org/submit.d.ts +1 -0
- package/dist/wordpress-org/submit.js +7 -5
- package/dist/wordpress-org/submit.js.map +1 -1
- package/package.json +8 -4
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<svg width="1024" height="1024" viewBox="0 0 1024 1024" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="title desc">
|
|
2
|
+
<title id="title">Harness SDK monochrome icon</title>
|
|
3
|
+
<desc id="desc">A monochrome H-shaped routing harness connected to six ports.</desc>
|
|
4
|
+
<g stroke="#f2f2f7" stroke-linecap="round" stroke-linejoin="round">
|
|
5
|
+
<path d="M214 296H286C329 296 350 328 372 360" stroke-width="38" opacity="0.46"/>
|
|
6
|
+
<path d="M214 512H416" stroke-width="38" opacity="0.46"/>
|
|
7
|
+
<path d="M214 728H286C329 728 350 696 372 664" stroke-width="38" opacity="0.46"/>
|
|
8
|
+
<path d="M810 296H738C695 296 674 328 652 360" stroke-width="38" opacity="0.46"/>
|
|
9
|
+
<path d="M810 512H608" stroke-width="38" opacity="0.46"/>
|
|
10
|
+
<path d="M810 728H738C695 728 674 696 652 664" stroke-width="38" opacity="0.46"/>
|
|
11
|
+
</g>
|
|
12
|
+
<g fill="#f2f2f7">
|
|
13
|
+
<rect x="318" y="244" width="116" height="536" rx="58"/>
|
|
14
|
+
<rect x="590" y="244" width="116" height="536" rx="58"/>
|
|
15
|
+
<rect x="378" y="454" width="268" height="116" rx="58"/>
|
|
16
|
+
</g>
|
|
17
|
+
<g fill="#f2f2f7">
|
|
18
|
+
<circle cx="214" cy="296" r="35" opacity="0.86"/>
|
|
19
|
+
<circle cx="214" cy="512" r="35" opacity="0.86"/>
|
|
20
|
+
<circle cx="214" cy="728" r="35" opacity="0.86"/>
|
|
21
|
+
<circle cx="810" cy="296" r="35" opacity="0.86"/>
|
|
22
|
+
<circle cx="810" cy="512" r="35" opacity="0.86"/>
|
|
23
|
+
<circle cx="810" cy="728" r="35" opacity="0.86"/>
|
|
24
|
+
</g>
|
|
25
|
+
<g stroke="#f2f2f7" opacity="0.18">
|
|
26
|
+
<circle cx="214" cy="296" r="58" stroke-width="8"/>
|
|
27
|
+
<circle cx="214" cy="512" r="58" stroke-width="8"/>
|
|
28
|
+
<circle cx="214" cy="728" r="58" stroke-width="8"/>
|
|
29
|
+
<circle cx="810" cy="296" r="58" stroke-width="8"/>
|
|
30
|
+
<circle cx="810" cy="512" r="58" stroke-width="8"/>
|
|
31
|
+
<circle cx="810" cy="728" r="58" stroke-width="8"/>
|
|
32
|
+
</g>
|
|
33
|
+
</svg>
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
<svg width="1024" height="1024" viewBox="0 0 1024 1024" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="title desc">
|
|
2
|
+
<title id="title">Harness SDK icon</title>
|
|
3
|
+
<desc id="desc">A graphite rounded-square icon with an H-shaped routing harness connected to six provider ports.</desc>
|
|
4
|
+
<defs>
|
|
5
|
+
<radialGradient id="backgroundGlow" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(336 216) rotate(48.7) scale(878)">
|
|
6
|
+
<stop stop-color="#34312b"/>
|
|
7
|
+
<stop offset="0.52" stop-color="#191817"/>
|
|
8
|
+
<stop offset="1" stop-color="#0d0c0b"/>
|
|
9
|
+
</radialGradient>
|
|
10
|
+
<linearGradient id="shellStroke" x1="170" y1="98" x2="854" y2="926" gradientUnits="userSpaceOnUse">
|
|
11
|
+
<stop stop-color="#74706a"/>
|
|
12
|
+
<stop offset="0.45" stop-color="#2f2c28"/>
|
|
13
|
+
<stop offset="1" stop-color="#7a746a"/>
|
|
14
|
+
</linearGradient>
|
|
15
|
+
<linearGradient id="railStroke" x1="176" y1="262" x2="848" y2="762" gradientUnits="userSpaceOnUse">
|
|
16
|
+
<stop stop-color="#9a9387"/>
|
|
17
|
+
<stop offset="0.48" stop-color="#57524b"/>
|
|
18
|
+
<stop offset="1" stop-color="#c3b59f"/>
|
|
19
|
+
</linearGradient>
|
|
20
|
+
<linearGradient id="barFill" x1="307" y1="220" x2="721" y2="804" gradientUnits="userSpaceOnUse">
|
|
21
|
+
<stop stop-color="#f5efe4"/>
|
|
22
|
+
<stop offset="0.36" stop-color="#c9bca7"/>
|
|
23
|
+
<stop offset="0.72" stop-color="#8c8273"/>
|
|
24
|
+
<stop offset="1" stop-color="#efe1c8"/>
|
|
25
|
+
</linearGradient>
|
|
26
|
+
<linearGradient id="bridgeFill" x1="381" y1="435" x2="642" y2="586" gradientUnits="userSpaceOnUse">
|
|
27
|
+
<stop stop-color="#fff8ea"/>
|
|
28
|
+
<stop offset="0.5" stop-color="#d9cab3"/>
|
|
29
|
+
<stop offset="1" stop-color="#9c917f"/>
|
|
30
|
+
</linearGradient>
|
|
31
|
+
<linearGradient id="innerShadow" x1="512" y1="148" x2="512" y2="876" gradientUnits="userSpaceOnUse">
|
|
32
|
+
<stop stop-color="#000000" stop-opacity="0"/>
|
|
33
|
+
<stop offset="1" stop-color="#000000" stop-opacity="0.36"/>
|
|
34
|
+
</linearGradient>
|
|
35
|
+
<linearGradient id="cyanDot" x1="184" y1="269" x2="236" y2="321" gradientUnits="userSpaceOnUse">
|
|
36
|
+
<stop stop-color="#b9f6ff"/>
|
|
37
|
+
<stop offset="1" stop-color="#41c7d7"/>
|
|
38
|
+
</linearGradient>
|
|
39
|
+
<linearGradient id="greenDot" x1="784" y1="269" x2="836" y2="321" gradientUnits="userSpaceOnUse">
|
|
40
|
+
<stop stop-color="#d4ffc4"/>
|
|
41
|
+
<stop offset="1" stop-color="#79d66b"/>
|
|
42
|
+
</linearGradient>
|
|
43
|
+
<linearGradient id="amberDot" x1="184" y1="486" x2="236" y2="538" gradientUnits="userSpaceOnUse">
|
|
44
|
+
<stop stop-color="#ffe4a6"/>
|
|
45
|
+
<stop offset="1" stop-color="#f0a93f"/>
|
|
46
|
+
</linearGradient>
|
|
47
|
+
<linearGradient id="roseDot" x1="784" y1="486" x2="836" y2="538" gradientUnits="userSpaceOnUse">
|
|
48
|
+
<stop stop-color="#ffd4df"/>
|
|
49
|
+
<stop offset="1" stop-color="#e87c96"/>
|
|
50
|
+
</linearGradient>
|
|
51
|
+
<linearGradient id="violetDot" x1="184" y1="703" x2="236" y2="755" gradientUnits="userSpaceOnUse">
|
|
52
|
+
<stop stop-color="#ddd6ff"/>
|
|
53
|
+
<stop offset="1" stop-color="#9b8cf2"/>
|
|
54
|
+
</linearGradient>
|
|
55
|
+
<linearGradient id="silverDot" x1="784" y1="703" x2="836" y2="755" gradientUnits="userSpaceOnUse">
|
|
56
|
+
<stop stop-color="#f7f3ea"/>
|
|
57
|
+
<stop offset="1" stop-color="#a79d8d"/>
|
|
58
|
+
</linearGradient>
|
|
59
|
+
<filter id="softShadow" x="68" y="68" width="888" height="888" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
60
|
+
<feDropShadow dx="0" dy="36" stdDeviation="44" flood-color="#000000" flood-opacity="0.48"/>
|
|
61
|
+
<feDropShadow dx="0" dy="4" stdDeviation="10" flood-color="#000000" flood-opacity="0.4"/>
|
|
62
|
+
</filter>
|
|
63
|
+
<filter id="markShadow" x="238" y="190" width="548" height="644" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
64
|
+
<feDropShadow dx="0" dy="22" stdDeviation="24" flood-color="#000000" flood-opacity="0.5"/>
|
|
65
|
+
<feDropShadow dx="0" dy="-2" stdDeviation="2" flood-color="#ffffff" flood-opacity="0.15"/>
|
|
66
|
+
</filter>
|
|
67
|
+
</defs>
|
|
68
|
+
|
|
69
|
+
<g filter="url(#softShadow)">
|
|
70
|
+
<rect x="86" y="86" width="852" height="852" rx="196" fill="url(#backgroundGlow)"/>
|
|
71
|
+
<rect x="92" y="92" width="840" height="840" rx="190" stroke="url(#shellStroke)" stroke-width="12"/>
|
|
72
|
+
<rect x="130" y="130" width="764" height="764" rx="158" stroke="#f8eedc" stroke-opacity="0.07" stroke-width="2"/>
|
|
73
|
+
<path d="M190 186C326 121 504 111 656 153C764 183 846 250 884 346" stroke="#fff7e8" stroke-opacity="0.08" stroke-width="8" stroke-linecap="round"/>
|
|
74
|
+
<rect x="86" y="86" width="852" height="852" rx="196" fill="url(#innerShadow)"/>
|
|
75
|
+
</g>
|
|
76
|
+
|
|
77
|
+
<g stroke="url(#railStroke)" stroke-width="28" stroke-linecap="round" stroke-linejoin="round" opacity="0.9">
|
|
78
|
+
<path d="M213 296H287C328 296 348 329 370 360"/>
|
|
79
|
+
<path d="M213 512H344C370 512 391 512 416 512"/>
|
|
80
|
+
<path d="M213 728H287C328 728 348 695 370 664"/>
|
|
81
|
+
<path d="M811 296H737C696 296 676 329 654 360"/>
|
|
82
|
+
<path d="M811 512H680C654 512 633 512 608 512"/>
|
|
83
|
+
<path d="M811 728H737C696 728 676 695 654 664"/>
|
|
84
|
+
</g>
|
|
85
|
+
|
|
86
|
+
<g filter="url(#markShadow)">
|
|
87
|
+
<rect x="314" y="244" width="118" height="536" rx="59" fill="url(#barFill)"/>
|
|
88
|
+
<rect x="592" y="244" width="118" height="536" rx="59" fill="url(#barFill)"/>
|
|
89
|
+
<rect x="378" y="454" width="268" height="116" rx="58" fill="url(#bridgeFill)"/>
|
|
90
|
+
<rect x="344" y="286" width="30" height="452" rx="15" fill="#fff9ee" fill-opacity="0.22"/>
|
|
91
|
+
<rect x="622" y="286" width="30" height="452" rx="15" fill="#fff9ee" fill-opacity="0.18"/>
|
|
92
|
+
<rect x="414" y="480" width="186" height="30" rx="15" fill="#fff9ee" fill-opacity="0.2"/>
|
|
93
|
+
</g>
|
|
94
|
+
|
|
95
|
+
<g stroke="#171513" stroke-width="12">
|
|
96
|
+
<circle cx="213" cy="296" r="46" fill="#24211d"/>
|
|
97
|
+
<circle cx="213" cy="512" r="46" fill="#24211d"/>
|
|
98
|
+
<circle cx="213" cy="728" r="46" fill="#24211d"/>
|
|
99
|
+
<circle cx="811" cy="296" r="46" fill="#24211d"/>
|
|
100
|
+
<circle cx="811" cy="512" r="46" fill="#24211d"/>
|
|
101
|
+
<circle cx="811" cy="728" r="46" fill="#24211d"/>
|
|
102
|
+
</g>
|
|
103
|
+
<g>
|
|
104
|
+
<circle cx="213" cy="296" r="23" fill="url(#cyanDot)"/>
|
|
105
|
+
<circle cx="811" cy="296" r="23" fill="url(#greenDot)"/>
|
|
106
|
+
<circle cx="213" cy="512" r="23" fill="url(#amberDot)"/>
|
|
107
|
+
<circle cx="811" cy="512" r="23" fill="url(#roseDot)"/>
|
|
108
|
+
<circle cx="213" cy="728" r="23" fill="url(#violetDot)"/>
|
|
109
|
+
<circle cx="811" cy="728" r="23" fill="url(#silverDot)"/>
|
|
110
|
+
</g>
|
|
111
|
+
|
|
112
|
+
<g opacity="0.55">
|
|
113
|
+
<circle cx="213" cy="296" r="58" stroke="#c7bba9" stroke-opacity="0.24" stroke-width="2"/>
|
|
114
|
+
<circle cx="811" cy="296" r="58" stroke="#c7bba9" stroke-opacity="0.24" stroke-width="2"/>
|
|
115
|
+
<circle cx="213" cy="512" r="58" stroke="#c7bba9" stroke-opacity="0.2" stroke-width="2"/>
|
|
116
|
+
<circle cx="811" cy="512" r="58" stroke="#c7bba9" stroke-opacity="0.2" stroke-width="2"/>
|
|
117
|
+
<circle cx="213" cy="728" r="58" stroke="#c7bba9" stroke-opacity="0.2" stroke-width="2"/>
|
|
118
|
+
<circle cx="811" cy="728" r="58" stroke="#c7bba9" stroke-opacity="0.2" stroke-width="2"/>
|
|
119
|
+
</g>
|
|
120
|
+
</svg>
|
|
@@ -0,0 +1,392 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en" class="wp-toolbar">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<meta name="color-scheme" content="light" />
|
|
7
|
+
<meta name="pressship-token" content="__PRESSSHIP_TOKEN__" />
|
|
8
|
+
<title>Pressship Studio ‹ Admin</title>
|
|
9
|
+
<link
|
|
10
|
+
rel="preconnect"
|
|
11
|
+
href="https://cdn.jsdelivr.net"
|
|
12
|
+
crossorigin
|
|
13
|
+
/>
|
|
14
|
+
<link
|
|
15
|
+
rel="stylesheet"
|
|
16
|
+
href="https://cdn.jsdelivr.net/npm/@icon/dashicons@0.9.0-alpha.4/dashicons.css"
|
|
17
|
+
/>
|
|
18
|
+
<link rel="stylesheet" href="/style.css" />
|
|
19
|
+
</head>
|
|
20
|
+
<body class="wp-admin auto-fold admin-color-modern">
|
|
21
|
+
<div id="wpwrap">
|
|
22
|
+
<header id="wpadminbar" role="banner">
|
|
23
|
+
<div class="ab-left">
|
|
24
|
+
<a class="ab-brand" href="#" data-view-button="dashboard" aria-label="Pressship Studio home">
|
|
25
|
+
<img class="ab-brand-mark" src="/brand/pressship-symbol.png" alt="" />
|
|
26
|
+
<span class="ab-brand-name">Pressship Studio</span>
|
|
27
|
+
</a>
|
|
28
|
+
</div>
|
|
29
|
+
<div class="ab-right">
|
|
30
|
+
<button
|
|
31
|
+
class="ab-button ab-command"
|
|
32
|
+
type="button"
|
|
33
|
+
data-action="open-command"
|
|
34
|
+
title="Command Palette (⌘K)"
|
|
35
|
+
>
|
|
36
|
+
<span class="dashicons dashicons-search" aria-hidden="true"></span>
|
|
37
|
+
<span class="ab-command-label">Search or jump to…</span>
|
|
38
|
+
<kbd class="ab-kbd"><span data-kbd-mod>⌘</span>K</kbd>
|
|
39
|
+
</button>
|
|
40
|
+
<div class="ab-account is-loading" id="account-info" aria-busy="true">
|
|
41
|
+
<span class="dashicons dashicons-admin-users" aria-hidden="true"></span>
|
|
42
|
+
<span class="ab-account-skeleton" aria-hidden="true"></span>
|
|
43
|
+
<span class="screen-reader-text">Loading account…</span>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</header>
|
|
47
|
+
|
|
48
|
+
<div id="adminmenuback"></div>
|
|
49
|
+
<nav id="adminmenuwrap" aria-label="Main menu">
|
|
50
|
+
<ul id="adminmenu">
|
|
51
|
+
<li class="wp-has-current-submenu menu-top" data-view="dashboard">
|
|
52
|
+
<button class="menu-top" type="button" data-view-button="dashboard">
|
|
53
|
+
<span class="wp-menu-image" aria-hidden="true">
|
|
54
|
+
<span class="dashicons dashicons-dashboard"></span>
|
|
55
|
+
</span>
|
|
56
|
+
<span class="wp-menu-name">Dashboard</span>
|
|
57
|
+
</button>
|
|
58
|
+
</li>
|
|
59
|
+
<li class="menu-top" data-view="studio">
|
|
60
|
+
<button class="menu-top" type="button" data-view-button="studio">
|
|
61
|
+
<span class="wp-menu-image" aria-hidden="true">
|
|
62
|
+
<span class="dashicons dashicons-editor-code"></span>
|
|
63
|
+
</span>
|
|
64
|
+
<span class="wp-menu-name">Studio</span>
|
|
65
|
+
</button>
|
|
66
|
+
</li>
|
|
67
|
+
<li class="wp-menu-section">Plugins</li>
|
|
68
|
+
<li class="menu-top" data-view="remote">
|
|
69
|
+
<button class="menu-top" type="button" data-view-button="remote">
|
|
70
|
+
<span class="wp-menu-image" aria-hidden="true">
|
|
71
|
+
<span class="dashicons dashicons-admin-plugins"></span>
|
|
72
|
+
</span>
|
|
73
|
+
<span class="wp-menu-name">WordPress.org</span>
|
|
74
|
+
</button>
|
|
75
|
+
</li>
|
|
76
|
+
<li class="menu-top" data-view="local">
|
|
77
|
+
<button class="menu-top" type="button" data-view-button="local">
|
|
78
|
+
<span class="wp-menu-image" aria-hidden="true">
|
|
79
|
+
<span class="dashicons dashicons-download"></span>
|
|
80
|
+
</span>
|
|
81
|
+
<span class="wp-menu-name">Local Library</span>
|
|
82
|
+
</button>
|
|
83
|
+
</li>
|
|
84
|
+
<li class="wp-menu-section" id="playgrounds-section" hidden>Playgrounds</li>
|
|
85
|
+
<li id="playground-menu-items" class="wp-playground-menu" hidden></li>
|
|
86
|
+
<li class="wp-menu-section">Pressship</li>
|
|
87
|
+
<li class="menu-top" data-view="release">
|
|
88
|
+
<button class="menu-top" type="button" data-view-button="release">
|
|
89
|
+
<span class="wp-menu-image" aria-hidden="true">
|
|
90
|
+
<span class="dashicons dashicons-update"></span>
|
|
91
|
+
</span>
|
|
92
|
+
<span class="wp-menu-name">Release Management</span>
|
|
93
|
+
</button>
|
|
94
|
+
</li>
|
|
95
|
+
<li class="menu-top" data-view="settings">
|
|
96
|
+
<button class="menu-top" type="button" data-view-button="settings">
|
|
97
|
+
<span class="wp-menu-image" aria-hidden="true">
|
|
98
|
+
<span class="dashicons dashicons-admin-generic"></span>
|
|
99
|
+
</span>
|
|
100
|
+
<span class="wp-menu-name">Settings</span>
|
|
101
|
+
</button>
|
|
102
|
+
</li>
|
|
103
|
+
</ul>
|
|
104
|
+
</nav>
|
|
105
|
+
|
|
106
|
+
<main id="wpcontent">
|
|
107
|
+
<div id="wpbody">
|
|
108
|
+
<div id="wpbody-content">
|
|
109
|
+
<div id="notice-stack" aria-live="polite"></div>
|
|
110
|
+
|
|
111
|
+
<section id="view-dashboard" class="wrap view is-active" data-view-name="dashboard">
|
|
112
|
+
<div id="dashboard-content" aria-busy="true">
|
|
113
|
+
<header class="ps-page-header ps-dashboard-titlebar ps-dashboard-skeleton" aria-hidden="true">
|
|
114
|
+
<span class="ps-skeleton ps-skeleton-page-title"></span>
|
|
115
|
+
</header>
|
|
116
|
+
<hr class="wp-header-end" />
|
|
117
|
+
|
|
118
|
+
<section class="welcome-panel ps-welcome-panel ps-dashboard-skeleton" aria-label="Loading Pressship dashboard">
|
|
119
|
+
<div class="welcome-panel-content">
|
|
120
|
+
<div class="welcome-panel-header-wrap">
|
|
121
|
+
<div class="welcome-panel-header">
|
|
122
|
+
<span class="ps-skeleton ps-skeleton-kicker"></span>
|
|
123
|
+
<span class="ps-skeleton ps-skeleton-title"></span>
|
|
124
|
+
<span class="ps-skeleton ps-skeleton-copy"></span>
|
|
125
|
+
<span class="ps-skeleton ps-skeleton-copy short"></span>
|
|
126
|
+
</div>
|
|
127
|
+
</div>
|
|
128
|
+
<div class="welcome-panel-column-container" aria-hidden="true">
|
|
129
|
+
<div class="welcome-panel-column">
|
|
130
|
+
<span class="ps-skeleton ps-skeleton-welcome-icon"></span>
|
|
131
|
+
<span class="ps-welcome-column-content">
|
|
132
|
+
<span class="ps-skeleton ps-skeleton-line"></span>
|
|
133
|
+
<span class="ps-skeleton ps-skeleton-copy"></span>
|
|
134
|
+
<span class="ps-skeleton ps-skeleton-action"></span>
|
|
135
|
+
</span>
|
|
136
|
+
</div>
|
|
137
|
+
<div class="welcome-panel-column">
|
|
138
|
+
<span class="ps-skeleton ps-skeleton-welcome-icon"></span>
|
|
139
|
+
<span class="ps-welcome-column-content">
|
|
140
|
+
<span class="ps-skeleton ps-skeleton-line"></span>
|
|
141
|
+
<span class="ps-skeleton ps-skeleton-copy"></span>
|
|
142
|
+
<span class="ps-skeleton ps-skeleton-action"></span>
|
|
143
|
+
</span>
|
|
144
|
+
</div>
|
|
145
|
+
<div class="welcome-panel-column">
|
|
146
|
+
<span class="ps-skeleton ps-skeleton-welcome-icon"></span>
|
|
147
|
+
<span class="ps-welcome-column-content">
|
|
148
|
+
<span class="ps-skeleton ps-skeleton-line"></span>
|
|
149
|
+
<span class="ps-skeleton ps-skeleton-copy"></span>
|
|
150
|
+
<span class="ps-skeleton ps-skeleton-action"></span>
|
|
151
|
+
</span>
|
|
152
|
+
</div>
|
|
153
|
+
</div>
|
|
154
|
+
</div>
|
|
155
|
+
</section>
|
|
156
|
+
|
|
157
|
+
<div id="dashboard-widgets-wrap" class="ps-dashboard-widgets-wrap ps-dashboard-skeleton" aria-hidden="true">
|
|
158
|
+
<div id="dashboard-widgets" class="metabox-holder columns-2">
|
|
159
|
+
<div id="postbox-container-1" class="postbox-container">
|
|
160
|
+
<div class="meta-box-sortables">
|
|
161
|
+
<section class="postbox ps-dashboard-postbox">
|
|
162
|
+
<div class="postbox-header">
|
|
163
|
+
<h2 class="hndle">
|
|
164
|
+
<span class="ps-skeleton ps-skeleton-line short"></span>
|
|
165
|
+
</h2>
|
|
166
|
+
<div class="ps-postbox-actions">
|
|
167
|
+
<span class="ps-skeleton ps-skeleton-button"></span>
|
|
168
|
+
</div>
|
|
169
|
+
</div>
|
|
170
|
+
<div class="inside">
|
|
171
|
+
<p class="ps-widget-intro">
|
|
172
|
+
<span class="ps-skeleton ps-skeleton-line"></span>
|
|
173
|
+
</p>
|
|
174
|
+
<ul class="ps-plugin-list">
|
|
175
|
+
<li class="ps-plugin-row ps-skeleton-row">
|
|
176
|
+
<span class="ps-skeleton ps-skeleton-icon"></span>
|
|
177
|
+
<span class="ps-skeleton ps-skeleton-line"></span>
|
|
178
|
+
<span class="ps-skeleton ps-skeleton-line short"></span>
|
|
179
|
+
<span class="ps-skeleton ps-skeleton-button"></span>
|
|
180
|
+
</li>
|
|
181
|
+
<li class="ps-plugin-row ps-skeleton-row">
|
|
182
|
+
<span class="ps-skeleton ps-skeleton-icon"></span>
|
|
183
|
+
<span class="ps-skeleton ps-skeleton-line"></span>
|
|
184
|
+
<span class="ps-skeleton ps-skeleton-line short"></span>
|
|
185
|
+
<span class="ps-skeleton ps-skeleton-button"></span>
|
|
186
|
+
</li>
|
|
187
|
+
<li class="ps-plugin-row ps-skeleton-row">
|
|
188
|
+
<span class="ps-skeleton ps-skeleton-icon"></span>
|
|
189
|
+
<span class="ps-skeleton ps-skeleton-line"></span>
|
|
190
|
+
<span class="ps-skeleton ps-skeleton-line short"></span>
|
|
191
|
+
<span class="ps-skeleton ps-skeleton-button"></span>
|
|
192
|
+
</li>
|
|
193
|
+
</ul>
|
|
194
|
+
</div>
|
|
195
|
+
</section>
|
|
196
|
+
<section class="postbox ps-dashboard-postbox">
|
|
197
|
+
<div class="postbox-header">
|
|
198
|
+
<h2 class="hndle">
|
|
199
|
+
<span class="ps-skeleton ps-skeleton-line short"></span>
|
|
200
|
+
</h2>
|
|
201
|
+
<div class="ps-postbox-actions">
|
|
202
|
+
<span class="ps-skeleton ps-skeleton-pill"></span>
|
|
203
|
+
</div>
|
|
204
|
+
</div>
|
|
205
|
+
<div class="inside">
|
|
206
|
+
<div class="ps-ai-chips">
|
|
207
|
+
<span class="ps-skeleton ps-skeleton-chip"></span>
|
|
208
|
+
<span class="ps-skeleton ps-skeleton-chip"></span>
|
|
209
|
+
<span class="ps-skeleton ps-skeleton-chip"></span>
|
|
210
|
+
</div>
|
|
211
|
+
<p class="ps-widget-hint">
|
|
212
|
+
<span class="ps-skeleton ps-skeleton-line"></span>
|
|
213
|
+
</p>
|
|
214
|
+
</div>
|
|
215
|
+
</section>
|
|
216
|
+
</div>
|
|
217
|
+
</div>
|
|
218
|
+
<div id="postbox-container-2" class="postbox-container">
|
|
219
|
+
<div class="meta-box-sortables">
|
|
220
|
+
<section class="postbox ps-dashboard-postbox">
|
|
221
|
+
<div class="postbox-header">
|
|
222
|
+
<h2 class="hndle">
|
|
223
|
+
<span class="ps-skeleton ps-skeleton-line short"></span>
|
|
224
|
+
</h2>
|
|
225
|
+
</div>
|
|
226
|
+
<div class="inside">
|
|
227
|
+
<ul class="ps-glance-list">
|
|
228
|
+
<li class="ps-glance-item">
|
|
229
|
+
<span class="ps-glance-link">
|
|
230
|
+
<span class="ps-skeleton ps-skeleton-mini-icon"></span>
|
|
231
|
+
<span class="ps-skeleton ps-skeleton-count"></span>
|
|
232
|
+
<span class="ps-skeleton ps-skeleton-line"></span>
|
|
233
|
+
</span>
|
|
234
|
+
</li>
|
|
235
|
+
<li class="ps-glance-item">
|
|
236
|
+
<span class="ps-glance-link">
|
|
237
|
+
<span class="ps-skeleton ps-skeleton-mini-icon"></span>
|
|
238
|
+
<span class="ps-skeleton ps-skeleton-count"></span>
|
|
239
|
+
<span class="ps-skeleton ps-skeleton-line"></span>
|
|
240
|
+
</span>
|
|
241
|
+
</li>
|
|
242
|
+
<li class="ps-glance-item">
|
|
243
|
+
<span class="ps-glance-link">
|
|
244
|
+
<span class="ps-skeleton ps-skeleton-mini-icon"></span>
|
|
245
|
+
<span class="ps-skeleton ps-skeleton-count"></span>
|
|
246
|
+
<span class="ps-skeleton ps-skeleton-line"></span>
|
|
247
|
+
</span>
|
|
248
|
+
</li>
|
|
249
|
+
</ul>
|
|
250
|
+
</div>
|
|
251
|
+
</section>
|
|
252
|
+
<section class="postbox ps-dashboard-postbox">
|
|
253
|
+
<div class="postbox-header">
|
|
254
|
+
<h2 class="hndle">
|
|
255
|
+
<span class="ps-skeleton ps-skeleton-line short"></span>
|
|
256
|
+
</h2>
|
|
257
|
+
<div class="ps-postbox-actions">
|
|
258
|
+
<span class="ps-skeleton ps-skeleton-pill"></span>
|
|
259
|
+
</div>
|
|
260
|
+
</div>
|
|
261
|
+
<div class="inside">
|
|
262
|
+
<div class="ps-side-empty">
|
|
263
|
+
<span class="ps-skeleton ps-skeleton-line"></span>
|
|
264
|
+
</div>
|
|
265
|
+
</div>
|
|
266
|
+
</section>
|
|
267
|
+
<section class="postbox ps-dashboard-postbox">
|
|
268
|
+
<div class="postbox-header">
|
|
269
|
+
<h2 class="hndle">
|
|
270
|
+
<span class="ps-skeleton ps-skeleton-line short"></span>
|
|
271
|
+
</h2>
|
|
272
|
+
</div>
|
|
273
|
+
<div class="inside ps-account-body">
|
|
274
|
+
<div class="ps-account-row">
|
|
275
|
+
<span class="ps-skeleton ps-skeleton-icon"></span>
|
|
276
|
+
<span class="ps-account-text">
|
|
277
|
+
<span class="ps-skeleton ps-skeleton-line"></span>
|
|
278
|
+
<span class="ps-skeleton ps-skeleton-line short"></span>
|
|
279
|
+
</span>
|
|
280
|
+
</div>
|
|
281
|
+
</div>
|
|
282
|
+
</section>
|
|
283
|
+
</div>
|
|
284
|
+
</div>
|
|
285
|
+
</div>
|
|
286
|
+
</div>
|
|
287
|
+
</div>
|
|
288
|
+
</section>
|
|
289
|
+
|
|
290
|
+
<section id="view-remote" class="wrap view" data-view-name="remote">
|
|
291
|
+
<header class="ps-page-header">
|
|
292
|
+
<h1 class="wp-heading-inline">WordPress.org Plugins</h1>
|
|
293
|
+
<button class="page-title-action" type="button" data-action="refresh-remote">
|
|
294
|
+
<span class="dashicons dashicons-update-alt" aria-hidden="true"></span>
|
|
295
|
+
Refresh
|
|
296
|
+
</button>
|
|
297
|
+
</header>
|
|
298
|
+
<hr class="wp-header-end" />
|
|
299
|
+
<p class="description">Plugins visible to the saved WordPress.org account. Open one in your local library to start editing.</p>
|
|
300
|
+
<div id="remote-content" class="ps-card-shell"></div>
|
|
301
|
+
</section>
|
|
302
|
+
|
|
303
|
+
<section id="view-local" class="wrap view" data-view-name="local">
|
|
304
|
+
<header class="ps-page-header">
|
|
305
|
+
<h1 class="wp-heading-inline">Local Library</h1>
|
|
306
|
+
<button class="page-title-action" type="button" data-action="choose-local-folder">
|
|
307
|
+
<span class="dashicons dashicons-open-folder" aria-hidden="true"></span>
|
|
308
|
+
Choose Folder
|
|
309
|
+
</button>
|
|
310
|
+
</header>
|
|
311
|
+
<hr class="wp-header-end" />
|
|
312
|
+
<p class="description">
|
|
313
|
+
Plugin folders Pressship watches locally. Open one in Studio to edit, or use Release Management to ship a new version.
|
|
314
|
+
</p>
|
|
315
|
+
<div id="local-content" class="ps-card-shell"></div>
|
|
316
|
+
</section>
|
|
317
|
+
|
|
318
|
+
<section id="view-release" class="wrap view" data-view-name="release">
|
|
319
|
+
<header class="ps-page-header">
|
|
320
|
+
<h1 class="wp-heading-inline">Release Management</h1>
|
|
321
|
+
<button class="page-title-action" type="button" data-action="refresh-release-board">
|
|
322
|
+
<span class="dashicons dashicons-update-alt" aria-hidden="true"></span>
|
|
323
|
+
Refresh
|
|
324
|
+
</button>
|
|
325
|
+
</header>
|
|
326
|
+
<hr class="wp-header-end" />
|
|
327
|
+
<p class="description">
|
|
328
|
+
Release status for every plugin in your local library. Manage release walks you through the publish funnel inside Studio.
|
|
329
|
+
</p>
|
|
330
|
+
<div id="release-content" class="ps-release-board-shell"></div>
|
|
331
|
+
</section>
|
|
332
|
+
|
|
333
|
+
<section id="view-studio" class="wrap view studio-view" data-view-name="studio">
|
|
334
|
+
<div id="studio-content" class="studio-shell"></div>
|
|
335
|
+
</section>
|
|
336
|
+
|
|
337
|
+
<section id="view-settings" class="wrap view" data-view-name="settings">
|
|
338
|
+
<header class="ps-page-header">
|
|
339
|
+
<h1 class="wp-heading-inline">Settings</h1>
|
|
340
|
+
</header>
|
|
341
|
+
<hr class="wp-header-end" />
|
|
342
|
+
<p class="description">
|
|
343
|
+
Defaults used by Pressship Studio. Saved per-user under your config directory. The
|
|
344
|
+
dashboard fetches Dashicons from a CDN
|
|
345
|
+
(<code>cdn.jsdelivr.net/npm/dashicons</code>).
|
|
346
|
+
</p>
|
|
347
|
+
<div id="settings-content"></div>
|
|
348
|
+
<div class="postbox activity-box" id="activity-box" hidden>
|
|
349
|
+
<h2><span class="dashicons dashicons-update"></span>Activity (debug)</h2>
|
|
350
|
+
<div id="activity-content" class="inside"></div>
|
|
351
|
+
</div>
|
|
352
|
+
</section>
|
|
353
|
+
</div>
|
|
354
|
+
</div>
|
|
355
|
+
</main>
|
|
356
|
+
|
|
357
|
+
<aside id="detail-panel" aria-live="polite" aria-hidden="true"></aside>
|
|
358
|
+
</div>
|
|
359
|
+
|
|
360
|
+
<div class="ps-command-palette" id="command-palette" hidden>
|
|
361
|
+
<div class="ps-command-backdrop" data-action="close-command"></div>
|
|
362
|
+
<div class="ps-command-modal" role="dialog" aria-modal="true" aria-label="Command palette">
|
|
363
|
+
<div class="ps-command-header">
|
|
364
|
+
<span class="dashicons dashicons-search ps-command-icon" aria-hidden="true"></span>
|
|
365
|
+
<input
|
|
366
|
+
id="command-input"
|
|
367
|
+
type="text"
|
|
368
|
+
placeholder="Type a command, view, or plugin slug…"
|
|
369
|
+
autocomplete="off"
|
|
370
|
+
spellcheck="false"
|
|
371
|
+
/>
|
|
372
|
+
<button
|
|
373
|
+
class="ps-command-close"
|
|
374
|
+
type="button"
|
|
375
|
+
data-action="close-command"
|
|
376
|
+
aria-label="Close"
|
|
377
|
+
>
|
|
378
|
+
<span class="dashicons dashicons-no-alt" aria-hidden="true"></span>
|
|
379
|
+
</button>
|
|
380
|
+
</div>
|
|
381
|
+
<ul class="ps-command-list" id="command-list" role="listbox"></ul>
|
|
382
|
+
<footer class="ps-command-footer">
|
|
383
|
+
<span><kbd>↑</kbd><kbd>↓</kbd> navigate</span>
|
|
384
|
+
<span><kbd>↵</kbd> select</span>
|
|
385
|
+
<span><kbd>esc</kbd> close</span>
|
|
386
|
+
</footer>
|
|
387
|
+
</div>
|
|
388
|
+
</div>
|
|
389
|
+
|
|
390
|
+
<script type="module" src="/app.js"></script>
|
|
391
|
+
</body>
|
|
392
|
+
</html>
|