mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-06-05 12:25:35 +08:00
Compare commits
6 Commits
fix/chat-t
...
fix/router
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
639bc76b23 | ||
|
|
07e2348605 | ||
|
|
30c1579131 | ||
|
|
1dd395fdd6 | ||
|
|
92b468a39e | ||
|
|
48a4701d56 |
19
CHANGELOG.md
19
CHANGELOG.md
@@ -3,25 +3,6 @@
|
|||||||
All notable changes to CloudCLI UI will be documented in this file.
|
All notable changes to CloudCLI UI will be documented in this file.
|
||||||
|
|
||||||
|
|
||||||
## [](https://github.com/siteboon/claudecodeui/compare/v1.32.0...vnull) (2026-06-01)
|
|
||||||
|
|
||||||
### New Features
|
|
||||||
|
|
||||||
* add opencode support ([#762](https://github.com/siteboon/claudecodeui/issues/762)) ([374e9de](https://github.com/siteboon/claudecodeui/commit/374e9de71934c41ce2c19c796e35a19234b240ec))
|
|
||||||
* **sidebar:** tooltip for the active-session indicator dot ([#782](https://github.com/siteboon/claudecodeui/issues/782)) ([27e509a](https://github.com/siteboon/claudecodeui/commit/27e509a9b8bb25c35ae0abbda44c536e15c332c8))
|
|
||||||
|
|
||||||
### Bug Fixes
|
|
||||||
|
|
||||||
* **chat:** prevent double send on mobile by removing redundant submit handlers ([#719](https://github.com/siteboon/claudecodeui/issues/719)) ([dbc41dc](https://github.com/siteboon/claudecodeui/commit/dbc41dc91dbf1fb54f92f5536d64646b4e924f31))
|
|
||||||
* preserve WebSocket frame type in plugin proxy ([#594](https://github.com/siteboon/claudecodeui/issues/594)) ([36b860e](https://github.com/siteboon/claudecodeui/commit/36b860e322454df62ebf5309018590b596e6b913)), closes [CoderLuii/HolyClaude#11](https://github.com/CoderLuii/HolyClaude/issues/11)
|
|
||||||
* refine token usage reporting ([#807](https://github.com/siteboon/claudecodeui/issues/807)) ([38bf21d](https://github.com/siteboon/claudecodeui/commit/38bf21ddf554ed28676d86b5221c25adf6f07afd))
|
|
||||||
* refresh Claude auth status after login flow ([#617](https://github.com/siteboon/claudecodeui/issues/617)) ([1e125f3](https://github.com/siteboon/claudecodeui/commit/1e125f3db5248399cd50dc3d40b1f8f44cf7ccb6))
|
|
||||||
* **sidebar:** keep session rename input visible while editing ([#781](https://github.com/siteboon/claudecodeui/issues/781)) ([951f587](https://github.com/siteboon/claudecodeui/commit/951f58751c152fbbb3f8b3ce3c814c06c061de18))
|
|
||||||
|
|
||||||
### Styling
|
|
||||||
|
|
||||||
* fix project star button location by replacing folder icon ([#793](https://github.com/siteboon/claudecodeui/issues/793)) ([295bad9](https://github.com/siteboon/claudecodeui/commit/295bad9c006b669878cbf52940794f29f7370178))
|
|
||||||
|
|
||||||
## [1.32.0](https://github.com/siteboon/claudecodeui/compare/v1.31.5...v1.32.0) (2026-05-13)
|
## [1.32.0](https://github.com/siteboon/claudecodeui/compare/v1.31.5...v1.32.0) (2026-05-13)
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|||||||
218
docs/nginx-subpath-template.conf
Normal file
218
docs/nginx-subpath-template.conf
Normal file
@@ -0,0 +1,218 @@
|
|||||||
|
# CloudCLI UI Nginx subpath deployment template.
|
||||||
|
#
|
||||||
|
# Purpose:
|
||||||
|
# Serve CloudCLI UI from a path prefix such as:
|
||||||
|
# http://localhost/ai/
|
||||||
|
# https://example.com/ai/
|
||||||
|
#
|
||||||
|
# CloudCLI itself still runs at the root of its own HTTP server, for example:
|
||||||
|
# http://127.0.0.1:3001/
|
||||||
|
#
|
||||||
|
# Nginx receives public requests under /ai, strips that prefix, and forwards the
|
||||||
|
# remaining path to CloudCLI. For example:
|
||||||
|
# /ai/ -> /
|
||||||
|
# /ai/session/abc -> /session/abc
|
||||||
|
# /ai/assets/index.js -> /assets/index.js
|
||||||
|
#
|
||||||
|
# Important Nginx limitation:
|
||||||
|
# Nginx does not allow variables in `location` matchers or `rewrite` regexes.
|
||||||
|
# The configurable variables below are still useful for proxy/filter values,
|
||||||
|
# but if you change /ai to a different subpath, also update every line marked:
|
||||||
|
# [SUBPATH LITERAL]
|
||||||
|
#
|
||||||
|
# To use a different subpath, replace these literal matchers:
|
||||||
|
# location = /ai
|
||||||
|
# location ^~ /ai/
|
||||||
|
# rewrite ^/ai(?<cloudcli_path>/.*)$ ...
|
||||||
|
#
|
||||||
|
# Recommended deployment shape:
|
||||||
|
# CloudCLI is the only app using /ai, while root paths /api, /ws, and /shell
|
||||||
|
# are also proxied because the current frontend still calls those endpoints
|
||||||
|
# with root-relative URLs.
|
||||||
|
|
||||||
|
worker_processes 1;
|
||||||
|
|
||||||
|
events {
|
||||||
|
# Maximum simultaneous connections handled by each worker process.
|
||||||
|
# The default is enough for local testing and small self-hosted deployments.
|
||||||
|
worker_connections 1024;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
# WebSocket requests include an Upgrade header. Normal HTTP requests do not.
|
||||||
|
# This map gives us the right Connection header for both cases:
|
||||||
|
# Upgrade present -> "upgrade"
|
||||||
|
# Upgrade absent -> "close"
|
||||||
|
map $http_upgrade $connection_upgrade {
|
||||||
|
default upgrade;
|
||||||
|
'' close;
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
# For HTTPS deployments, replace this with `listen 443 ssl http2;` and
|
||||||
|
# add ssl_certificate / ssl_certificate_key lines.
|
||||||
|
listen 80 default_server;
|
||||||
|
|
||||||
|
# Use your real hostname in production, for example:
|
||||||
|
# server_name cloudcli.example.com;
|
||||||
|
server_name localhost 127.0.0.1;
|
||||||
|
|
||||||
|
# ---- User settings -------------------------------------------------
|
||||||
|
#
|
||||||
|
# Public path prefix where users access CloudCLI.
|
||||||
|
# Do not add a trailing slash.
|
||||||
|
#
|
||||||
|
# This variable can be used in redirects and response rewrites. It
|
||||||
|
# cannot be used in `location` matchers, so update the [SUBPATH LITERAL]
|
||||||
|
# lines too if you change it.
|
||||||
|
set $cloudcli_subpath /ai;
|
||||||
|
|
||||||
|
# Private upstream URL where the CloudCLI server is listening.
|
||||||
|
# For a default local server this is usually http://127.0.0.1:3001.
|
||||||
|
set $cloudcli_upstream http://127.0.0.1:3001;
|
||||||
|
|
||||||
|
# Allow larger file uploads through the code editor/project file APIs.
|
||||||
|
client_max_body_size 100m;
|
||||||
|
|
||||||
|
# Redirect /ai to /ai/ so relative browser URL resolution is stable.
|
||||||
|
# [SUBPATH LITERAL] Change `/ai` if you change $cloudcli_subpath.
|
||||||
|
location = /ai {
|
||||||
|
return 301 $cloudcli_subpath/;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Main prefixed CloudCLI UI route.
|
||||||
|
#
|
||||||
|
# [SUBPATH LITERAL] Change `/ai/` and the `^/ai` rewrite if you change
|
||||||
|
# $cloudcli_subpath.
|
||||||
|
location ^~ /ai/ {
|
||||||
|
# Strip the public subpath before proxying. CloudCLI expects to see
|
||||||
|
# root paths such as /, /session/:id, /assets/..., /manifest.json.
|
||||||
|
rewrite ^/ai(?<cloudcli_path>/.*)$ $cloudcli_path break;
|
||||||
|
|
||||||
|
# Forward the rewritten request to the private CloudCLI server.
|
||||||
|
proxy_pass $cloudcli_upstream;
|
||||||
|
|
||||||
|
# Use HTTP/1.1 so WebSocket upgrade requests can pass through if a
|
||||||
|
# browser reaches a socket endpoint under the subpath.
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
|
||||||
|
# Preserve useful request metadata for logs and future app support.
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Prefix $cloudcli_subpath;
|
||||||
|
|
||||||
|
# WebSocket upgrade headers. Harmless for normal HTTP requests.
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection $connection_upgrade;
|
||||||
|
|
||||||
|
# Long-running agent and terminal sessions can stay open for a long
|
||||||
|
# time, so avoid closing idle proxied connections too aggressively.
|
||||||
|
proxy_read_timeout 3600s;
|
||||||
|
proxy_send_timeout 3600s;
|
||||||
|
|
||||||
|
# Disable gzip from the upstream response so sub_filter can inspect
|
||||||
|
# and rewrite HTML/JSON/JS response bodies.
|
||||||
|
proxy_set_header Accept-Encoding "";
|
||||||
|
|
||||||
|
# Rewrite browser-visible root-relative URLs so the runtime can
|
||||||
|
# discover that the app is mounted under the subpath.
|
||||||
|
#
|
||||||
|
# Examples:
|
||||||
|
# href="/manifest.json" -> href="/ai/manifest.json"
|
||||||
|
# src="/assets/app.js" -> src="/ai/assets/app.js"
|
||||||
|
#
|
||||||
|
# These rewrites are important for React Router basename detection.
|
||||||
|
sub_filter_once off;
|
||||||
|
sub_filter_types
|
||||||
|
application/json
|
||||||
|
application/manifest+json
|
||||||
|
application/javascript
|
||||||
|
text/javascript;
|
||||||
|
|
||||||
|
sub_filter 'href="/' 'href="$cloudcli_subpath/';
|
||||||
|
sub_filter 'src="/' 'src="$cloudcli_subpath/';
|
||||||
|
|
||||||
|
# The production HTML and JS register the service worker at /sw.js.
|
||||||
|
# Rewrite that registration so the worker is served from /ai/sw.js.
|
||||||
|
sub_filter "register('/sw.js')" "register('$cloudcli_subpath/sw.js')";
|
||||||
|
sub_filter 'register("/sw.js")' 'register("$cloudcli_subpath/sw.js")';
|
||||||
|
|
||||||
|
# The manifest and service worker contain root-relative paths too.
|
||||||
|
# Rewriting them keeps PWA metadata and cached manifest requests
|
||||||
|
# under the same public subpath.
|
||||||
|
sub_filter '"start_url": "/"' '"start_url": "$cloudcli_subpath/"';
|
||||||
|
sub_filter '"scope": "/"' '"scope": "$cloudcli_subpath/"';
|
||||||
|
sub_filter '"src": "/' '"src": "$cloudcli_subpath/';
|
||||||
|
sub_filter "'/manifest.json'" "'$cloudcli_subpath/manifest.json'";
|
||||||
|
sub_filter '"/manifest.json"' '"$cloudcli_subpath/manifest.json"';
|
||||||
|
}
|
||||||
|
|
||||||
|
# Root API proxy.
|
||||||
|
#
|
||||||
|
# The current CloudCLI frontend calls APIs with root-relative URLs such
|
||||||
|
# as /api/auth/login. Keep this location unless the frontend becomes
|
||||||
|
# fully prefix-aware for API requests.
|
||||||
|
location ^~ /api/ {
|
||||||
|
proxy_pass $cloudcli_upstream;
|
||||||
|
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Prefix $cloudcli_subpath;
|
||||||
|
|
||||||
|
proxy_read_timeout 3600s;
|
||||||
|
proxy_send_timeout 3600s;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Main app WebSocket proxy.
|
||||||
|
#
|
||||||
|
# The frontend opens /ws for realtime chat/session/task updates.
|
||||||
|
location /ws {
|
||||||
|
proxy_pass $cloudcli_upstream;
|
||||||
|
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection $connection_upgrade;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Prefix $cloudcli_subpath;
|
||||||
|
|
||||||
|
proxy_read_timeout 3600s;
|
||||||
|
proxy_send_timeout 3600s;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Shell WebSocket proxy.
|
||||||
|
#
|
||||||
|
# The browser terminal uses /shell. It requires the same WebSocket
|
||||||
|
# upgrade handling as /ws.
|
||||||
|
location /shell {
|
||||||
|
proxy_pass $cloudcli_upstream;
|
||||||
|
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection $connection_upgrade;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Prefix $cloudcli_subpath;
|
||||||
|
|
||||||
|
proxy_read_timeout 3600s;
|
||||||
|
proxy_send_timeout 3600s;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Optional health endpoint proxy used by the frontend version checker.
|
||||||
|
location = /health {
|
||||||
|
proxy_pass $cloudcli_upstream;
|
||||||
|
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Prefix $cloudcli_subpath;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
21
package-lock.json
generated
21
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@cloudcli-ai/cloudcli",
|
"name": "@cloudcli-ai/cloudcli",
|
||||||
"version": "1.33.0",
|
"version": "1.32.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@cloudcli-ai/cloudcli",
|
"name": "@cloudcli-ai/cloudcli",
|
||||||
"version": "1.33.0",
|
"version": "1.32.0",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "AGPL-3.0-or-later",
|
"license": "AGPL-3.0-or-later",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -39,7 +39,6 @@
|
|||||||
"cmdk": "^1.1.1",
|
"cmdk": "^1.1.1",
|
||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
"cross-spawn": "^7.0.3",
|
"cross-spawn": "^7.0.3",
|
||||||
"dompurify": "^3.4.7",
|
|
||||||
"express": "^4.18.2",
|
"express": "^4.18.2",
|
||||||
"fuse.js": "^7.0.0",
|
"fuse.js": "^7.0.0",
|
||||||
"gray-matter": "^4.0.3",
|
"gray-matter": "^4.0.3",
|
||||||
@@ -4581,13 +4580,6 @@
|
|||||||
"@types/node": "*"
|
"@types/node": "*"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@types/trusted-types": {
|
|
||||||
"version": "2.0.7",
|
|
||||||
"resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
|
|
||||||
"integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
|
|
||||||
"license": "MIT",
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"node_modules/@types/unist": {
|
"node_modules/@types/unist": {
|
||||||
"version": "3.0.3",
|
"version": "3.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
|
||||||
@@ -7493,15 +7485,6 @@
|
|||||||
"node": ">=0.10.0"
|
"node": ">=0.10.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/dompurify": {
|
|
||||||
"version": "3.4.7",
|
|
||||||
"resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.7.tgz",
|
|
||||||
"integrity": "sha512-2jBxDJY4RR06tQNy4w5FlFH7kfxsQZlufd0sbv+chfHCxeJwrFw2baUDsSwvBISD4K4RDbd0PTfy3uNXsR6siA==",
|
|
||||||
"license": "(MPL-2.0 OR Apache-2.0)",
|
|
||||||
"optionalDependencies": {
|
|
||||||
"@types/trusted-types": "^2.0.7"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/dot-prop": {
|
"node_modules/dot-prop": {
|
||||||
"version": "5.3.0",
|
"version": "5.3.0",
|
||||||
"resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@cloudcli-ai/cloudcli",
|
"name": "@cloudcli-ai/cloudcli",
|
||||||
"version": "1.33.0",
|
"version": "1.32.0",
|
||||||
"description": "A web-based UI for Claude Code CLI",
|
"description": "A web-based UI for Claude Code CLI",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "dist-server/server/index.js",
|
"main": "dist-server/server/index.js",
|
||||||
@@ -96,7 +96,6 @@
|
|||||||
"cmdk": "^1.1.1",
|
"cmdk": "^1.1.1",
|
||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
"cross-spawn": "^7.0.3",
|
"cross-spawn": "^7.0.3",
|
||||||
"dompurify": "^3.4.7",
|
|
||||||
"express": "^4.18.2",
|
"express": "^4.18.2",
|
||||||
"fuse.js": "^7.0.0",
|
"fuse.js": "^7.0.0",
|
||||||
"gray-matter": "^4.0.3",
|
"gray-matter": "^4.0.3",
|
||||||
|
|||||||
@@ -83,10 +83,6 @@ export class ClaudeProviderAuth implements IProviderAuth {
|
|||||||
private async checkCredentials(): Promise<ClaudeCredentialsStatus> {
|
private async checkCredentials(): Promise<ClaudeCredentialsStatus> {
|
||||||
const missingCredentialsError = 'Claude CLI is not authenticated. Run claude /login or configure ANTHROPIC_API_KEY.';
|
const missingCredentialsError = 'Claude CLI is not authenticated. Run claude /login or configure ANTHROPIC_API_KEY.';
|
||||||
|
|
||||||
if (process.env.ANTHROPIC_AUTH_TOKEN?.trim()) {
|
|
||||||
return { authenticated: true, email: 'Auth Token', method: 'api_key' };
|
|
||||||
}
|
|
||||||
|
|
||||||
if (process.env.ANTHROPIC_API_KEY?.trim()) {
|
if (process.env.ANTHROPIC_API_KEY?.trim()) {
|
||||||
return { authenticated: true, email: 'API Key Auth', method: 'api_key' };
|
return { authenticated: true, email: 'API Key Auth', method: 'api_key' };
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -143,21 +143,6 @@ const createFakeSubmitEvent = () => {
|
|||||||
return { preventDefault: () => undefined } as unknown as FormEvent<HTMLFormElement>;
|
return { preventDefault: () => undefined } as unknown as FormEvent<HTMLFormElement>;
|
||||||
};
|
};
|
||||||
|
|
||||||
const THINKING_MODE_STORAGE_KEY = 'chat-thinking-mode';
|
|
||||||
|
|
||||||
const getInitialThinkingMode = () => {
|
|
||||||
if (typeof window === 'undefined') {
|
|
||||||
return 'none';
|
|
||||||
}
|
|
||||||
|
|
||||||
const savedMode = safeLocalStorage.getItem(THINKING_MODE_STORAGE_KEY);
|
|
||||||
if (!savedMode) {
|
|
||||||
return 'none';
|
|
||||||
}
|
|
||||||
|
|
||||||
return thinkingModes.some((mode) => mode.id === savedMode) ? savedMode : 'none';
|
|
||||||
};
|
|
||||||
|
|
||||||
const getNotificationSessionSummary = (
|
const getNotificationSessionSummary = (
|
||||||
selectedSession: ProjectSession | null,
|
selectedSession: ProjectSession | null,
|
||||||
fallbackInput: string,
|
fallbackInput: string,
|
||||||
@@ -219,7 +204,7 @@ export function useChatComposerState({
|
|||||||
const [uploadingImages, setUploadingImages] = useState<Map<string, number>>(new Map());
|
const [uploadingImages, setUploadingImages] = useState<Map<string, number>>(new Map());
|
||||||
const [imageErrors, setImageErrors] = useState<Map<string, string>>(new Map());
|
const [imageErrors, setImageErrors] = useState<Map<string, string>>(new Map());
|
||||||
const [isTextareaExpanded, setIsTextareaExpanded] = useState(false);
|
const [isTextareaExpanded, setIsTextareaExpanded] = useState(false);
|
||||||
const [thinkingMode, setThinkingMode] = useState(getInitialThinkingMode);
|
const [thinkingMode, setThinkingMode] = useState('none');
|
||||||
const [commandModalPayload, setCommandModalPayload] = useState<CommandModalPayload | null>(null);
|
const [commandModalPayload, setCommandModalPayload] = useState<CommandModalPayload | null>(null);
|
||||||
|
|
||||||
const textareaRef = useRef<HTMLTextAreaElement>(null);
|
const textareaRef = useRef<HTMLTextAreaElement>(null);
|
||||||
@@ -579,7 +564,7 @@ export function useChatComposerState({
|
|||||||
|
|
||||||
let messageContent = currentInput;
|
let messageContent = currentInput;
|
||||||
const selectedThinkingMode = thinkingModes.find((mode: { id: string; prefix?: string }) => mode.id === thinkingMode);
|
const selectedThinkingMode = thinkingModes.find((mode: { id: string; prefix?: string }) => mode.id === thinkingMode);
|
||||||
if (provider === 'claude' && selectedThinkingMode && selectedThinkingMode.prefix) {
|
if (selectedThinkingMode && selectedThinkingMode.prefix) {
|
||||||
messageContent = `${selectedThinkingMode.prefix}: ${currentInput}`;
|
messageContent = `${selectedThinkingMode.prefix}: ${currentInput}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -764,6 +749,7 @@ export function useChatComposerState({
|
|||||||
setUploadingImages(new Map());
|
setUploadingImages(new Map());
|
||||||
setImageErrors(new Map());
|
setImageErrors(new Map());
|
||||||
setIsTextareaExpanded(false);
|
setIsTextareaExpanded(false);
|
||||||
|
setThinkingMode('none');
|
||||||
|
|
||||||
if (textareaRef.current) {
|
if (textareaRef.current) {
|
||||||
textareaRef.current.style.height = 'auto';
|
textareaRef.current.style.height = 'auto';
|
||||||
@@ -809,10 +795,6 @@ export function useChatComposerState({
|
|||||||
inputValueRef.current = input;
|
inputValueRef.current = input;
|
||||||
}, [input]);
|
}, [input]);
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
safeLocalStorage.setItem(THINKING_MODE_STORAGE_KEY, thinkingMode);
|
|
||||||
}, [thinkingMode]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!selectedProjectId) {
|
if (!selectedProjectId) {
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
import { useState, useEffect } from 'react';
|
import { useState, useEffect } from 'react';
|
||||||
import DOMPurify from 'dompurify';
|
|
||||||
|
|
||||||
import { authenticatedFetch } from '../../../utils/api';
|
import { authenticatedFetch } from '../../../utils/api';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
@@ -12,48 +10,6 @@ type Props = {
|
|||||||
// Module-level cache so repeated renders don't re-fetch
|
// Module-level cache so repeated renders don't re-fetch
|
||||||
const svgCache = new Map<string, string>();
|
const svgCache = new Map<string, string>();
|
||||||
|
|
||||||
const FORBIDDEN_SVG_TAGS = [
|
|
||||||
'script',
|
|
||||||
'foreignObject',
|
|
||||||
'iframe',
|
|
||||||
'object',
|
|
||||||
'embed',
|
|
||||||
'link',
|
|
||||||
'meta',
|
|
||||||
'style',
|
|
||||||
'animate',
|
|
||||||
'set',
|
|
||||||
'animateTransform',
|
|
||||||
'animateMotion',
|
|
||||||
];
|
|
||||||
|
|
||||||
const FORBIDDEN_SVG_ATTRS = [
|
|
||||||
'href',
|
|
||||||
'xlink:href',
|
|
||||||
'src',
|
|
||||||
'style',
|
|
||||||
];
|
|
||||||
|
|
||||||
function sanitizeSvg(svgText: string): string | null {
|
|
||||||
const sanitized = DOMPurify.sanitize(svgText, {
|
|
||||||
USE_PROFILES: { svg: true, svgFilters: true },
|
|
||||||
FORBID_TAGS: FORBIDDEN_SVG_TAGS,
|
|
||||||
FORBID_ATTR: FORBIDDEN_SVG_ATTRS,
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!sanitized) return null;
|
|
||||||
|
|
||||||
try {
|
|
||||||
const doc = new DOMParser().parseFromString(sanitized, 'image/svg+xml');
|
|
||||||
const root = doc.documentElement;
|
|
||||||
if (!root || root.nodeName.toLowerCase() !== 'svg') return null;
|
|
||||||
if (doc.querySelector('parsererror')) return null;
|
|
||||||
return sanitized;
|
|
||||||
} catch {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default function PluginIcon({ pluginName, iconFile, className }: Props) {
|
export default function PluginIcon({ pluginName, iconFile, className }: Props) {
|
||||||
const url = iconFile
|
const url = iconFile
|
||||||
? `/api/plugins/${encodeURIComponent(pluginName)}/assets/${encodeURIComponent(iconFile)}`
|
? `/api/plugins/${encodeURIComponent(pluginName)}/assets/${encodeURIComponent(iconFile)}`
|
||||||
@@ -68,11 +24,9 @@ export default function PluginIcon({ pluginName, iconFile, className }: Props) {
|
|||||||
return r.text();
|
return r.text();
|
||||||
})
|
})
|
||||||
.then((text) => {
|
.then((text) => {
|
||||||
if (!text) return;
|
if (text && text.trimStart().startsWith('<svg')) {
|
||||||
const sanitized = sanitizeSvg(text);
|
svgCache.set(url, text);
|
||||||
if (sanitized) {
|
setSvg(text);
|
||||||
svgCache.set(url, sanitized);
|
|
||||||
setSvg(sanitized);
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {});
|
||||||
@@ -81,6 +35,10 @@ export default function PluginIcon({ pluginName, iconFile, className }: Props) {
|
|||||||
if (!svg) return <span className={className} />;
|
if (!svg) return <span className={className} />;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<span className={className} dangerouslySetInnerHTML={{ __html: svg }} />
|
<span
|
||||||
|
className={className}
|
||||||
|
// SVG is fetched from the user's own installed plugin — same trust level as the plugin code itself
|
||||||
|
dangerouslySetInnerHTML={{ __html: svg }}
|
||||||
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user