-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #309 from AllenInstitute/feature/replace-homepage-…
…images Replace homepage images
- Loading branch information
Showing
40 changed files
with
148 additions
and
135 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Binary file added
BIN
+68.6 KB
packages/web/src/components/Home/FeatureOptions/Datasets/AddDataSource.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+121 KB
packages/web/src/components/Home/FeatureOptions/Datasets/GroupedDataSources.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+43.9 KB
packages/web/src/components/Home/FeatureOptions/Datasets/LoadSource.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+74.4 KB
packages/web/src/components/Home/FeatureOptions/Datasets/NewDataSourceColumns.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+109 KB
packages/web/src/components/Home/FeatureOptions/Datasets/SaveMetadataAs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions
37
packages/web/src/components/Home/FeatureOptions/Datasets/index.ts
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import AddDataSource from "./AddDataSource.png"; | ||
import GroupedDataSources from "./GroupedDataSources.png"; | ||
import LoadSource from "./LoadSource.png"; | ||
import NewDataSourceColumns from "./NewDataSourceColumns.png"; | ||
import SaveMetadataAs from "./SaveMetadataAs.png"; | ||
import { Feature } from "../Feature"; | ||
|
||
export default { | ||
id: 2, | ||
text: "Create or combine data sources", | ||
slides: [ | ||
{ | ||
imgSrc: LoadSource, | ||
caption: | ||
"Data can be loaded from a CSV, Parquet, or JSON file. The data source must include a column that contains the file path to the data. The data source can be loaded from a URL or uploaded from your computer.", | ||
}, | ||
{ | ||
imgSrc: AddDataSource, | ||
caption: "Additional data sources can be added the same way as the first.", | ||
}, | ||
{ | ||
imgSrc: GroupedDataSources, | ||
caption: | ||
'After you have added data, you can filter, group, and sort it. This screenshot shows an example of grouping by an automatically generated column, "Data source," which represents the source of each file.', | ||
}, | ||
{ | ||
imgSrc: SaveMetadataAs, | ||
caption: | ||
'New data sources can be generated from any number of existing data sources (filtered or whole). Right-click your file selection, select "Save metadata as", and choose your preferred file format.', | ||
}, | ||
{ | ||
imgSrc: NewDataSourceColumns, | ||
caption: | ||
"You will be prompted for the columns you would like to include in the resulting new data source.", | ||
}, | ||
], | ||
} as Feature; |
10 changes: 10 additions & 0 deletions
10
packages/web/src/components/Home/FeatureOptions/Feature.ts
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
interface Slide { | ||
caption: string; // Caption above image | ||
imgSrc: string; // Image src | ||
} | ||
|
||
export interface Feature { | ||
id: number; | ||
text: string; // Left menu | ||
slides: Slide[]; // Right carousel | ||
} |
Binary file added
BIN
+36.8 KB
packages/web/src/components/Home/FeatureOptions/FindingData/FilterColumn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+48.4 KB
packages/web/src/components/Home/FeatureOptions/FindingData/FilterValue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+79.6 KB
packages/web/src/components/Home/FeatureOptions/FindingData/Group.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions
28
packages/web/src/components/Home/FeatureOptions/FindingData/index.ts
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import FilterColumn from "./FilterColumn.png"; | ||
import FilterValue from "./FilterValue.png"; | ||
import Group from "./Group.png"; | ||
import Sort from "./Sort.png"; | ||
import { Feature } from "../Feature"; | ||
|
||
export default { | ||
id: 1, | ||
text: "Find target files quickly", | ||
slides: [ | ||
{ | ||
imgSrc: Group, | ||
caption: `Unlike traditional file systems, BioFile Finder allows you to dynamically generate your folder structure based on the metadata of your files. In this screenshot, the files are organized (grouped) by the "Structure" and "Plate Barcode" columns found in the selected data source.`, | ||
}, | ||
{ | ||
imgSrc: FilterColumn, | ||
caption: "To filter, first select a column name...", | ||
}, | ||
{ | ||
imgSrc: FilterValue, | ||
caption: `...then select the desired values.`, | ||
}, | ||
{ | ||
imgSrc: Sort, | ||
caption: `Sort by clicking on the column header or the "Sort" button.`, | ||
}, | ||
], | ||
} as Feature; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions
20
packages/web/src/components/Home/FeatureOptions/OmeZarr/index.ts
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import Thumbnail from "./Thumbnail.png"; | ||
import Zarr from "./Zarr.png"; | ||
import { Feature } from "../Feature"; | ||
|
||
export default { | ||
id: 5, | ||
text: "View OME.Zarr or pre-generated thumbnail previews of files instantly", | ||
slides: [ | ||
{ | ||
imgSrc: Zarr, | ||
caption: | ||
"OME.Zarr files are a format for storing multi-dimensional arrays in a chunked, compressed, and efficient manner. BioFile Finder can read these files and preview them as thumbnails automatically.", | ||
}, | ||
{ | ||
imgSrc: Thumbnail, | ||
caption: | ||
'For other file formats, BioFile Finder can render pre-generated thumbnails for quick previewing. To do so, in your CSV, Parquet, or JSON file, include a column that contains the file path to the thumbnail image named "Thumbnail"', | ||
}, | ||
], | ||
} as Feature; |
Binary file added
BIN
+45.3 KB
packages/web/src/components/Home/FeatureOptions/Share/CodeSnippet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions
26
packages/web/src/components/Home/FeatureOptions/Share/index.ts
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import CodeSnippet from "./CodeSnippet.png"; | ||
import Download from "./Download.png"; | ||
import URL from "./URL.png"; | ||
import { Feature } from "../Feature"; | ||
|
||
export default { | ||
id: 4, | ||
text: "Share via URL, code snippet, or download", | ||
slides: [ | ||
{ | ||
imgSrc: URL, | ||
caption: | ||
"Your exact file selection (filters, groups, sorts, open folders) can be shared via URL. Anyone with the URL can see the same view as you, as long as the data source is accessible to them. Local files, for example, must be re-selected by the user.", | ||
}, | ||
{ | ||
imgSrc: CodeSnippet, | ||
caption: | ||
"A code snippet can be generated that recreates your exact view (filters, groups, sorts) programmatically. This allows you to export or share your view to a Jupyter notebook.", | ||
}, | ||
{ | ||
imgSrc: Download, | ||
caption: | ||
'You can also download files directly from BioFile Finder. Select the file(s) you want to download, right-click to open the context menu, and select "Download."', | ||
}, | ||
], | ||
} as Feature; |
Binary file added
BIN
+71.5 KB
packages/web/src/components/Home/FeatureOptions/Viewers/ContextMenu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions
20
packages/web/src/components/Home/FeatureOptions/Viewers/index.ts
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import ContextMenu from "./ContextMenu.png"; | ||
import WebViewer from "./WebViewer.png"; | ||
import { Feature } from "../Feature"; | ||
|
||
export default { | ||
id: 3, | ||
text: "Directly open images in a web-based viewer", | ||
slides: [ | ||
{ | ||
imgSrc: ContextMenu, | ||
caption: | ||
'Right-click your file selection to open a context menu of external applications that can open the files. This example highlights the "3D Web Viewer," a free open source visualization tool also developed by AICS.', | ||
}, | ||
{ | ||
imgSrc: WebViewer, | ||
caption: | ||
"This is that same file we were looking at in the context menu, now opened in the 3D Web Viewer instantly from BioFile Finder.", | ||
}, | ||
], | ||
} as Feature; |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import OmeZarr from "./OmeZarr"; | ||
import Share from "./Share"; | ||
import Viewers from "./Viewers"; | ||
import Datasets from "./Datasets"; | ||
import FindingData from "./FindingData"; | ||
|
||
export default [FindingData, Datasets, Viewers, Share, OmeZarr]; |
Binary file not shown.
Binary file removed
BIN
-330 KB
packages/web/src/components/Home/assets/Datasets/GroupedDataSources.png
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-312 KB
packages/web/src/components/Home/assets/Datasets/NewDataSourceColumns.png
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-239 KB
packages/web/src/components/Home/assets/FindingData/FilterColumn.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.