-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dunitz/166-seamless-cache
- Loading branch information
Showing
21 changed files
with
1,740 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
bin | ||
client | ||
dist | ||
docs | ||
server | ||
/server/eb/customize |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,10 @@ | ||
import { SKELETON } from "@blueprintjs/core/lib/esnext/common/classes"; | ||
import React from "react"; | ||
import { Button } from "@blueprintjs/core"; | ||
|
||
import * as globals from "../../globals"; | ||
|
||
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types, @typescript-eslint/no-explicit-any -- - FIXME: disabled temporarily on migrate to TS. | ||
const StillLoading = ({ zebra, displayName }: any) => ( | ||
/* | ||
Render a loading indicator for the field. | ||
*/ | ||
<div | ||
data-testclass="gene-loading-spinner" | ||
style={{ | ||
padding: globals.leftSidebarSectionPadding, | ||
backgroundColor: zebra ? globals.lightestGrey : "white", | ||
}} | ||
> | ||
<div | ||
style={{ | ||
display: "flex", | ||
justifyContent: "space-between", | ||
justifyItems: "center", | ||
alignItems: "center", | ||
}} | ||
> | ||
<div style={{ minWidth: 30 }} /> | ||
<div style={{ display: "flex", alignSelf: "center" }}> | ||
<span style={{ fontStyle: "italic" }}>{displayName}</span> | ||
</div> | ||
<div | ||
style={{ | ||
display: "flex", | ||
justifyContent: "flex-end", | ||
}} | ||
> | ||
<Button minimal loading intent="primary" /> | ||
</div> | ||
</div> | ||
</div> | ||
/** | ||
* Render a loading indicator for the field. | ||
*/ | ||
const StillLoading = (): JSX.Element => ( | ||
<div style={{ height: 211 }} className={SKELETON} /> | ||
); | ||
export default StillLoading; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.