// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; import { CollectionIcon } from '~/components/icon/icon'; import { CollectionResource } from '~/models/collection'; import { DetailsData } from "./details-data"; import { CollectionDetailsAttributes } from '~/views/collection-panel/collection-panel'; export class CollectionDetails extends DetailsData { getIcon(className?: string) { return ; } getTabLabels() { return ['Details', 'Versions']; } getDetails(tabNumber: number) { switch (tabNumber) { case 0: return this.getCollectionInfo(); case 1: return this.getVersionBrowser(); default: return
; } } private getCollectionInfo() { return ; } private getVersionBrowser() { return
; } }