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

Client work for AI Expression Summary on gene page #1330

Open
wants to merge 33 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
945caa8
WIP wired up to reporter service call
bobular Feb 20, 2025
d5506fa
Merge remote-tracking branch 'origin/main' into ai-expression
bobular Feb 23, 2025
8979816
WIP
bobular Feb 23, 2025
01a4ec9
bare bones UI is working, yay
bobular Feb 24, 2025
3e57501
unrelated import path fix in @veupathdb/components
bobular Feb 24, 2025
a40901b
basic table done - needs expandable child rows
bobular Feb 24, 2025
99bcada
loading flow improvements, number of experiments column
bobular Feb 25, 2025
4dfb84f
div height consistency when clicking button
bobular Feb 25, 2025
98c1e1e
expandable rows and some tweaks
bobular Feb 25, 2025
26e3cd8
SCSS styling the structured summary
bobular Feb 25, 2025
64438fa
equal margins in expandable rows
bobular Feb 25, 2025
3ac1f94
Merge remote-tracking branch 'origin/main' into ai-expression
bobular Feb 25, 2025
48b1016
remove failed debugging
bobular Feb 25, 2025
c316147
refactor expression graph opener into util function
bobular Feb 25, 2025
6e9d617
wired in scroll-to and redux
bobular Feb 25, 2025
7899216
use numeric rowIds
bobular Feb 25, 2025
eed0427
add clickable rows to toggle child row expansion
bobular Feb 25, 2025
59ed257
US spelling
bobular Feb 27, 2025
5165e0d
rename sections to topics
bobular Feb 28, 2025
27c9013
can take up to three minutes
bobular Feb 28, 2025
8a8065d
fix mouse pointer for experiment links
bobular Feb 28, 2025
f8c10f2
add gate for less than 5 datasets
bobular Feb 28, 2025
0713886
improve scroll-to behaviour
bobular Feb 28, 2025
d6fae35
Merge remote-tracking branch 'origin/main' into ai-expression
bobular Mar 1, 2025
9ae9932
Merge remote-tracking branch 'origin/ai-expression' into ai-expressio…
bobular Mar 1, 2025
8a9cf8a
pre-open transcript expression table when ai results render
bobular Mar 2, 2025
eb7adf1
Merge pull request #1338 from VEuPathDB/ai-expression-topics
bobular Mar 2, 2025
fc37dbb
Merge remote-tracking branch 'origin/main' into ai-expression
bobular Mar 6, 2025
032f4f1
first stab at this
bobular Mar 6, 2025
8bf5bb1
handle initial loading properly
bobular Mar 6, 2025
ad4c07e
fixed up Loading spinner behaviour
bobular Mar 7, 2025
ccfb767
Merge pull request #1340 from VEuPathDB/progress-bar
bobular Mar 7, 2025
b3a5764
final progress styling tweaks
bobular Mar 8, 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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
HorizontalDendrogramProps,
} from '../../components/tidytree/HorizontalDendrogram';
import Mesa from '@veupathdb/coreui/lib/components/Mesa';
import { MesaStateProps } from '../../../../coreui/lib/components/Mesa/types';
import { MesaStateProps } from '@veupathdb/coreui/lib/components/Mesa/types';
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was just a tiny fix while in the neighbourhood. Has no impact on the AI stuff!


import './TreeTable.scss';

Expand Down
2 changes: 1 addition & 1 deletion packages/libs/coreui/src/components/Mesa/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ interface MesaAction<Row, Key = DefaultColumnKey<Row>> {

type DefaultColumnValue<Row, Key> = Key extends keyof Row ? Row[Key] : unknown;

interface CellProps<
export interface CellProps<
Row,
Key = DefaultColumnKey<Row>,
Value = DefaultColumnValue<Row, Key>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
div.ai-summary {
p {
ul {
margin-top: 0.5em;
margin-bottom: 1em;
}
}
}

a.javascript-link {
cursor: grab;
}

.AiExpressionResult-Loading {
text-align: center;
padding: 0;
margin-top: 3em;
height: unset;
max-width: 75px;
}
Loading
Loading