Skip to content

Commit

Permalink
Removed deprecated project component. Resolves #1007. (#1034)
Browse files Browse the repository at this point in the history
  • Loading branch information
MillenniumFalconMechanic authored and NoopDog committed Dec 5, 2019
1 parent 611ebda commit ca715ab
Show file tree
Hide file tree
Showing 18 changed files with 80 additions and 2,494 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ export const selectIntegrationsByProjectId =
* Returns the integrations for the specified project ID.
*/
export const selectProjectIntegrations =
createSelector(selectIntegrations, (state, props) => state.integrationsByProjectId.get(props.projectId) || []);
createSelector(selectIntegrations, (state, props) => state.integrationsByProjectId.get(props.projectId));
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,3 @@
color: $hca-gray-dark;
}
}

/* Project detail page */
/* HCAProjectComponent */
:host-context(.explore-project) {

.comma {
color: black;
}
}
2 changes: 0 additions & 2 deletions spa/src/app/files/files.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ import { MatrixPartialQueryMatchWarningComponent } from "./hca-get-data/matrix-p
import { MatrixUrlRequestFormComponent } from "./hca-get-data/matrix-url-request-form/matrix-url-request-form.component";
import { MatrixUrlRequestCompletedComponent } from "./hca-get-data/matrix-url-request-completed/matrix-url-request-completed.component";
import { HCAEllipsisTextComponent } from "./hca-content-ellipsis/hca-ellipsis-text.component";
import { HCAProjectComponent } from "./hca-project/hca-project.component";
import { HCATableColumnHeaderComponent } from "./hca-table-column-header/hca-table-column-header.component";
import { HCATableColumnHeaderCountComponent } from "./hca-table-column-header-count/hca-table-column-header-count.component";
import { HCATableColumnHeaderDownloadComponent } from "./hca-table-column-header-download/hca-table-column-header-download.component";
Expand Down Expand Up @@ -168,7 +167,6 @@ import { TableScroll } from "./table-scroll/table-scroll.component";
HCAGetManifestComponent,
HCAGetMatrixComponent,
HCAGetMatrixSpeciesSelectionComponent,
HCAProjectComponent,
HCASearchComponent,
HCATableCellComponent,
HCATableColumnHeaderComponent,
Expand Down
7 changes: 1 addition & 6 deletions spa/src/app/files/files.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { Route } from "@angular/router";
// App dependencies
import { FilesComponent } from "./files.component";
import { HCAGetDataComponent } from "./hca-get-data/hca-get-data.component";
import { HCAProjectComponent } from "./hca-project/hca-project.component";
import { ProjectDataCitationComponent } from "./project-data-citation/project-data-citation.component";
import { ProjectDownloadManifestModalContainerComponent } from "./project-download-manifest-modal-container/project-download-manifest-modal-container.component";
import { ProjectDownloadMatrixModalContainerComponent } from "./project-download-matrix-modal-container/project-download-matrix-modal-container.component";
Expand Down Expand Up @@ -84,11 +83,7 @@ export const routes: Route[] = [
{
path: ":id/m/expression-matrices",
component: ProjectDownloadMatrixModalContainerComponent
},
{ // TODO remove once left nav functionality is complete
path: ":id/deprecated",
component: HCAProjectComponent
},
}
]
}
];
380 changes: 0 additions & 380 deletions spa/src/app/files/hca-project/hca-project.component.html

This file was deleted.

Loading

0 comments on commit ca715ab

Please sign in to comment.