Welcome to mirror list, hosted at ThFree Co, Russian Federation.

code.vue « cells « notebook « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc1bab625533f849c91823f64fa52fb4776c142d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<script>
import CodeOutput from './code/index.vue';
import OutputCell from './output/index.vue';

export default {
  name: 'CodeCell',
  components: {
    CodeOutput,
    OutputCell,
  },
  props: {
    cell: {
      type: Object,
      required: true,
    },
  },
  computed: {
    rawInputCode() {
      if (this.cell.source && Array.isArray(this.cell.source)) {
        return this.cell.source.join('');
      }

      return this.cell.source || '';
    },
    hasOutput() {
      return this.cell.outputs.length;
    },
    outputs() {
      return this.cell.outputs;
    },
  },
};
</script>

<template>
  <div class="cell">
    <code-output :raw-code="rawInputCode" :count="cell.execution_count" type="input" />
    <output-cell
      v-if="hasOutput"
      :count="cell.execution_count"
      :outputs="outputs"
      :metadata="cell.metadata"
    />
  </div>
</template>

<style scoped>
.cell {
  flex-direction: column;
}
</style>