Skip to content
代码片段 群组 项目
未验证 提交 f1ae7f5f 编辑于 作者: Lorenz van Herwaarden's avatar Lorenz van Herwaarden 提交者: GitLab
浏览文件

Merge branch 'update-kubernates-empty-states' into 'master'

No related branches found
No related tags found
无相关合并请求
......@@ -2,6 +2,7 @@
import emptyEnvironmentsSvgPath from '@gitlab/svgs/dist/illustrations/empty-state/empty-environment-md.svg';
import { GlButton, GlEmptyState, GlLink, GlSprintf } from '@gitlab/ui';
import { s__ } from '~/locale';
import EmptyResult from '~/vue_shared/components/empty_result.vue';
export default {
components: {
......@@ -9,6 +10,7 @@ export default {
GlEmptyState,
GlLink,
GlSprintf,
EmptyResult,
},
inject: ['newEnvironmentPath'],
props: {
......@@ -31,9 +33,7 @@ export default {
},
},
i18n: {
searchingTitle: s__('Environments|No results found'),
title: s__('Environments|Get started with environments'),
searchingContent: s__('Environments|Edit your search and try again'),
content: s__(
'Environments|Environments are places where code gets deployed, such as staging or production. You can create an environment in the UI or in your .gitlab-ci.yml file. You can also enable review apps, which assist with providing an environment to showcase product changes. %{linkStart}Learn more%{linkEnd} about environments.',
),
......@@ -44,13 +44,15 @@ export default {
};
</script>
<template>
<empty-result v-if="hasTerm" type="search" />
<gl-empty-state
v-else
class="gl-mx-auto gl-max-w-limited"
:title="title"
:title="$options.i18n.title"
:svg-path="$options.emptyEnvironmentsSvgPath"
>
<template #description>
<gl-sprintf :message="content">
<gl-sprintf :message="$options.i18n.content">
<template #link="{ content: contentToDisplay }">
<gl-link :href="helpPath">{{ contentToDisplay }}</gl-link>
</template>
......
<script>
import { GlLoadingIcon, GlAlert, GlEmptyState, GlSprintf, GlIcon } from '@gitlab/ui';
import EmptyStateSvg from '@gitlab/svgs/dist/illustrations/Dependency-list-empty-state.svg?url';
import EmptyStateSvg from '@gitlab/svgs/dist/illustrations/status/status-nothing-md.svg';
import k8sLogsQuery from '~/environments/graphql/queries/k8s_logs.query.graphql';
import environmentClusterAgentQuery from '~/environments/graphql/queries/environment_cluster_agent.query.graphql';
import { createK8sAccessConfiguration } from '~/environments/helpers/k8s_integration_helper';
......
......@@ -8,7 +8,7 @@ import {
GlDisclosureDropdownItem,
GlModalDirective,
} from '@gitlab/ui';
import CLUSTER_EMPTY_SVG from '@gitlab/svgs/dist/illustrations/empty-state/empty-state-clusters.svg?url';
import CLUSTER_EMPTY_SVG from '@gitlab/svgs/dist/illustrations/empty-state/empty-environment-md.svg';
import { isEmpty } from 'lodash';
import { s__, __ } from '~/locale';
import { createAlert } from '~/alert';
......
<script>
import { GlEmptyState, GlLink, GlSprintf } from '@gitlab/ui';
import EMPTY_SVG from '@gitlab/svgs/dist/illustrations/status/status-nothing-md.svg';
import { translations, environmentsLearnMorePath, environmentsHelpPagePath } from './constants';
export default {
......@@ -11,10 +12,12 @@ export default {
translations,
actionButtonUrl: environmentsHelpPagePath,
learnMoreHelpPath: environmentsLearnMorePath,
EMPTY_SVG,
};
</script>
<template>
<gl-empty-state
:svg-path="$options.EMPTY_SVG"
:title="$options.translations.emptyStateTitle"
:primary-button-text="$options.translations.emptyStatePrimaryButton"
:primary-button-link="$options.actionButtonUrl"
......
......@@ -14,7 +14,7 @@ def js_clusters_list_data(clusterable)
default: { path: image_path('illustrations/logos/kubernetes.svg'), text: _('Kubernetes Cluster') },
gcp: { path: image_path('illustrations/logos/google_gke.svg'), text: s_('ClusterIntegration|Google GKE') }
},
clusters_empty_state_image: image_path('illustrations/empty-state/empty-state-clusters.svg'),
clusters_empty_state_image: image_path('illustrations/empty-state/empty-cloud-md.svg'),
empty_state_image: image_path('illustrations/empty-state/empty-environment-md.svg'),
empty_state_help_text: clusterable.empty_state_help_text,
add_cluster_path: clusterable.connect_path,
......
......@@ -21419,9 +21419,6 @@ msgstr ""
msgid "Environments|Edit environment"
msgstr ""
 
msgid "Environments|Edit your search and try again"
msgstr ""
msgid "Environments|Enable Review Apps"
msgstr ""
 
......@@ -21473,9 +21470,6 @@ msgstr ""
msgid "Environments|No deployments yet"
msgstr ""
 
msgid "Environments|No results found"
msgstr ""
msgid "Environments|No selection shows all authorized resources in the cluster. %{linkStart}Learn more.%{linkEnd}"
msgstr ""
 
import { GlEmptyState, GlLink, GlSprintf } from '@gitlab/ui';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import EmptyResult from '~/vue_shared/components/empty_result.vue';
import EmptyState from '~/environments/components/empty_state.vue';
import { ENVIRONMENTS_SCOPE } from '~/environments/constants';
......@@ -58,9 +59,8 @@ describe('~/environments/components/empty_state.vue', () => {
wrapper = createWrapper({ propsData: { hasTerm: true } });
});
it('shows text about searching', () => {
expect(findEmptyState().props('title')).toBe('No results found');
expect(findEmptyState().text()).toBe('Edit your search and try again');
it('should show EmptyResult component', () => {
expect(wrapper.findComponent(EmptyResult).exists()).toBe(true);
});
it('hides the documentation link', () => {
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册