gitlab-org--gitlab-foss/app/assets/javascripts/jira_connect/subscriptions/components/compatibility_alert.vue

64 lines
1.6 KiB
Vue

<script>
import { GlAlert, GlSprintf, GlLink } from '@gitlab/ui';
import { s__ } from '~/locale';
import { helpPagePath } from '~/helpers/help_page_helper';
import LocalStorageSync from '~/vue_shared/components/local_storage_sync.vue';
const COMPATIBILITY_ALERT_STATE_KEY = 'compatibility_alert_dismissed';
export default {
name: 'CompatibilityAlert',
components: {
GlAlert,
GlSprintf,
GlLink,
LocalStorageSync,
},
data() {
return {
alertDismissed: false,
};
},
computed: {
shouldShowAlert() {
return !this.alertDismissed;
},
},
methods: {
dismissAlert() {
this.alertDismissed = true;
},
},
i18n: {
title: s__('Integrations|Known limitations'),
body: s__(
'Integrations|This integration only works with GitLab.com. Adding a namespace only works in browsers that allow cross-site cookies. %{linkStart}Learn more%{linkEnd}.',
),
},
DOCS_LINK_URL: helpPagePath('integration/jira/connect-app'),
COMPATIBILITY_ALERT_STATE_KEY,
};
</script>
<template>
<local-storage-sync
v-model="alertDismissed"
:storage-key="$options.COMPATIBILITY_ALERT_STATE_KEY"
>
<gl-alert
v-if="shouldShowAlert"
class="gl-mb-7"
variant="info"
:title="$options.i18n.title"
@dismiss="dismissAlert"
>
<gl-sprintf :message="$options.i18n.body">
<template #link="{ content }">
<gl-link :href="$options.DOCS_LINK_URL" target="_blank" rel="noopener noreferrer">{{
content
}}</gl-link>
</template>
</gl-sprintf>
</gl-alert>
</local-storage-sync>
</template>