Skip to content

Commit 554b989

Browse files
committed
Add Recent Activity panel
1 parent aeea2e5 commit 554b989

File tree

16 files changed

+874
-255
lines changed

16 files changed

+874
-255
lines changed

.eslintrc.js

Lines changed: 38 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,40 @@
11
module.exports = {
2-
env: {
3-
browser: true,
4-
jquery: true,
5-
es2021: true,
6-
node: true
7-
},
8-
root: true,
9-
extends: [
10-
// "eslint:recommended",
11-
// "plugin:@typescript-eslint/recommended",
12-
// "plugin:@typescript-eslint/recommended-requiring-type-checking",
13-
"prettier"
14-
],
15-
parser: "@typescript-eslint/parser",
16-
parserOptions: {
17-
tsconfigRootDir: __dirname,
18-
project: "./tsconfig.eslint.json",
19-
ecmaVersion: 13,
20-
sourceType: "module"
21-
},
22-
plugins: ["@typescript-eslint"],
23-
rules: {
24-
/* eslint-disable @typescript-eslint/naming-convention */
25-
"@typescript-eslint/naming-convention": "warn",
26-
"@typescript-eslint/semi": "warn",
27-
curly: "warn",
28-
eqeqeq: "warn",
29-
"no-throw-literal": "warn",
30-
semi: "off"
31-
/* eslint-enable @typescript-eslint/naming-convention */
32-
},
33-
ignorePatterns: [
34-
"jaegerUi",
35-
"out",
36-
"src/views-ui/common/jquery-3.6.0.min.js",
37-
"src/views-ui/common/require-2.3.6.min.js"
38-
]
2+
env: {
3+
browser: true,
4+
jquery: true,
5+
es2021: true,
6+
node: true
7+
},
8+
root: true,
9+
extends: [
10+
// "eslint:recommended",
11+
// "plugin:@typescript-eslint/recommended",
12+
// "plugin:@typescript-eslint/recommended-requiring-type-checking",
13+
"prettier"
14+
],
15+
parser: "@typescript-eslint/parser",
16+
parserOptions: {
17+
tsconfigRootDir: __dirname,
18+
project: "./tsconfig.eslint.json",
19+
ecmaVersion: 13,
20+
sourceType: "module"
21+
},
22+
plugins: ["@typescript-eslint"],
23+
rules: {
24+
/* eslint-disable @typescript-eslint/naming-convention */
25+
"@typescript-eslint/naming-convention": "warn",
26+
"@typescript-eslint/semi": "warn",
27+
curly: "warn",
28+
eqeqeq: "warn",
29+
"no-throw-literal": "warn",
30+
semi: "off"
31+
/* eslint-enable @typescript-eslint/naming-convention */
32+
},
33+
ignorePatterns: [
34+
"digmaUi",
35+
"jaegerUi",
36+
"out",
37+
"src/views-ui/common/jquery-3.6.0.min.js",
38+
"src/views-ui/common/require-2.3.6.min.js"
39+
]
3940
};

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
digmaUi/
12
jaegerUi/
23
out/
34
package.json

.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
.husky/
33
.vscode/
44
.vscode-test/
5+
digmaUi/
56
jaegerUi/
67
src/
78
out/test/

digmaUi/fonts/Nunito-Bold.ttf

129 KB
Binary file not shown.

digmaUi/fonts/Nunito-Medium.ttf

129 KB
Binary file not shown.

digmaUi/fonts/Nunito-Regular.ttf

129 KB
Binary file not shown.

digmaUi/fonts/Nunito-SemiBold.ttf

129 KB
Binary file not shown.

digmaUi/index.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><style>@font-face {
2+
font-family: "Nunito";
3+
src: url("/fonts/Nunito-Regular.ttf") format("truetype");
4+
font-weight: 400;
5+
font-style: normal;
6+
}
7+
8+
@font-face {
9+
font-family: "Nunito";
10+
src: url("/fonts/Nunito-Medium.ttf") format("truetype");
11+
font-weight: 500;
12+
font-style: normal;
13+
}
14+
15+
@font-face {
16+
font-family: "Nunito";
17+
src: url("/fonts/Nunito-SemiBold.ttf") format("truetype");
18+
font-weight: 600;
19+
font-style: normal;
20+
}
21+
22+
@font-face {
23+
font-family: "Nunito";
24+
src: url("/fonts/Nunito-Bold.ttf") format("truetype");
25+
font-weight: 700;
26+
font-style: normal;
27+
}</style></head><body><div id="root"></div><script src="/main.js"></script></body></html>

digmaUi/main.js

Lines changed: 189 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

digmaUi/vscode.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(function() {
2+
const vscode = acquireVsCodeApi();
3+
4+
window.sendMessageToVSCode = (message) => {
5+
vscode.postMessage(message);
6+
}
7+
}());

0 commit comments

Comments
 (0)