scinote-web/app/javascript/vue/protocol/storage_usage.vue
2022-05-26 15:01:52 +02:00

35 lines
998 B
Vue

<template>
<div class="storage-usage">
<div class="progress-container">
<div class="progress-bar" :style="`width:${storagePrecentage}%`"></div>
</div>
<span v-if="this.step.attributes.storage_limit.total > 0">
{{ i18n.t('protocols.steps.space_used_label', {
used: this.step.attributes.storage_limit.used_human,
limit: this.step.attributes.storage_limit.total_human
}) }}
</span>
<span v-else>
{{ i18n.t('protocols.steps.space_used_label_unlimited', {used: this.step.attributes.storage_limit.used_human}) }}
</span>
</div>
</template>
<script>
export default {
name: 'StorageUsage',
props: {
step: {
type: Object,
required: true,
},
},
computed: {
storagePrecentage() {
let used = this.step.attributes.storage_limit.used;
let total = this.step.attributes.storage_limit.total;
return ((used / total) * 100);
}
}
}
</script>