debian-mirror-gitlab/app/assets/javascripts/vue_shared/components/code_block.vue

32 lines
628 B
Vue
Raw Normal View History

2018-11-18 11:00:15 +05:30
<script>
export default {
name: 'CodeBlock',
props: {
code: {
type: String,
required: true,
},
2020-05-24 23:13:21 +05:30
maxHeight: {
type: String,
required: false,
default: 'initial',
},
},
computed: {
styleObject() {
const { maxHeight } = this;
const isScrollable = maxHeight !== 'initial';
const scrollableStyles = {
maxHeight,
overflowY: 'auto',
};
return isScrollable ? scrollableStyles : null;
},
2018-11-18 11:00:15 +05:30
},
};
</script>
<template>
2020-05-24 23:13:21 +05:30
<pre class="code-block rounded" :style="styleObject"><code class="d-block">{{ code }}</code></pre>
2018-11-18 11:00:15 +05:30
</template>