minor fixes
This commit is contained in:
parent
e051b59a98
commit
7f8f7c2aa1
352 changed files with 49537 additions and 49537 deletions
|
@ -1,105 +1,105 @@
|
|||
<template>
|
||||
<div class="action">
|
||||
<Statistic />
|
||||
<div v-for="action in actions" :key="action.description" class="action-item">
|
||||
<b-icon :icon="action.icon" size="is-large" />
|
||||
<div class="desc">
|
||||
{{ $t(action.description) }}
|
||||
</div>
|
||||
<b-button
|
||||
type="is-primary"
|
||||
outlined
|
||||
:data-test="action.dataAttribute"
|
||||
@mousedown.prevent
|
||||
@click="action.onClick"
|
||||
>
|
||||
{{ $t(action.button) }}
|
||||
</b-button>
|
||||
</div>
|
||||
<div class="action-item has-switch">
|
||||
<b-icon icon="account-file" size="is-large" />
|
||||
<div class="desc">
|
||||
{{ $t('account.control.fileDesc') }}
|
||||
</div>
|
||||
<div data-test="download_notes__config_switch">
|
||||
<b-switch :value="isEnabledSaveFile" size="is-medium" @input="handleEnabledSaveFile" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { openDecryptModal, openShowRecoverKeyModal, openRemoveAccountModal } from '../../modals'
|
||||
import { controlComputed, controlMethods } from '../../injectors'
|
||||
import Statistic from './Statistic'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
Statistic
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
actions: [
|
||||
{
|
||||
icon: 'account-notes',
|
||||
onClick: this.getEncryptedNotes,
|
||||
button: 'account.control.loadAll',
|
||||
description: 'account.control.loadAllDesc',
|
||||
dataAttribute: 'load_all_encrypted_notes_button'
|
||||
},
|
||||
{
|
||||
icon: 'account-key',
|
||||
onClick: this.openRecoverKeyModal,
|
||||
button: 'account.control.showRecoveryKey',
|
||||
description: 'account.control.showRecoveryKeyDesc',
|
||||
dataAttribute: 'reveal_current_note_account'
|
||||
},
|
||||
{
|
||||
icon: 'account-remove',
|
||||
button: 'account.control.remove',
|
||||
onClick: this.handleRemoveAccount,
|
||||
description: 'account.control.removeDesc',
|
||||
dataAttribute: 'clear_account_info_button'
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...controlComputed
|
||||
},
|
||||
methods: {
|
||||
...controlMethods,
|
||||
handleEnabledSaveFile() {
|
||||
this.enabledSaveFile()
|
||||
},
|
||||
async getEncryptedNotes() {
|
||||
const props = await this.decryptNotes()
|
||||
|
||||
if (props) {
|
||||
openDecryptModal({ ...props, parent: this })
|
||||
}
|
||||
},
|
||||
handleRemoveAccount() {
|
||||
const onConfirm = () => {
|
||||
this.addNoticeWithInterval({
|
||||
notice: {
|
||||
title: 'accountHasBeenDeleted',
|
||||
type: 'info'
|
||||
},
|
||||
interval: 2000
|
||||
})
|
||||
this.removeAccount()
|
||||
}
|
||||
|
||||
openRemoveAccountModal({ i18n: this.$i18n, onConfirm })
|
||||
},
|
||||
async openRecoverKeyModal() {
|
||||
const recoveryKey = await this.getRecoveryKey()
|
||||
|
||||
if (recoveryKey) {
|
||||
openShowRecoverKeyModal({ recoveryKey, parent: this })
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<template>
|
||||
<div class="action">
|
||||
<Statistic />
|
||||
<div v-for="action in actions" :key="action.description" class="action-item">
|
||||
<b-icon :icon="action.icon" size="is-large" />
|
||||
<div class="desc">
|
||||
{{ $t(action.description) }}
|
||||
</div>
|
||||
<b-button
|
||||
type="is-primary"
|
||||
outlined
|
||||
:data-test="action.dataAttribute"
|
||||
@mousedown.prevent
|
||||
@click="action.onClick"
|
||||
>
|
||||
{{ $t(action.button) }}
|
||||
</b-button>
|
||||
</div>
|
||||
<div class="action-item has-switch">
|
||||
<b-icon icon="account-file" size="is-large" />
|
||||
<div class="desc">
|
||||
{{ $t('account.control.fileDesc') }}
|
||||
</div>
|
||||
<div data-test="download_notes__config_switch">
|
||||
<b-switch :value="isEnabledSaveFile" size="is-medium" @input="handleEnabledSaveFile" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { openDecryptModal, openShowRecoverKeyModal, openRemoveAccountModal } from '../../modals'
|
||||
import { controlComputed, controlMethods } from '../../injectors'
|
||||
import Statistic from './Statistic'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
Statistic
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
actions: [
|
||||
{
|
||||
icon: 'account-notes',
|
||||
onClick: this.getEncryptedNotes,
|
||||
button: 'account.control.loadAll',
|
||||
description: 'account.control.loadAllDesc',
|
||||
dataAttribute: 'load_all_encrypted_notes_button'
|
||||
},
|
||||
{
|
||||
icon: 'account-key',
|
||||
onClick: this.openRecoverKeyModal,
|
||||
button: 'account.control.showRecoveryKey',
|
||||
description: 'account.control.showRecoveryKeyDesc',
|
||||
dataAttribute: 'reveal_current_note_account'
|
||||
},
|
||||
{
|
||||
icon: 'account-remove',
|
||||
button: 'account.control.remove',
|
||||
onClick: this.handleRemoveAccount,
|
||||
description: 'account.control.removeDesc',
|
||||
dataAttribute: 'clear_account_info_button'
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...controlComputed
|
||||
},
|
||||
methods: {
|
||||
...controlMethods,
|
||||
handleEnabledSaveFile() {
|
||||
this.enabledSaveFile()
|
||||
},
|
||||
async getEncryptedNotes() {
|
||||
const props = await this.decryptNotes()
|
||||
|
||||
if (props) {
|
||||
openDecryptModal({ ...props, parent: this })
|
||||
}
|
||||
},
|
||||
handleRemoveAccount() {
|
||||
const onConfirm = () => {
|
||||
this.addNoticeWithInterval({
|
||||
notice: {
|
||||
title: 'accountHasBeenDeleted',
|
||||
type: 'info'
|
||||
},
|
||||
interval: 2000
|
||||
})
|
||||
this.removeAccount()
|
||||
}
|
||||
|
||||
openRemoveAccountModal({ i18n: this.$i18n, onConfirm })
|
||||
},
|
||||
async openRecoverKeyModal() {
|
||||
const recoveryKey = await this.getRecoveryKey()
|
||||
|
||||
if (recoveryKey) {
|
||||
openShowRecoverKeyModal({ recoveryKey, parent: this })
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue