docker-registry-ui/src/components/tag-list/tag-history-button.riot

51 lines
1.6 KiB
Plaintext

<!--
Copyright (C) 2016-2023 Jones Magloire @Joxit
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<tag-history-button>
<material-button
title="{ buttonTittle() }"
text-color="var(--neutral-text)"
color="inherit"
waves-color="var(--hover-background)"
waves-center="true"
href="{ routeToHistory() }"
disabled="{ props.image.ociImage }"
icon
>
<i class="material-icons">history</i>
</material-button>
<script>
import router from '../../scripts/router';
export default {
onMounted(props) {
props.image.one('oci-image', () => {
this.update();
});
},
buttonTittle() {
return !this.props.image.ociImage
? 'This will show the history of given tag'
: 'History is unavailable on OCI index/Buildkit export cache';
},
routeToHistory() {
if (!this.props.image.ociImage) {
return router.history(this.props.image.name, this.props.image.tag);
}
},
};
</script>
</tag-history-button>