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

empty_state.vue « components « serverless « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d1cea519c437f3cbd62c339ceeed8d2121598fb (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
<script>
import { GlEmptyState, GlLink, GlSprintf } from '@gitlab/ui';
import { mapState } from 'vuex';
import { s__ } from '~/locale';
import { DEPRECATION_POST_LINK } from '../constants';

export default {
  components: {
    GlEmptyState,
    GlLink,
    GlSprintf,
  },
  i18n: {
    title: s__('Serverless|Getting started with serverless'),
    description: s__(
      'Serverless|Serverless was %{postLinkStart}deprecated%{postLinkEnd}. But if you opt to use it, you must install Knative in your Kubernetes cluster first. %{linkStart}Learn more.%{linkEnd}',
    ),
  },
  deprecationPostLink: DEPRECATION_POST_LINK,
  computed: {
    ...mapState(['emptyImagePath', 'helpPath']),
  },
};
</script>

<template>
  <gl-empty-state :svg-path="emptyImagePath" :title="$options.i18n.title">
    <template #description>
      <gl-sprintf :message="$options.i18n.description">
        <template #postLink="{ content }">
          <gl-link :href="$options.deprecationPostLink" target="_blank">{{ content }}</gl-link>
        </template>
        <template #link="{ content }">
          <gl-link :href="helpPath">{{ content }}</gl-link>
        </template>
      </gl-sprintf>
    </template>
  </gl-empty-state>
</template>