mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-26 14:19:24 +00:00
add tooltips
This commit is contained in:
parent
4d47be9047
commit
47f276da61
4
frontend/public/logo-tooltip.svg
Normal file
4
frontend/public/logo-tooltip.svg
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="192" height="192" viewBox="0 0 192 192" fill="none">
|
||||||
|
<path d="M7.26375 95.8344L123.374 4.32822e-05L123.375 89.4987L7.26375 185.333L7.26375 95.8344Z" fill="white"/>
|
||||||
|
<path d="M68.4794 102.395L184.728 6.44717L184.728 96.052L68.4794 192L68.4794 102.395Z" fill="white" fill-opacity="0.6"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 339 B |
@ -213,6 +213,7 @@ const QuickAccessBar = ({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
|
data-sidebar="quick-access"
|
||||||
className={`h-screen flex flex-col w-20 quick-access-bar-main ${isRainbowMode ? 'rainbow-mode' : ''}`}
|
className={`h-screen flex flex-col w-20 quick-access-bar-main ${isRainbowMode ? 'rainbow-mode' : ''}`}
|
||||||
>
|
>
|
||||||
{/* Fixed header outside scrollable area */}
|
{/* Fixed header outside scrollable area */}
|
||||||
|
221
frontend/src/components/shared/Tooltip.README.md
Normal file
221
frontend/src/components/shared/Tooltip.README.md
Normal file
@ -0,0 +1,221 @@
|
|||||||
|
# Tooltip Component
|
||||||
|
|
||||||
|
A flexible, accessible tooltip component that supports both regular positioning and special sidebar positioning logic with click-to-pin functionality. The tooltip is controlled by default, appearing on hover and pinning on click.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- 🎯 **Smart Positioning**: Automatically positions tooltips to stay within viewport bounds
|
||||||
|
- 📱 **Sidebar Support**: Special positioning logic for sidebar/navigation elements
|
||||||
|
- ♿ **Accessible**: Works with both mouse and keyboard interactions
|
||||||
|
- 🎨 **Customizable**: Support for arrows, structured content, and custom JSX
|
||||||
|
- 🌙 **Theme Support**: Built-in dark mode and theme variable support
|
||||||
|
- ⚡ **Performance**: Memoized calculations and efficient event handling
|
||||||
|
- 📜 **Scrollable**: Content area scrolls when content exceeds max height
|
||||||
|
- 📌 **Click-to-Pin**: Click to pin tooltips open, click outside or the close button to unpin
|
||||||
|
- 🔗 **Link Support**: Full support for clickable links in descriptions, bullets, and body content
|
||||||
|
- 🎮 **Controlled by Default**: Always uses controlled state management for consistent behavior
|
||||||
|
|
||||||
|
## Behavior
|
||||||
|
|
||||||
|
### Default Behavior (Controlled)
|
||||||
|
- **Hover**: Tooltips appear on hover with a small delay when leaving to prevent flickering
|
||||||
|
- **Click**: Click the trigger to pin the tooltip open
|
||||||
|
- **Click tooltip**: Pins the tooltip to keep it open
|
||||||
|
- **Click close button**: Unpins and closes the tooltip (red X button in top-right when pinned)
|
||||||
|
- **Click outside**: Unpins and closes the tooltip
|
||||||
|
- **Visual indicator**: Pinned tooltips have a blue border and close button
|
||||||
|
|
||||||
|
### Manual Control (Optional)
|
||||||
|
- Use `open` and `onOpenChange` props for complete external control
|
||||||
|
- Useful for complex state management or custom interaction patterns
|
||||||
|
|
||||||
|
## Basic Usage
|
||||||
|
|
||||||
|
```tsx
|
||||||
|
import { Tooltip } from '@/components/shared';
|
||||||
|
|
||||||
|
function MyComponent() {
|
||||||
|
return (
|
||||||
|
<Tooltip content="This is a helpful tooltip">
|
||||||
|
<button>Hover me</button>
|
||||||
|
</Tooltip>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## API Reference
|
||||||
|
|
||||||
|
### Props
|
||||||
|
|
||||||
|
| Prop | Type | Default | Description |
|
||||||
|
|------|------|---------|-------------|
|
||||||
|
| `content` | `ReactNode` | - | Custom JSX content to display in the tooltip |
|
||||||
|
| `tips` | `TooltipTip[]` | - | Structured content with title, description, bullets, and optional body |
|
||||||
|
| `children` | `ReactElement` | **required** | Element that triggers the tooltip |
|
||||||
|
| `sidebarTooltip` | `boolean` | `false` | Enables special sidebar positioning logic |
|
||||||
|
| `position` | `'right' \| 'left' \| 'top' \| 'bottom'` | `'right'` | Tooltip position (ignored if `sidebarTooltip` is true) |
|
||||||
|
| `offset` | `number` | `8` | Distance in pixels between trigger and tooltip |
|
||||||
|
| `maxWidth` | `number \| string` | `280` | Maximum width constraint for the tooltip |
|
||||||
|
| `open` | `boolean` | `undefined` | External open state (makes component fully controlled) |
|
||||||
|
| `onOpenChange` | `(open: boolean) => void` | `undefined` | Callback for external control |
|
||||||
|
| `arrow` | `boolean` | `false` | Shows a small triangular arrow pointing to the trigger element |
|
||||||
|
| `portalTarget` | `HTMLElement` | `undefined` | DOM node to portal the tooltip into |
|
||||||
|
| `header` | `{ title: string; logo?: ReactNode }` | - | Optional header with title and logo |
|
||||||
|
|
||||||
|
### TooltipTip Interface
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
interface TooltipTip {
|
||||||
|
title?: string; // Optional pill label
|
||||||
|
description?: string; // Optional description text (supports HTML including <a> tags)
|
||||||
|
bullets?: string[]; // Optional bullet points (supports HTML including <a> tags)
|
||||||
|
body?: React.ReactNode; // Optional custom JSX for this tip
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage Examples
|
||||||
|
|
||||||
|
### Default Behavior (Recommended)
|
||||||
|
|
||||||
|
```tsx
|
||||||
|
// Simple tooltip with hover and click-to-pin
|
||||||
|
<Tooltip content="This tooltip appears on hover and pins on click">
|
||||||
|
<button>Hover me</button>
|
||||||
|
</Tooltip>
|
||||||
|
|
||||||
|
// Structured content with tips
|
||||||
|
<Tooltip
|
||||||
|
tips={[
|
||||||
|
{
|
||||||
|
title: "OCR Mode",
|
||||||
|
description: "Choose how to process text in your documents.",
|
||||||
|
bullets: [
|
||||||
|
"<strong>Auto</strong> skips pages that already contain text.",
|
||||||
|
"<strong>Force</strong> re-processes every page.",
|
||||||
|
"<strong>Strict</strong> stops if text is found.",
|
||||||
|
"<a href='https://docs.example.com' target='_blank'>Learn more</a>"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
header={{
|
||||||
|
title: "Basic Settings Overview",
|
||||||
|
logo: <img src="/logo.svg" alt="Logo" />
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<button>Settings</button>
|
||||||
|
</Tooltip>
|
||||||
|
```
|
||||||
|
|
||||||
|
### Custom JSX Content
|
||||||
|
|
||||||
|
```tsx
|
||||||
|
<Tooltip
|
||||||
|
content={
|
||||||
|
<div>
|
||||||
|
<h3>Custom Content</h3>
|
||||||
|
<p>Any JSX you want here</p>
|
||||||
|
<button>Action</button>
|
||||||
|
<a href="https://example.com">External link</a>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<button>Custom tooltip</button>
|
||||||
|
</Tooltip>
|
||||||
|
```
|
||||||
|
|
||||||
|
### Mixed Content (Tips + Custom JSX)
|
||||||
|
|
||||||
|
```tsx
|
||||||
|
<Tooltip
|
||||||
|
tips={[
|
||||||
|
{ title: "Section", description: "Description" }
|
||||||
|
]}
|
||||||
|
content={<div>Additional custom content below tips</div>}
|
||||||
|
>
|
||||||
|
<button>Mixed content</button>
|
||||||
|
</Tooltip>
|
||||||
|
```
|
||||||
|
|
||||||
|
### Sidebar Tooltips
|
||||||
|
|
||||||
|
```tsx
|
||||||
|
// For items in a sidebar/navigation
|
||||||
|
<Tooltip
|
||||||
|
content="This tooltip appears to the right of the sidebar"
|
||||||
|
sidebarTooltip={true}
|
||||||
|
>
|
||||||
|
<div className="sidebar-item">
|
||||||
|
📁 File Manager
|
||||||
|
</div>
|
||||||
|
</Tooltip>
|
||||||
|
```
|
||||||
|
|
||||||
|
### With Arrows
|
||||||
|
|
||||||
|
```tsx
|
||||||
|
<Tooltip
|
||||||
|
content="Tooltip with arrow pointing to trigger"
|
||||||
|
arrow={true}
|
||||||
|
position="top"
|
||||||
|
>
|
||||||
|
<button>Arrow tooltip</button>
|
||||||
|
</Tooltip>
|
||||||
|
```
|
||||||
|
|
||||||
|
### Manual Control (Advanced)
|
||||||
|
|
||||||
|
```tsx
|
||||||
|
function ManualControlTooltip() {
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Tooltip
|
||||||
|
content="Fully controlled tooltip"
|
||||||
|
open={open}
|
||||||
|
onOpenChange={setOpen}
|
||||||
|
>
|
||||||
|
<button onClick={() => setOpen(!open)}>
|
||||||
|
Toggle tooltip
|
||||||
|
</button>
|
||||||
|
</Tooltip>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Click-to-Pin Interaction
|
||||||
|
|
||||||
|
### How to Use (Default Behavior)
|
||||||
|
1. **Hover** over the trigger element to show the tooltip
|
||||||
|
2. **Click** the trigger element to pin the tooltip open
|
||||||
|
3. **Click** the red X button in the top-right corner to close
|
||||||
|
4. **Click** anywhere outside the tooltip to close
|
||||||
|
5. **Click** the trigger again to toggle pin state
|
||||||
|
|
||||||
|
### Visual States
|
||||||
|
- **Unpinned**: Normal tooltip appearance
|
||||||
|
- **Pinned**: Blue border, subtle glow, and close button (X) in top-right corner
|
||||||
|
|
||||||
|
## Link Support
|
||||||
|
|
||||||
|
The tooltip fully supports clickable links in all content areas:
|
||||||
|
|
||||||
|
- **Descriptions**: Use `<a href="...">` in description strings
|
||||||
|
- **Bullets**: Use `<a href="...">` in bullet point strings
|
||||||
|
- **Body**: Use JSX `<a>` elements in the body ReactNode
|
||||||
|
- **Content**: Use JSX `<a>` elements in custom content
|
||||||
|
|
||||||
|
Links automatically get proper styling with hover states and open in new tabs when using `target="_blank"`.
|
||||||
|
|
||||||
|
## Positioning Logic
|
||||||
|
|
||||||
|
### Regular Tooltips
|
||||||
|
- Uses the `position` prop to determine initial placement
|
||||||
|
- Automatically clamps to viewport boundaries
|
||||||
|
- Calculates optimal position based on trigger element's `getBoundingClientRect()`
|
||||||
|
- **Dynamic arrow positioning**: Arrow stays aligned with trigger even when tooltip is clamped
|
||||||
|
|
||||||
|
### Sidebar Tooltips
|
||||||
|
- When `sidebarTooltip={true}`, horizontal positioning is locked to the right of the sidebar
|
||||||
|
- Vertical positioning follows the trigger but clamps to viewport
|
||||||
|
- Automatically detects sidebar width or falls back to 240px
|
||||||
|
- **No arrows** - sidebar tooltips don't show arrows
|
184
frontend/src/components/shared/Tooltip.module.css
Normal file
184
frontend/src/components/shared/Tooltip.module.css
Normal file
@ -0,0 +1,184 @@
|
|||||||
|
/* Tooltip Container */
|
||||||
|
.tooltip-container {
|
||||||
|
position: fixed;
|
||||||
|
border: 1px solid var(--border-default);
|
||||||
|
border-radius: 12px;
|
||||||
|
background-color: var(--bg-raised);
|
||||||
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.5;
|
||||||
|
pointer-events: auto;
|
||||||
|
z-index: 9999;
|
||||||
|
transition: opacity 100ms ease-out, transform 100ms ease-out;
|
||||||
|
min-width: 400px;
|
||||||
|
max-width: 50vh;
|
||||||
|
max-height: 80vh;
|
||||||
|
color: var(--text-primary);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Pinned tooltip indicator */
|
||||||
|
.tooltip-container.pinned {
|
||||||
|
border-color: var(--primary-color, #3b82f6);
|
||||||
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 0 0 2px rgba(59, 130, 246, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Close button */
|
||||||
|
.tooltip-pin-button {
|
||||||
|
position: absolute;
|
||||||
|
top: -8px;
|
||||||
|
right: 8px;
|
||||||
|
font-size: 14px;
|
||||||
|
background: var(--bg-raised);
|
||||||
|
padding: 4px;
|
||||||
|
border-radius: 4px;
|
||||||
|
border: 1px solid var(--primary-color, #3b82f6);
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background-color 0.2s ease, border-color 0.2s ease;
|
||||||
|
z-index: 1;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
min-width: 24px;
|
||||||
|
min-height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-pin-button .material-symbols-outlined {
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-pin-button:hover {
|
||||||
|
background-color: #ef4444 !important;
|
||||||
|
border-color: #ef4444 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Tooltip Header */
|
||||||
|
.tooltip-header {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
padding: 12px 16px;
|
||||||
|
background-color: var(--tooltip-header-bg);
|
||||||
|
color: var(--tooltip-header-color);
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 500;
|
||||||
|
border-top-left-radius: 12px;
|
||||||
|
border-top-right-radius: 12px;
|
||||||
|
margin: -1px -1px 0 -1px;
|
||||||
|
border: 1px solid var(--tooltip-border);
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-logo {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-title {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Tooltip Body */
|
||||||
|
.tooltip-body {
|
||||||
|
padding: 16px !important;
|
||||||
|
color: var(--text-primary) !important;
|
||||||
|
font-size: 14px !important;
|
||||||
|
line-height: 1.6 !important;
|
||||||
|
overflow-y: auto;
|
||||||
|
flex: 1;
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-body * {
|
||||||
|
color: var(--text-primary) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Link styling within tooltips */
|
||||||
|
.tooltip-body a {
|
||||||
|
color: var(--link-color, #3b82f6) !important;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-decoration-color: var(--link-underline-color, rgba(59, 130, 246, 0.3));
|
||||||
|
transition: color 0.2s ease, text-decoration-color 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-body a:hover {
|
||||||
|
color: var(--link-hover-color, #2563eb) !important;
|
||||||
|
text-decoration-color: var(--link-hover-underline-color, rgba(37, 99, 235, 0.5));
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-container .tooltip-body {
|
||||||
|
color: var(--text-primary) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-container .tooltip-body * {
|
||||||
|
color: var(--text-primary) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ensure links maintain their styling */
|
||||||
|
.tooltip-container .tooltip-body a {
|
||||||
|
color: var(--link-color, #3b82f6) !important;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-decoration-color: var(--link-underline-color, rgba(59, 130, 246, 0.3));
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-container .tooltip-body a:hover {
|
||||||
|
color: var(--link-hover-color, #2563eb) !important;
|
||||||
|
text-decoration-color: var(--link-hover-underline-color, rgba(37, 99, 235, 0.5));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Tooltip Arrows */
|
||||||
|
.tooltip-arrow {
|
||||||
|
position: absolute;
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
background: var(--bg-raised);
|
||||||
|
border: 1px solid var(--border-default);
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.tooltip-arrow-sidebar {
|
||||||
|
top: 50%;
|
||||||
|
left: -4px;
|
||||||
|
transform: translateY(-50%) rotate(45deg);
|
||||||
|
border-left: none;
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-arrow-top {
|
||||||
|
top: -4px;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%) rotate(45deg);
|
||||||
|
border-top: none;
|
||||||
|
border-left: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-arrow-bottom {
|
||||||
|
bottom: -4px;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%) rotate(45deg);
|
||||||
|
border-bottom: none;
|
||||||
|
border-right: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-arrow-left {
|
||||||
|
right: -4px;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%) rotate(45deg);
|
||||||
|
border-left: none;
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip-arrow-right {
|
||||||
|
left: -4px;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%) rotate(45deg);
|
||||||
|
border-right: none;
|
||||||
|
border-top: none;
|
||||||
|
}
|
503
frontend/src/components/shared/Tooltip.tsx
Normal file
503
frontend/src/components/shared/Tooltip.tsx
Normal file
@ -0,0 +1,503 @@
|
|||||||
|
import React, { useState, useRef, useEffect, useMemo } from 'react';
|
||||||
|
import { createPortal } from 'react-dom';
|
||||||
|
import styles from './Tooltip.module.css';
|
||||||
|
|
||||||
|
export interface TooltipTip {
|
||||||
|
title?: string;
|
||||||
|
description?: string;
|
||||||
|
bullets?: string[];
|
||||||
|
body?: React.ReactNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface TooltipProps {
|
||||||
|
sidebarTooltip?: boolean;
|
||||||
|
position?: 'right' | 'left' | 'top' | 'bottom';
|
||||||
|
content?: React.ReactNode;
|
||||||
|
tips?: TooltipTip[];
|
||||||
|
children: React.ReactElement;
|
||||||
|
offset?: number;
|
||||||
|
maxWidth?: number | string;
|
||||||
|
open?: boolean;
|
||||||
|
onOpenChange?: (open: boolean) => void;
|
||||||
|
arrow?: boolean;
|
||||||
|
portalTarget?: HTMLElement;
|
||||||
|
header?: {
|
||||||
|
title: string;
|
||||||
|
logo?: React.ReactNode;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
type Position = 'right' | 'left' | 'top' | 'bottom';
|
||||||
|
|
||||||
|
interface PlacementResult {
|
||||||
|
top: number;
|
||||||
|
left: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
function place(
|
||||||
|
triggerRect: DOMRect,
|
||||||
|
tooltipRect: DOMRect,
|
||||||
|
position: Position,
|
||||||
|
offset: number
|
||||||
|
): PlacementResult {
|
||||||
|
let top = 0;
|
||||||
|
let left = 0;
|
||||||
|
|
||||||
|
switch (position) {
|
||||||
|
case 'right':
|
||||||
|
top = triggerRect.top + triggerRect.height / 2 - tooltipRect.height / 2;
|
||||||
|
left = triggerRect.right + offset;
|
||||||
|
break;
|
||||||
|
case 'left':
|
||||||
|
top = triggerRect.top + triggerRect.height / 2 - tooltipRect.height / 2;
|
||||||
|
left = triggerRect.left - tooltipRect.width - offset;
|
||||||
|
break;
|
||||||
|
case 'top':
|
||||||
|
top = triggerRect.top - tooltipRect.height - offset;
|
||||||
|
left = triggerRect.left + triggerRect.width / 2 - tooltipRect.width / 2;
|
||||||
|
break;
|
||||||
|
case 'bottom':
|
||||||
|
top = triggerRect.bottom + offset;
|
||||||
|
left = triggerRect.left + triggerRect.width / 2 - tooltipRect.width / 2;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return { top, left };
|
||||||
|
}
|
||||||
|
|
||||||
|
function clamp(value: number, min: number, max: number): number {
|
||||||
|
return Math.min(Math.max(value, min), max);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getSidebarRect(): { rect: DOMRect | null, isCorrectSidebar: boolean } {
|
||||||
|
// Find the rightmost sidebar - this will be the "All Tools" expanded panel
|
||||||
|
const allSidebars = [];
|
||||||
|
|
||||||
|
// Find the QuickAccessBar (narrow left bar)
|
||||||
|
const quickAccessBar = document.querySelector('[data-sidebar="quick-access"]');
|
||||||
|
if (quickAccessBar) {
|
||||||
|
const rect = quickAccessBar.getBoundingClientRect();
|
||||||
|
if (rect.width > 0) {
|
||||||
|
allSidebars.push({
|
||||||
|
element: 'QuickAccessBar',
|
||||||
|
selector: '[data-sidebar="quick-access"]',
|
||||||
|
rect
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Find the tool panel (the expanded "All Tools" panel)
|
||||||
|
const toolPanel = document.querySelector('[data-sidebar="tool-panel"]');
|
||||||
|
if (toolPanel) {
|
||||||
|
const rect = toolPanel.getBoundingClientRect();
|
||||||
|
if (rect.width > 0) {
|
||||||
|
allSidebars.push({
|
||||||
|
element: 'ToolPanel',
|
||||||
|
selector: '[data-sidebar="tool-panel"]',
|
||||||
|
rect
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use the rightmost sidebar (which should be the tool panel when expanded)
|
||||||
|
if (allSidebars.length > 0) {
|
||||||
|
const rightmostSidebar = allSidebars.reduce((rightmost, current) => {
|
||||||
|
return current.rect.right > rightmost.rect.right ? current : rightmost;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Only consider it correct if we're using the ToolPanel (expanded All Tools sidebar)
|
||||||
|
const isCorrectSidebar = rightmostSidebar.element === 'ToolPanel';
|
||||||
|
|
||||||
|
console.log('✅ Tooltip positioning using:', {
|
||||||
|
element: rightmostSidebar.element,
|
||||||
|
selector: rightmostSidebar.selector,
|
||||||
|
width: rightmostSidebar.rect.width,
|
||||||
|
right: rightmostSidebar.rect.right,
|
||||||
|
isCorrectSidebar,
|
||||||
|
rect: rightmostSidebar.rect
|
||||||
|
});
|
||||||
|
|
||||||
|
return { rect: rightmostSidebar.rect, isCorrectSidebar };
|
||||||
|
}
|
||||||
|
|
||||||
|
console.warn('⚠️ No sidebars found, using fallback positioning');
|
||||||
|
// Final fallback
|
||||||
|
return { rect: new DOMRect(0, 0, 280, window.innerHeight), isCorrectSidebar: false };
|
||||||
|
}
|
||||||
|
|
||||||
|
export const Tooltip: React.FC<TooltipProps> = ({
|
||||||
|
sidebarTooltip = false,
|
||||||
|
position = 'right',
|
||||||
|
content,
|
||||||
|
tips,
|
||||||
|
children,
|
||||||
|
offset: gap = 8,
|
||||||
|
maxWidth = 280,
|
||||||
|
open: controlledOpen,
|
||||||
|
onOpenChange,
|
||||||
|
arrow = false,
|
||||||
|
portalTarget,
|
||||||
|
header,
|
||||||
|
}) => {
|
||||||
|
const [internalOpen, setInternalOpen] = useState(false);
|
||||||
|
const [isPinned, setIsPinned] = useState(false);
|
||||||
|
const [coords, setCoords] = useState<{ top: number; left: number; arrowOffset: number | null }>({ top: 0, left: 0, arrowOffset: null });
|
||||||
|
const [positionReady, setPositionReady] = useState(false);
|
||||||
|
const triggerRef = useRef<HTMLElement>(null);
|
||||||
|
const tooltipRef = useRef<HTMLDivElement>(null);
|
||||||
|
const hoverTimeoutRef = useRef<ReturnType<typeof setTimeout> | null>(null);
|
||||||
|
|
||||||
|
// Always use controlled mode - if no controlled props provided, use internal state
|
||||||
|
const isControlled = controlledOpen !== undefined;
|
||||||
|
const open = isControlled ? controlledOpen : internalOpen;
|
||||||
|
|
||||||
|
const handleOpenChange = (newOpen: boolean) => {
|
||||||
|
if (isControlled) {
|
||||||
|
onOpenChange?.(newOpen);
|
||||||
|
} else {
|
||||||
|
setInternalOpen(newOpen);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reset position ready state when closing
|
||||||
|
if (!newOpen) {
|
||||||
|
setPositionReady(false);
|
||||||
|
setIsPinned(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleTooltipClick = (e: React.MouseEvent) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
setIsPinned(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleDocumentClick = (e: MouseEvent) => {
|
||||||
|
// If tooltip is pinned and we click outside of it, unpin it
|
||||||
|
if (isPinned && tooltipRef.current && !tooltipRef.current.contains(e.target as Node)) {
|
||||||
|
setIsPinned(false);
|
||||||
|
handleOpenChange(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Memoize sidebar position for performance
|
||||||
|
const sidebarLeft = useMemo(() => {
|
||||||
|
if (!sidebarTooltip) return 0;
|
||||||
|
const sidebarInfo = getSidebarRect();
|
||||||
|
return sidebarInfo.rect ? sidebarInfo.rect.right : 240;
|
||||||
|
}, [sidebarTooltip]);
|
||||||
|
|
||||||
|
const updatePosition = () => {
|
||||||
|
if (!triggerRef.current || !open) return;
|
||||||
|
|
||||||
|
const triggerRect = triggerRef.current.getBoundingClientRect();
|
||||||
|
|
||||||
|
let top: number;
|
||||||
|
let left: number;
|
||||||
|
let arrowOffset: number | null = null;
|
||||||
|
|
||||||
|
if (sidebarTooltip) {
|
||||||
|
// Get fresh sidebar position each time
|
||||||
|
const sidebarInfo = getSidebarRect();
|
||||||
|
const currentSidebarRight = sidebarInfo.rect ? sidebarInfo.rect.right : sidebarLeft;
|
||||||
|
|
||||||
|
// Only show tooltip if we have the correct sidebar (ToolPanel)
|
||||||
|
if (!sidebarInfo.isCorrectSidebar) {
|
||||||
|
console.log('🚫 Not showing tooltip - wrong sidebar detected');
|
||||||
|
setPositionReady(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Position to the right of correct sidebar with 20px gap
|
||||||
|
left = currentSidebarRight + 20;
|
||||||
|
top = triggerRect.top; // Align top of tooltip with trigger element
|
||||||
|
|
||||||
|
console.log('Sidebar tooltip positioning:', {
|
||||||
|
currentSidebarRight,
|
||||||
|
triggerRect,
|
||||||
|
calculatedLeft: left,
|
||||||
|
calculatedTop: top,
|
||||||
|
isCorrectSidebar: sidebarInfo.isCorrectSidebar
|
||||||
|
});
|
||||||
|
|
||||||
|
// Only clamp if we have tooltip dimensions
|
||||||
|
if (tooltipRef.current) {
|
||||||
|
const tooltipRect = tooltipRef.current.getBoundingClientRect();
|
||||||
|
const maxTop = window.innerHeight - tooltipRect.height - 4;
|
||||||
|
const originalTop = top;
|
||||||
|
top = clamp(top, 4, maxTop);
|
||||||
|
|
||||||
|
// If tooltip was clamped, adjust arrow position to stay aligned with trigger
|
||||||
|
if (originalTop !== top) {
|
||||||
|
arrowOffset = triggerRect.top + triggerRect.height / 2 - top;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
setCoords({ top, left, arrowOffset });
|
||||||
|
setPositionReady(true);
|
||||||
|
} else {
|
||||||
|
// Regular tooltip logic
|
||||||
|
if (!tooltipRef.current) return;
|
||||||
|
|
||||||
|
const tooltipRect = tooltipRef.current.getBoundingClientRect();
|
||||||
|
const placement = place(triggerRect, tooltipRect, position, gap);
|
||||||
|
top = placement.top;
|
||||||
|
left = placement.left;
|
||||||
|
|
||||||
|
// Clamp to viewport
|
||||||
|
top = clamp(top, 4, window.innerHeight - tooltipRect.height - 4);
|
||||||
|
left = clamp(left, 4, window.innerWidth - tooltipRect.width - 4);
|
||||||
|
|
||||||
|
// Calculate arrow position to stay aligned with trigger
|
||||||
|
if (position === 'top' || position === 'bottom') {
|
||||||
|
// For top/bottom arrows, adjust horizontal position
|
||||||
|
const triggerCenter = triggerRect.left + triggerRect.width / 2;
|
||||||
|
const tooltipCenter = left + tooltipRect.width / 2;
|
||||||
|
if (Math.abs(triggerCenter - tooltipCenter) > 4) {
|
||||||
|
// Arrow needs adjustment
|
||||||
|
arrowOffset = triggerCenter - left - 4; // 4px is half arrow width
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// For left/right arrows, adjust vertical position
|
||||||
|
const triggerCenter = triggerRect.top + triggerRect.height / 2;
|
||||||
|
const tooltipCenter = top + tooltipRect.height / 2;
|
||||||
|
if (Math.abs(triggerCenter - tooltipCenter) > 4) {
|
||||||
|
// Arrow needs adjustment
|
||||||
|
arrowOffset = triggerCenter - top - 4; // 4px is half arrow height
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
setCoords({ top, left, arrowOffset });
|
||||||
|
setPositionReady(true);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
useEffect(() => {
|
||||||
|
if (!open) return;
|
||||||
|
|
||||||
|
requestAnimationFrame(updatePosition);
|
||||||
|
|
||||||
|
const handleUpdate = () => requestAnimationFrame(updatePosition);
|
||||||
|
window.addEventListener('scroll', handleUpdate, true);
|
||||||
|
window.addEventListener('resize', handleUpdate);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
clearTimeout(hoverTimeoutRef.current!);
|
||||||
|
|
||||||
|
window.removeEventListener('scroll', handleUpdate, true);
|
||||||
|
window.removeEventListener('resize', handleUpdate);
|
||||||
|
};
|
||||||
|
}, [open, sidebarLeft, position, gap, sidebarTooltip]);
|
||||||
|
// Add document click listener for unpinning
|
||||||
|
useEffect(() => {
|
||||||
|
if (isPinned) {
|
||||||
|
document.addEventListener('click', handleDocumentClick);
|
||||||
|
return () => {
|
||||||
|
document.removeEventListener('click', handleDocumentClick);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}, [isPinned]);
|
||||||
|
|
||||||
|
const getArrowClass = () => {
|
||||||
|
// No arrow for sidebar tooltips
|
||||||
|
if (sidebarTooltip) return null;
|
||||||
|
|
||||||
|
switch (position) {
|
||||||
|
case 'top': return "tooltip-arrow tooltip-arrow-top";
|
||||||
|
case 'bottom': return "tooltip-arrow tooltip-arrow-bottom";
|
||||||
|
case 'left': return "tooltip-arrow tooltip-arrow-left";
|
||||||
|
case 'right': return "tooltip-arrow tooltip-arrow-right";
|
||||||
|
default: return "tooltip-arrow tooltip-arrow-right";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const getArrowStyleClass = (arrowClass: string) => {
|
||||||
|
const styleKey = arrowClass.split(' ')[1];
|
||||||
|
// Handle both kebab-case and camelCase CSS module exports
|
||||||
|
return styles[styleKey as keyof typeof styles] ||
|
||||||
|
styles[styleKey.replace(/-([a-z])/g, (_, letter) => letter.toUpperCase()) as keyof typeof styles] ||
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
// Only show tooltip when position is ready and correct
|
||||||
|
const shouldShowTooltip = open && (sidebarTooltip ? positionReady : true);
|
||||||
|
|
||||||
|
const tooltipElement = shouldShowTooltip ? (
|
||||||
|
<div
|
||||||
|
ref={tooltipRef}
|
||||||
|
style={{
|
||||||
|
position: 'fixed',
|
||||||
|
top: coords.top,
|
||||||
|
left: coords.left,
|
||||||
|
maxWidth,
|
||||||
|
zIndex: 9999,
|
||||||
|
visibility: 'visible',
|
||||||
|
opacity: 1,
|
||||||
|
color: 'var(--text-primary)',
|
||||||
|
}}
|
||||||
|
className={`${styles['tooltip-container']} ${isPinned ? styles.pinned : ''}`}
|
||||||
|
onClick={handleTooltipClick}
|
||||||
|
>
|
||||||
|
{isPinned && (
|
||||||
|
<button
|
||||||
|
className={styles['tooltip-pin-button']}
|
||||||
|
onClick={(e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
setIsPinned(false);
|
||||||
|
handleOpenChange(false);
|
||||||
|
}}
|
||||||
|
title="Close tooltip"
|
||||||
|
>
|
||||||
|
<span className="material-symbols-rounded">
|
||||||
|
close
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
{arrow && getArrowClass() && (
|
||||||
|
<div
|
||||||
|
className={`${styles['tooltip-arrow']} ${getArrowStyleClass(getArrowClass()!)}`}
|
||||||
|
style={coords.arrowOffset !== null ? {
|
||||||
|
[position === 'top' || position === 'bottom' ? 'left' : 'top']: coords.arrowOffset
|
||||||
|
} : undefined}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
{header && (
|
||||||
|
<div className={styles['tooltip-header']}>
|
||||||
|
<div className={styles['tooltip-logo']}>
|
||||||
|
{header.logo || <img src="/logo-tooltip.svg" alt="Stirling PDF" style={{ width: '1.4rem', height: '1.4rem', display: 'block' }} />}
|
||||||
|
</div>
|
||||||
|
<span className={styles['tooltip-title']}>{header.title}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div
|
||||||
|
className={styles['tooltip-body']}
|
||||||
|
style={{
|
||||||
|
color: 'var(--text-primary)',
|
||||||
|
padding: '16px',
|
||||||
|
fontSize: '14px',
|
||||||
|
lineHeight: '1.6'
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div style={{ color: 'var(--text-primary)' }}>
|
||||||
|
{tips ? (
|
||||||
|
<>
|
||||||
|
{tips.map((tip, index) => (
|
||||||
|
<div key={index} style={{ marginBottom: index < tips.length - 1 ? '24px' : '0' }}>
|
||||||
|
{tip.title && (
|
||||||
|
<div style={{
|
||||||
|
display: 'inline-block',
|
||||||
|
backgroundColor: 'var(--tooltip-title-bg)',
|
||||||
|
color: 'var(--tooltip-title-color)',
|
||||||
|
padding: '6px 12px',
|
||||||
|
borderRadius: '16px',
|
||||||
|
fontSize: '12px',
|
||||||
|
fontWeight: '600',
|
||||||
|
marginBottom: '12px'
|
||||||
|
}}>
|
||||||
|
{tip.title}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{tip.description && (
|
||||||
|
<p style={{ margin: '0 0 12px 0', color: 'var(--text-secondary)', fontSize: '13px' }} dangerouslySetInnerHTML={{ __html: tip.description }} />
|
||||||
|
)}
|
||||||
|
{tip.bullets && tip.bullets.length > 0 && (
|
||||||
|
<ul style={{ margin: '0', paddingLeft: '16px', color: 'var(--text-secondary)', fontSize: '13px' }}>
|
||||||
|
{tip.bullets.map((bullet, bulletIndex) => (
|
||||||
|
<li key={bulletIndex} style={{ marginBottom: '6px' }} dangerouslySetInnerHTML={{ __html: bullet }} />
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
)}
|
||||||
|
{tip.body && (
|
||||||
|
<div style={{ marginTop: '12px' }}>
|
||||||
|
{tip.body}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
{content && (
|
||||||
|
<div style={{ marginTop: '24px' }}>
|
||||||
|
{content}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
content
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
) : null;
|
||||||
|
|
||||||
|
const handleMouseEnter = (e: React.MouseEvent) => {
|
||||||
|
// Clear any existing timeout
|
||||||
|
if (hoverTimeoutRef.current) {
|
||||||
|
clearTimeout(hoverTimeoutRef.current);
|
||||||
|
hoverTimeoutRef.current = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Only show on hover if not pinned
|
||||||
|
if (!isPinned) {
|
||||||
|
handleOpenChange(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
(children.props as any)?.onMouseEnter?.(e);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleMouseLeave = (e: React.MouseEvent) => {
|
||||||
|
// Only hide on mouse leave if not pinned
|
||||||
|
if (!isPinned) {
|
||||||
|
// Add a small delay to prevent flickering
|
||||||
|
hoverTimeoutRef.current = setTimeout(() => {
|
||||||
|
handleOpenChange(false);
|
||||||
|
}, 100);
|
||||||
|
}
|
||||||
|
|
||||||
|
(children.props as any)?.onMouseLeave?.(e);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleClick = (e: React.MouseEvent) => {
|
||||||
|
// Toggle pin state on click
|
||||||
|
if (open) {
|
||||||
|
setIsPinned(!isPinned);
|
||||||
|
} else {
|
||||||
|
handleOpenChange(true);
|
||||||
|
setIsPinned(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
(children.props as any)?.onClick?.(e);
|
||||||
|
};
|
||||||
|
|
||||||
|
const enhancedChildren = React.cloneElement(children as any, {
|
||||||
|
ref: (node: HTMLElement) => {
|
||||||
|
triggerRef.current = node;
|
||||||
|
// Forward ref if children already has one
|
||||||
|
const originalRef = (children as any).ref;
|
||||||
|
if (typeof originalRef === 'function') {
|
||||||
|
originalRef(node);
|
||||||
|
} else if (originalRef && typeof originalRef === 'object') {
|
||||||
|
originalRef.current = node;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onMouseEnter: handleMouseEnter,
|
||||||
|
onMouseLeave: handleMouseLeave,
|
||||||
|
onClick: handleClick,
|
||||||
|
onFocus: (e: React.FocusEvent) => {
|
||||||
|
if (!isPinned) {
|
||||||
|
handleOpenChange(true);
|
||||||
|
}
|
||||||
|
(children.props as any)?.onFocus?.(e);
|
||||||
|
},
|
||||||
|
onBlur: (e: React.FocusEvent) => {
|
||||||
|
if (!isPinned) {
|
||||||
|
handleOpenChange(false);
|
||||||
|
}
|
||||||
|
(children.props as any)?.onBlur?.(e);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{enhancedChildren}
|
||||||
|
{portalTarget && document.body.contains(portalTarget)
|
||||||
|
? tooltipElement && createPortal(tooltipElement, portalTarget)
|
||||||
|
: tooltipElement}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
25
frontend/src/components/tips/COMPRESS_TIPS.ts
Normal file
25
frontend/src/components/tips/COMPRESS_TIPS.ts
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
import { TooltipContent } from './types';
|
||||||
|
|
||||||
|
export const compressTips: TooltipContent = {
|
||||||
|
header: {
|
||||||
|
title: "Settings Overview"
|
||||||
|
},
|
||||||
|
tips: [
|
||||||
|
{
|
||||||
|
title: "Compression Method",
|
||||||
|
description: "Compression is an easy way to reduce your file size. Pick <strong>File Size</strong> to enter a target size and have us adjust quality for you. Pick <strong>Quality</strong> to set compression strength manually."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Quality Adjustment",
|
||||||
|
description: "Drag the slider to adjust the compression strength. <strong>Lower values (1-3)</strong> preserve quality but result in larger files. <strong>Higher values (7-9)</strong> shrink the file more but reduce image clarity.",
|
||||||
|
bullets: [
|
||||||
|
"Lower values preserve quality",
|
||||||
|
"Higher values reduce file size"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Grayscale",
|
||||||
|
description: "Select this option to convert all images to black and white, which can significantly reduce file size especially for scanned PDFs or image-heavy documents."
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
31
frontend/src/components/tips/OCR_TIPS.ts
Normal file
31
frontend/src/components/tips/OCR_TIPS.ts
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
import { TooltipContent } from './types';
|
||||||
|
|
||||||
|
export const ocrTips: TooltipContent = {
|
||||||
|
header: {
|
||||||
|
title: "Basic Settings Overview",
|
||||||
|
},
|
||||||
|
tips: [
|
||||||
|
{
|
||||||
|
title: "OCR Mode",
|
||||||
|
description: "Optical Character Recognition (OCR) helps you turn scanned or screenshotted pages into text you can search, copy, or highlight.",
|
||||||
|
bullets: [
|
||||||
|
"<strong>Auto</strong> skips pages that already contain text layers.",
|
||||||
|
"<strong>Force</strong> re-OCRs every page and replaces all the text.",
|
||||||
|
"<strong>Strict</strong> halts if any selectable text is found."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Languages",
|
||||||
|
description: "Improve OCR accuracy by specifying the expected languages. Choose one or more languages to guide detection."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Output",
|
||||||
|
description: "Decide how you want the text output formatted:",
|
||||||
|
bullets: [
|
||||||
|
"<strong>Searchable PDF</strong> embeds text behind the original image.",
|
||||||
|
"<strong>HOCR XML</strong> returns a structured machine-readable file.",
|
||||||
|
"<strong>Plain-text sidecar</strong> creates a separate .txt file with raw content."
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
13
frontend/src/components/tips/types.ts
Normal file
13
frontend/src/components/tips/types.ts
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
export interface TooltipContent {
|
||||||
|
header?: {
|
||||||
|
title: string;
|
||||||
|
logo?: string | React.ReactNode;
|
||||||
|
};
|
||||||
|
tips?: Array<{
|
||||||
|
title?: string;
|
||||||
|
description?: string;
|
||||||
|
bullets?: string[];
|
||||||
|
body?: React.ReactNode;
|
||||||
|
}>;
|
||||||
|
content?: React.ReactNode;
|
||||||
|
}
|
@ -2,6 +2,7 @@ import React, { createContext, useContext, useMemo, useRef } from 'react';
|
|||||||
import { Paper, Text, Stack, Box, Flex } from '@mantine/core';
|
import { Paper, Text, Stack, Box, Flex } from '@mantine/core';
|
||||||
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
|
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
|
||||||
import ChevronRightIcon from '@mui/icons-material/ChevronRight';
|
import ChevronRightIcon from '@mui/icons-material/ChevronRight';
|
||||||
|
import { Tooltip, TooltipTip } from '../../shared/Tooltip';
|
||||||
|
|
||||||
interface ToolStepContextType {
|
interface ToolStepContextType {
|
||||||
visibleStepCount: number;
|
visibleStepCount: number;
|
||||||
@ -20,6 +21,14 @@ export interface ToolStepProps {
|
|||||||
completedMessage?: string;
|
completedMessage?: string;
|
||||||
helpText?: string;
|
helpText?: string;
|
||||||
showNumber?: boolean;
|
showNumber?: boolean;
|
||||||
|
tooltip?: {
|
||||||
|
content?: React.ReactNode;
|
||||||
|
tips?: TooltipTip[];
|
||||||
|
header?: {
|
||||||
|
title: string;
|
||||||
|
logo?: React.ReactNode;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const ToolStep = ({
|
const ToolStep = ({
|
||||||
@ -31,7 +40,8 @@ const ToolStep = ({
|
|||||||
children,
|
children,
|
||||||
completedMessage,
|
completedMessage,
|
||||||
helpText,
|
helpText,
|
||||||
showNumber
|
showNumber,
|
||||||
|
tooltip
|
||||||
}: ToolStepProps) => {
|
}: ToolStepProps) => {
|
||||||
if (!isVisible) return null;
|
if (!isVisible) return null;
|
||||||
|
|
||||||
@ -70,9 +80,27 @@ const ToolStep = ({
|
|||||||
{stepNumber}
|
{stepNumber}
|
||||||
</Text>
|
</Text>
|
||||||
)}
|
)}
|
||||||
<Text fw={500} size="lg">
|
{tooltip && !isCollapsed ? (
|
||||||
{title}
|
<Tooltip
|
||||||
</Text>
|
content={tooltip.content}
|
||||||
|
tips={tooltip.tips}
|
||||||
|
header={tooltip.header}
|
||||||
|
sidebarTooltip={true}
|
||||||
|
>
|
||||||
|
<Flex align="center" gap="xs" onClick={(e) => e.stopPropagation()}>
|
||||||
|
<Text fw={500} size="lg">
|
||||||
|
{title}
|
||||||
|
</Text>
|
||||||
|
<span className="material-symbols-rounded" style={{ fontSize: '1.2rem', color: 'var(--icon-files-color)' }}>
|
||||||
|
gpp_maybe
|
||||||
|
</span>
|
||||||
|
</Flex>
|
||||||
|
</Tooltip>
|
||||||
|
) : (
|
||||||
|
<Text fw={500} size="lg">
|
||||||
|
{title}
|
||||||
|
</Text>
|
||||||
|
)}
|
||||||
</Flex>
|
</Flex>
|
||||||
|
|
||||||
{isCollapsed ? (
|
{isCollapsed ? (
|
||||||
|
@ -104,6 +104,7 @@ function HomePageContent() {
|
|||||||
|
|
||||||
{/* Left: Tool Picker or Selected Tool Panel */}
|
{/* Left: Tool Picker or Selected Tool Panel */}
|
||||||
<div
|
<div
|
||||||
|
data-sidebar="tool-panel"
|
||||||
className={`h-screen flex flex-col overflow-hidden bg-[var(--bg-toolbar)] border-r border-[var(--border-subtle)] transition-all duration-300 ease-out ${isRainbowMode ? rainbowStyles.rainbowPaper : ''}`}
|
className={`h-screen flex flex-col overflow-hidden bg-[var(--bg-toolbar)] border-r border-[var(--border-subtle)] transition-all duration-300 ease-out ${isRainbowMode ? rainbowStyles.rainbowPaper : ''}`}
|
||||||
style={{
|
style={{
|
||||||
width: sidebarsVisible && !readerMode ? '14vw' : '0',
|
width: sidebarsVisible && !readerMode ? '14vw' : '0',
|
||||||
|
@ -103,6 +103,13 @@
|
|||||||
--icon-config-bg: #9CA3AF;
|
--icon-config-bg: #9CA3AF;
|
||||||
--icon-config-color: #FFFFFF;
|
--icon-config-color: #FFFFFF;
|
||||||
|
|
||||||
|
/* Colors for tooltips */
|
||||||
|
--tooltip-title-bg: #DBEFFF;
|
||||||
|
--tooltip-title-color: #31528E;
|
||||||
|
--tooltip-header-bg: #31528E;
|
||||||
|
--tooltip-header-color: white;
|
||||||
|
--tooltip-border: var(--border-default);
|
||||||
|
|
||||||
/* Inactive icon colors for light mode */
|
/* Inactive icon colors for light mode */
|
||||||
--icon-inactive-bg: #9CA3AF;
|
--icon-inactive-bg: #9CA3AF;
|
||||||
--icon-inactive-color: #FFFFFF;
|
--icon-inactive-color: #FFFFFF;
|
||||||
@ -177,6 +184,14 @@
|
|||||||
--icon-inactive-bg: #2A2F36;
|
--icon-inactive-bg: #2A2F36;
|
||||||
--icon-inactive-color: #6E7581;
|
--icon-inactive-color: #6E7581;
|
||||||
|
|
||||||
|
/* Dark mode tooltip colors */
|
||||||
|
--tooltip-title-bg: #4B525A;
|
||||||
|
--tooltip-title-color: #fff;
|
||||||
|
--tooltip-header-bg: var(--bg-raised);
|
||||||
|
--tooltip-header-color: var(--text-primary);
|
||||||
|
--tooltip-border: var(--border-default);
|
||||||
|
|
||||||
|
|
||||||
/* Adjust shadows for dark mode */
|
/* Adjust shadows for dark mode */
|
||||||
--shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
|
--shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
|
||||||
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
|
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
|
||||||
|
@ -17,6 +17,7 @@ import CompressSettings from "../components/tools/compress/CompressSettings";
|
|||||||
import { useCompressParameters } from "../hooks/tools/compress/useCompressParameters";
|
import { useCompressParameters } from "../hooks/tools/compress/useCompressParameters";
|
||||||
import { useCompressOperation } from "../hooks/tools/compress/useCompressOperation";
|
import { useCompressOperation } from "../hooks/tools/compress/useCompressOperation";
|
||||||
import { BaseToolProps } from "../types/tool";
|
import { BaseToolProps } from "../types/tool";
|
||||||
|
import { compressTips } from "../components/tips/COMPRESS_TIPS";
|
||||||
|
|
||||||
const Compress = ({ onPreviewFile, onComplete, onError }: BaseToolProps) => {
|
const Compress = ({ onPreviewFile, onComplete, onError }: BaseToolProps) => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
@ -104,6 +105,7 @@ const Compress = ({ onPreviewFile, onComplete, onError }: BaseToolProps) => {
|
|||||||
isCompleted={settingsCollapsed}
|
isCompleted={settingsCollapsed}
|
||||||
onCollapsedClick={settingsCollapsed ? handleSettingsReset : undefined}
|
onCollapsedClick={settingsCollapsed ? handleSettingsReset : undefined}
|
||||||
completedMessage={settingsCollapsed ? "Compression completed" : undefined}
|
completedMessage={settingsCollapsed ? "Compression completed" : undefined}
|
||||||
|
tooltip={compressTips}
|
||||||
>
|
>
|
||||||
<Stack gap="sm">
|
<Stack gap="sm">
|
||||||
<CompressSettings
|
<CompressSettings
|
||||||
|
@ -18,6 +18,7 @@ import AdvancedOCRSettings from "../components/tools/ocr/AdvancedOCRSettings";
|
|||||||
import { useOCRParameters } from "../hooks/tools/ocr/useOCRParameters";
|
import { useOCRParameters } from "../hooks/tools/ocr/useOCRParameters";
|
||||||
import { useOCROperation } from "../hooks/tools/ocr/useOCROperation";
|
import { useOCROperation } from "../hooks/tools/ocr/useOCROperation";
|
||||||
import { BaseToolProps } from "../types/tool";
|
import { BaseToolProps } from "../types/tool";
|
||||||
|
import { ocrTips } from "../components/tips/OCR_TIPS";
|
||||||
|
|
||||||
const OCR = ({ onPreviewFile, onComplete, onError }: BaseToolProps) => {
|
const OCR = ({ onPreviewFile, onComplete, onError }: BaseToolProps) => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
@ -126,6 +127,7 @@ const OCR = ({ onPreviewFile, onComplete, onError }: BaseToolProps) => {
|
|||||||
setExpandedStep(expandedStep === 'settings' ? null : 'settings');
|
setExpandedStep(expandedStep === 'settings' ? null : 'settings');
|
||||||
}}
|
}}
|
||||||
completedMessage={hasFiles && hasValidSettings && settingsCollapsed ? "Basic settings configured" : undefined}
|
completedMessage={hasFiles && hasValidSettings && settingsCollapsed ? "Basic settings configured" : undefined}
|
||||||
|
tooltip={ocrTips}
|
||||||
>
|
>
|
||||||
<Stack gap="sm">
|
<Stack gap="sm">
|
||||||
<OCRSettings
|
<OCRSettings
|
||||||
|
Loading…
x
Reference in New Issue
Block a user