File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed
explorer/site-config/anvil/dev Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { CATALOG_DEFAULT } from "../../../app/apis/azul/anvil/common/constants";
55import { authenticationConfig } from "./authentication/authentication" ;
66import { ANVIL_CATEGORY_KEY , ANVIL_CATEGORY_LABEL } from "./category" ;
77import { socials } from "./constants" ;
8+ import { exportConfig } from "./export/export" ;
89import { activitiesEntityConfig } from "./index/activitiesEntityConfig" ;
910import { biosamplesEntityConfig } from "./index/biosamplesEntityConfig" ;
1011import { datasetsEntityConfig } from "./index/datasetsEntityConfig" ;
@@ -92,6 +93,8 @@ const config: SiteConfig = {
9293 filesEntityConfig ,
9394 ] ,
9495 explorerTitle : "Anvil Data Explorer" ,
96+ export : exportConfig ,
97+ exportToTerraUrl : "https://app.terra.bio" ,
9598 layout : {
9699 footer : {
97100 logos : [
Original file line number Diff line number Diff line change 1+ import {
2+ ComponentConfig ,
3+ ExportConfig ,
4+ } from "@clevercanary/data-explorer-ui/lib/config/entities" ;
5+ import * as C from "app/components" ;
6+
7+ export const exportConfig : ExportConfig = {
8+ exportMethods : [ ] ,
9+ staticLoad : true ,
10+ tabs : [
11+ {
12+ label : "Choose Export Method" ,
13+ mainColumn : [ ] ,
14+ route : "/export" ,
15+ sideColumn : [ ] ,
16+ } ,
17+ ] ,
18+ top : [
19+ {
20+ component : C . BackPageHero ,
21+ props : {
22+ title : "Choose Export Method" ,
23+ } ,
24+ } as ComponentConfig < typeof C . BackPageHero > ,
25+ ] ,
26+ } ;
You can’t perform that action at this time.
0 commit comments