1. Use metadata to instead of actual expired time 2. Delete disabled if the certificate was used for a listener Change-Id: I8a16c4c1cc6f104c85835906405aba7ae9a3bf02
59 lines
1.5 KiB
JavaScript
59 lines
1.5 KiB
JavaScript
// Copyright 2021 99cloud
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
import { inject, observer } from 'mobx-react';
|
|
import Base from 'containers/TabDetail';
|
|
import { ContainersStore } from 'stores/barbican/containers';
|
|
import { getCertificateColumns } from 'resources/octavia/lb';
|
|
import BaseDetail from './BaseDetail';
|
|
import actionConfigs from '../../actions';
|
|
|
|
export class Detail extends Base {
|
|
init() {
|
|
this.store = new ContainersStore();
|
|
}
|
|
|
|
get policy() {
|
|
return 'barbican:container:get';
|
|
}
|
|
|
|
get name() {
|
|
return 'Certificate Detail';
|
|
}
|
|
|
|
get listUrl() {
|
|
return this.getRoutePath('certificate', null, { tab: 'SERVER' });
|
|
}
|
|
|
|
get actionConfigs() {
|
|
return actionConfigs.actionConfigsContainer;
|
|
}
|
|
|
|
get detailInfos() {
|
|
return getCertificateColumns(this);
|
|
}
|
|
|
|
get tabs() {
|
|
return [
|
|
{
|
|
title: t('BaseDetail'),
|
|
key: 'detail_info',
|
|
component: BaseDetail,
|
|
},
|
|
];
|
|
}
|
|
}
|
|
|
|
export default inject('rootStore')(observer(Detail));
|