Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

init exceldraw module #7603

Closed
wants to merge 48 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
ca5225f
Bump @babel/runtime from 7.26.0 to 7.26.10 in /frontend
dependabot[bot] Mar 15, 2025
9e2d9c4
13.0-sql (#7617)
SkywalkerSpace Mar 15, 2025
19a5de3
V5 rtl fixup (#7622)
llj Mar 15, 2025
f44e6ee
Merge pull request #7614 from haiwen/dependabot/npm_and_yarn/frontend…
Michael18811380328 Mar 17, 2025
e60eb83
Add repo setting tip when disable Metadata (#7623)
Michael18811380328 Mar 17, 2025
de14104
Update zip-download-dialog.js (#7625)
r350178982 Mar 17, 2025
a53d497
fix: password random (#7615)
YangGuoXuan-0503 Mar 17, 2025
339a149
fix: location href url (#7621)
YangGuoXuan-0503 Mar 17, 2025
ae9e109
fix: reg (#7620)
YangGuoXuan-0503 Mar 17, 2025
61ae1a3
fix wiki sdoc outline style (#7629)
Michael18811380328 Mar 17, 2025
2c57086
[PDF viewer] fixed the decryption dialog after the upgrade of seafile…
llj Mar 17, 2025
acfc971
Merge branch '12.0'
Michael18811380328 Mar 17, 2025
9263a44
[dir view] 'move', 'copy' dialogs: fixed the split line of the left a…
llj Mar 17, 2025
20866e4
update 13.0 sql (#7633)
SkywalkerSpace Mar 17, 2025
020a04d
update sdoc version
shuntian Mar 17, 2025
5c9edac
update sdoc editor version
shuntian Mar 17, 2025
63c3b36
[pdf file view] fixup: make the top-right toolbar restore usable (#7634)
llj Mar 17, 2025
0b698bf
Add metadata kanban collapsed tip (#7628)
Michael18811380328 Mar 18, 2025
0dda986
fix npm audit
Michael18811380328 Mar 18, 2025
34b63a7
Merge pull request #7637 from haiwen/fix-audit
Michael18811380328 Mar 18, 2025
742d7eb
remove useless socket.io
Michael18811380328 Mar 18, 2025
4cc3250
Change metadata tag language setting style (#7636)
Michael18811380328 Mar 18, 2025
88de887
update sdoc editor version
Michael18811380328 Mar 18, 2025
618e25d
Feature/all tags sort (#7618)
Aries-0331 Mar 18, 2025
abf09b4
show video thumbnail (#7639)
Aries-0331 Mar 18, 2025
a25bb24
github actions permission (#7624)
SkywalkerSpace Mar 18, 2025
f6f3968
update sdoc editor version
shuntian Mar 19, 2025
9a8b731
[UI] fixed the color of .input-group-text's left border (#7643)
llj Mar 19, 2025
61426b0
fix `Inclusion of functionality from an untrusted source` (#7645)
imwhatiam Mar 19, 2025
fa79c2b
Update internal_api.py (#7642)
r350178982 Mar 19, 2025
ec9e513
reset state after navigation
Mar 20, 2025
7365db5
update sdoc editor version
shuntian Mar 20, 2025
592354b
13.0 repo_metadata sql (#7652)
SkywalkerSpace Mar 20, 2025
0aa2d11
update privacy-policy UI on login page
imwhatiam Mar 21, 2025
39aac08
update sdoc editor version
shuntian Mar 21, 2025
a998903
update
imwhatiam Mar 21, 2025
67e78e7
update dev script
shuntian Mar 21, 2025
cacef99
[library decryption dialog] fixed the 'close' icon after the upgrade …
llj Mar 21, 2025
baa144c
change font color
Michael18811380328 Mar 21, 2025
e9c61f2
Merge pull request #7653 from haiwen/privacy-policy
Michael18811380328 Mar 21, 2025
d27ea6b
sort tag files
Mar 20, 2025
41a12fa
optimize
Mar 20, 2025
b93e47b
fix span key
Michael18811380328 Mar 23, 2025
1841d79
Merge pull request #7650 from haiwen/feature/sort_tag_files
Michael18811380328 Mar 23, 2025
61cfae3
Merge pull request #7648 from haiwen/fix/path_navigation
Michael18811380328 Mar 23, 2025
aeb713e
init exceldraw module
shuntian Mar 13, 2025
f9771d4
excalidraw demo
Mar 20, 2025
5a83d70
i18n fixed bug
Mar 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
Expand Down
9 changes: 5 additions & 4 deletions frontend/config/paths.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';


const path = require('path');
const fs = require('fs');
Expand All @@ -22,8 +22,10 @@ const resolveApp = relativePath => path.resolve(appDirectory, relativePath);
// );

// reset by custom
const HOST = process.env.HOST || '0.0.0.0';
const PORT = process.env.PORT || '3000';
const CONFIG_HOST = process.env.HOST;
const isRunInDocker = CONFIG_HOST === '0.0.0.0';
const HOST = isRunInDocker ? '127.0.0.1' : CONFIG_HOST;
const PORT = process.env.PORT || '3001';
const publicPath = process.env.PUBLIC_PATH || '/assets/bundles/';
const publicUrlOrPath = `http://${HOST}:${PORT}${publicPath}`;

Expand Down Expand Up @@ -79,5 +81,4 @@ module.exports = {
};



module.exports.moduleFileExtensions = moduleFileExtensions;
6 changes: 6 additions & 0 deletions frontend/config/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,12 @@ module.exports = function (webpackEnv) {
// Make sure to add the new loader(s) before the "file" loader.
],
},
{
test: /\.m?js$/,
resolve: {
fullySpecified: false
}
}
].filter(Boolean),
},
plugins: [
Expand Down
1 change: 1 addition & 0 deletions frontend/config/webpack.entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const paths = require('./paths');

const entryFiles = {
tldrawEditor: '/tldrawEditor.js',
exceldrawEditor: '/exceldraw-editor.js',
markdownEditor: '/index.js',
plainMarkdownEditor: '/pages/plain-markdown-editor/index.js',
TCAccept: '/tc-accept.js',
Expand Down
Loading