Skip to content

feat: querybuilder component that can be used to create valid query strings for the ena api #310 #420

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

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions app/apis/catalog/brc-analytics-catalog/common/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ export interface EntitiesResponsePagination {
total: number;
}

export interface RunReadsFields {
description: string;
name: string;
type: string;
}

export interface WorkflowCategory {
category: string;
description: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { GridPaperSection } from "@databiosphere/findable-ui/lib/components/common/Section/section.styles";

import styled from "@emotion/styled";

export const StyledSection = styled(GridPaperSection)`
flex-direction: column;
`;

export const QueryInputContent = styled.input`
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
box-sizing: border-box;
color: #637381;
margin: 10px 0;
padding: 10px;
width: 100%;
`;
Loading