debian-mirror-gitlab/app/assets/javascripts/notebook/cells/code.vue

62 lines
1 KiB
Vue
Raw Normal View History

2017-08-17 22:00:37 +05:30
<script>
2019-03-02 22:35:43 +05:30
import CodeOutput from './code/index.vue';
2017-08-17 22:00:37 +05:30
import OutputCell from './output/index.vue';
export default {
2019-03-02 22:35:43 +05:30
name: 'CodeCell',
2017-08-17 22:00:37 +05:30
components: {
2019-03-02 22:35:43 +05:30
CodeOutput,
OutputCell,
2017-08-17 22:00:37 +05:30
},
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;
},
2019-03-02 22:35:43 +05:30
outputs() {
return this.cell.outputs;
2017-08-17 22:00:37 +05:30
},
},
};
</script>
2018-03-17 18:26:18 +05:30
<template>
<div class="cell">
2019-03-02 22:35:43 +05:30
<code-output
2018-03-17 18:26:18 +05:30
:raw-code="rawInputCode"
:count="cell.execution_count"
2018-11-08 19:23:39 +05:30
:code-css-class="codeCssClass"
2019-02-15 15:39:39 +05:30
type="input"
/>
2018-03-17 18:26:18 +05:30
<output-cell
v-if="hasOutput"
:count="cell.execution_count"
2019-03-02 22:35:43 +05:30
:outputs="outputs"
2019-02-15 15:39:39 +05:30
:code-css-class="codeCssClass"
/>
2018-03-17 18:26:18 +05:30
</div>
</template>
2017-08-17 22:00:37 +05:30
<style scoped>
.cell {
flex-direction: column;
}
</style>