mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -08:00
⚡ Improve OAuth connect flow
This commit is contained in:
parent
95097a8bd7
commit
00935032e2
|
@ -12,13 +12,41 @@
|
||||||
<el-input size="small" type="text" v-model="name"></el-input>
|
<el-input size="small" type="text" v-model="name"></el-input>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
<br />
|
||||||
|
<div class="headline" v-if="credentialProperties.length">
|
||||||
|
Credential Data:
|
||||||
|
<el-tooltip class="credentials-info" placement="top" effect="light">
|
||||||
|
<div slot="content" v-html="helpTexts.credentialsData"></div>
|
||||||
|
<font-awesome-icon icon="question-circle" />
|
||||||
|
</el-tooltip>
|
||||||
|
</div>
|
||||||
|
<div v-for="parameter in credentialProperties" :key="parameter.name">
|
||||||
|
<el-row class="parameter-wrapper">
|
||||||
|
<el-col :span="6" class="parameter-name">
|
||||||
|
{{parameter.displayName}}:
|
||||||
|
<el-tooltip placement="top" class="parameter-info" v-if="parameter.description" effect="light">
|
||||||
|
<div slot="content" v-html="parameter.description"></div>
|
||||||
|
<font-awesome-icon icon="question-circle"/>
|
||||||
|
</el-tooltip>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="18">
|
||||||
|
<parameter-input :parameter="parameter" :value="propertyValue[parameter.name]" :path="parameter.name" :isCredential="true" @valueChanged="valueChanged" />
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
|
||||||
<el-row v-if="isOAuthType" class="oauth-information">
|
<el-row v-if="isOAuthType" class="oauth-information">
|
||||||
<el-col :span="6" class="headline">
|
<el-col :span="6" class="headline">
|
||||||
OAuth
|
OAuth
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="18">
|
<el-col :span="18">
|
||||||
<span v-if="isOAuthConnected === true">
|
<span v-if="requiredPropertiesFilled === false">
|
||||||
|
<el-button title="Connect OAuth Credentials" circle :disabled="true">
|
||||||
|
<font-awesome-icon icon="redo" />
|
||||||
|
</el-button>
|
||||||
|
Not all required credential properties are filled
|
||||||
|
</span>
|
||||||
|
<span v-else-if="isOAuthConnected === true">
|
||||||
<el-button title="Reconnect OAuth Credentials" @click.stop="oAuth2CredentialAuthorize()" circle>
|
<el-button title="Reconnect OAuth Credentials" @click.stop="oAuth2CredentialAuthorize()" circle>
|
||||||
<font-awesome-icon icon="redo" />
|
<font-awesome-icon icon="redo" />
|
||||||
</el-button>
|
</el-button>
|
||||||
|
@ -46,29 +74,6 @@
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<br />
|
|
||||||
<div class="headline" v-if="credentialProperties.length">
|
|
||||||
Credential Data:
|
|
||||||
<el-tooltip class="credentials-info" placement="top" effect="light">
|
|
||||||
<div slot="content" v-html="helpTexts.credentialsData"></div>
|
|
||||||
<font-awesome-icon icon="question-circle" />
|
|
||||||
</el-tooltip>
|
|
||||||
</div>
|
|
||||||
<div v-for="parameter in credentialProperties" :key="parameter.name">
|
|
||||||
<el-row class="parameter-wrapper">
|
|
||||||
<el-col :span="6" class="parameter-name">
|
|
||||||
{{parameter.displayName}}:
|
|
||||||
<el-tooltip placement="top" class="parameter-info" v-if="parameter.description" effect="light">
|
|
||||||
<div slot="content" v-html="parameter.description"></div>
|
|
||||||
<font-awesome-icon icon="question-circle"/>
|
|
||||||
</el-tooltip>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="18">
|
|
||||||
<parameter-input :parameter="parameter" :value="propertyValue[parameter.name]" :path="parameter.name" :isCredential="true" @valueChanged="valueChanged" />
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<el-row class="nodes-access-wrapper">
|
<el-row class="nodes-access-wrapper">
|
||||||
<el-col :span="6" class="headline">
|
<el-col :span="6" class="headline">
|
||||||
Nodes with access:
|
Nodes with access:
|
||||||
|
@ -230,6 +235,18 @@ export default mixins(
|
||||||
oAuthCallbackUrl (): string {
|
oAuthCallbackUrl (): string {
|
||||||
return this.$store.getters.getWebhookBaseUrl + 'rest/oauth2-credential/callback';
|
return this.$store.getters.getWebhookBaseUrl + 'rest/oauth2-credential/callback';
|
||||||
},
|
},
|
||||||
|
requiredPropertiesFilled (): boolean {
|
||||||
|
for (const property of this.credentialProperties) {
|
||||||
|
if (property.required !== true) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!this.propertyValue[property.name]) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
copyCallbackUrl (): void {
|
copyCallbackUrl (): void {
|
||||||
|
|
Loading…
Reference in a new issue