-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make import overwrite off by default and add warning (#2078)
* Move CSV example rendering to code to get around breaking auto-formatter. * Improve overwrite confirmation logic. --------- Co-authored-by: Kailash Nadh <[email protected]>
- Loading branch information
Showing
3 changed files
with
37 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
<b-loading :active="isLoading" /> | ||
|
||
<section v-if="isFree()" class="wrap"> | ||
<form @submit.prevent="onSubmit" class="box"> | ||
<form @submit.prevent="onUpload" class="box"> | ||
<div> | ||
<div class="columns"> | ||
<div class="column"> | ||
|
@@ -93,36 +93,17 @@ | |
</h5> | ||
<p>{{ $t('import.instructionsHelp') }}</p> | ||
<br /> | ||
<blockquote className="csv-example"> | ||
<code className="csv-headers"> | ||
<span>email,</span> | ||
<span>name,</span> | ||
<span>attributes</span> | ||
</code> | ||
<blockquote class="csv-example"> | ||
<code class="csv-headers"> <span>email,</span> <span>name,</span> <span>attributes</span></code> | ||
</blockquote> | ||
|
||
<hr /> | ||
|
||
<h5 class="title is-size-6"> | ||
{{ $t('import.csvExample') }} | ||
</h5> | ||
<blockquote className="csv-example"> | ||
<code className="csv-headers"> | ||
<span>email,</span> | ||
<span>name,</span> | ||
<span>attributes</span> | ||
</code><br /> | ||
<code className="csv-row"> | ||
<span>[email protected],</span> | ||
<span>"User One",</span> | ||
<span>"{""age"": 42, ""planet"": ""Mars""}"</span> | ||
</code><br /> | ||
<code className="csv-row"> | ||
<span>[email protected],</span> | ||
<span>"User Two",</span> | ||
<span>"{""age"": 24, ""job"": ""Time Traveller""}"</span> | ||
</code> | ||
</blockquote> | ||
|
||
<pre class="csv-example" v-text="example" /> | ||
</div> | ||
</section><!-- upload //--> | ||
|
||
|
@@ -175,8 +156,9 @@ export default Vue.extend({ | |
subStatus: 'unconfirmed', | ||
delim: ',', | ||
lists: [], | ||
overwrite: true, | ||
overwrite: false, | ||
file: null, | ||
example: '', | ||
}, | ||
// Initial page load still has to wait for the status API to return | ||
|
@@ -295,6 +277,32 @@ export default Vue.extend({ | |
}); | ||
}, | ||
renderExample() { | ||
const h = 'email, name, attributes\n' | ||
+ 'user1 @mail.com, "User One", "{""age"": 42, ""planet"": ""Mars""}"\n' | ||
+ 'user2 @mail.com, "User Two", "{""age"": 24, ""job"": ""Time Traveller""}"'; | ||
this.example = h; | ||
}, | ||
resetForm() { | ||
this.form.mode = 'subscribe'; | ||
this.form.overwrite = false; | ||
this.form.file = null; | ||
this.form.lists = []; | ||
this.form.subStatus = 'unconfirmed'; | ||
this.form.delim = ','; | ||
}, | ||
onUpload() { | ||
if (this.form.mode === 'subscribe' && this.form.overwrite) { | ||
this.$utils.confirm(this.$t('import.subscribeWarning'), this.onSubmit, this.resetForm); | ||
return; | ||
} | ||
this.onSubmit(); | ||
}, | ||
onSubmit() { | ||
this.isProcessing = true; | ||
|
@@ -336,6 +344,7 @@ export default Vue.extend({ | |
}, | ||
mounted() { | ||
this.renderExample(); | ||
this.pollStatus(); | ||
const ids = this.$utils.parseQueryIDs(this.$route.query.list_id); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters