* refactor: replace new Vue() with custom event bus (no-changelog) * fix: export types from design system main * fix: update component types * fix: update form inputs event bus
134 lines
3.2 KiB
Vue
134 lines
3.2 KiB
Vue
<template>
|
|
<Modal
|
|
:name="CREDENTIAL_SELECT_MODAL_KEY"
|
|
:eventBus="modalBus"
|
|
width="50%"
|
|
:center="true"
|
|
:loading="loading"
|
|
maxWidth="460px"
|
|
minHeight="250px"
|
|
>
|
|
<template #header>
|
|
<h2 :class="$style.title">
|
|
{{ $locale.baseText('credentialSelectModal.addNewCredential') }}
|
|
</h2>
|
|
</template>
|
|
<template #content>
|
|
<div>
|
|
<div :class="$style.subtitle">
|
|
{{ $locale.baseText('credentialSelectModal.selectAnAppOrServiceToConnectTo') }}
|
|
</div>
|
|
<n8n-select
|
|
filterable
|
|
defaultFirstOption
|
|
:placeholder="$locale.baseText('credentialSelectModal.searchForApp')"
|
|
size="xlarge"
|
|
ref="select"
|
|
:value="selected"
|
|
@change="onSelect"
|
|
data-test-id="new-credential-type-select"
|
|
>
|
|
<template #prefix>
|
|
<font-awesome-icon icon="search" />
|
|
</template>
|
|
<n8n-option
|
|
v-for="credential in credentialsStore.allCredentialTypes"
|
|
:value="credential.name"
|
|
:key="credential.name"
|
|
:label="credential.displayName"
|
|
filterable
|
|
data-test-id="new-credential-type-select-option"
|
|
/>
|
|
</n8n-select>
|
|
</div>
|
|
</template>
|
|
<template #footer>
|
|
<div :class="$style.footer">
|
|
<n8n-button
|
|
:label="$locale.baseText('credentialSelectModal.continue')"
|
|
float="right"
|
|
size="large"
|
|
:disabled="!selected"
|
|
@click="openCredentialType"
|
|
data-test-id="new-credential-type-button"
|
|
/>
|
|
</div>
|
|
</template>
|
|
</Modal>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import mixins from 'vue-typed-mixins';
|
|
import Modal from './Modal.vue';
|
|
import { CREDENTIAL_SELECT_MODAL_KEY } from '../constants';
|
|
import { externalHooks } from '@/mixins/externalHooks';
|
|
import { mapStores } from 'pinia';
|
|
import { useUIStore } from '@/stores/ui';
|
|
import { useWorkflowsStore } from '@/stores/workflows';
|
|
import { useCredentialsStore } from '@/stores/credentials';
|
|
import { createEventBus } from '@/event-bus';
|
|
|
|
export default mixins(externalHooks).extend({
|
|
name: 'CredentialsSelectModal',
|
|
components: {
|
|
Modal,
|
|
},
|
|
async mounted() {
|
|
try {
|
|
await this.credentialsStore.fetchCredentialTypes(false);
|
|
} catch (e) {}
|
|
this.loading = false;
|
|
|
|
setTimeout(() => {
|
|
const element = this.$refs.select as HTMLSelectElement;
|
|
if (element) {
|
|
element.focus();
|
|
}
|
|
}, 0);
|
|
},
|
|
data() {
|
|
return {
|
|
modalBus: createEventBus(),
|
|
selected: '',
|
|
loading: true,
|
|
CREDENTIAL_SELECT_MODAL_KEY,
|
|
};
|
|
},
|
|
computed: {
|
|
...mapStores(useCredentialsStore, useUIStore, useWorkflowsStore),
|
|
},
|
|
methods: {
|
|
onSelect(type: string) {
|
|
this.selected = type;
|
|
},
|
|
openCredentialType() {
|
|
this.modalBus.emit('close');
|
|
this.uiStore.openNewCredential(this.selected);
|
|
|
|
const telemetryPayload = {
|
|
credential_type: this.selected,
|
|
source: 'primary_menu',
|
|
new_credential: true,
|
|
workflow_id: this.workflowsStore.workflowId,
|
|
};
|
|
|
|
this.$telemetry.track('User opened Credential modal', telemetryPayload);
|
|
this.$externalHooks().run('credentialsSelectModal.openCredentialType', telemetryPayload);
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style module lang="scss">
|
|
.title {
|
|
font-size: var(--font-size-xl);
|
|
line-height: var(--font-line-height-regular);
|
|
}
|
|
|
|
.subtitle {
|
|
margin-bottom: var(--spacing-s);
|
|
font-size: var(--font-size-m);
|
|
line-height: var(--font-line-height-xloose);
|
|
}
|
|
</style>
|