gitlab-org--gitlab-foss/app/assets/javascripts/notebook/cells/code.vue

61 lines
1.0 KiB
Vue
Raw Normal View History

<script>
import CodeCell from './code/index.vue';
import OutputCell from './output/index.vue';
export default {
components: {
'code-cell': CodeCell,
'output-cell': OutputCell,
},
props: {
cell: {
type: Object,
required: true,
},
codeCssClass: {
type: String,
required: false,
default: '',
},
},
computed: {
rawInputCode() {
if (this.cell.source) {
return this.cell.source.join('');
}
return '';
},
hasOutput() {
return this.cell.outputs.length;
},
output() {
return this.cell.outputs[0];
},
},
};
</script>
<template>
<div class="cell">
<code-cell
:raw-code="rawInputCode"
:count="cell.execution_count"
2018-06-11 09:49:47 +00:00
:code-css-class="codeCssClass"
2018-11-16 20:07:38 +00:00
type="input"
/>
<output-cell
v-if="hasOutput"
:count="cell.execution_count"
:output="output"
2018-11-16 20:07:38 +00:00
:code-css-class="codeCssClass"
/>
</div>
</template>
<style scoped>
.cell {
flex-direction: column;
}
</style>