mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-06 14:23:16 +09:00
refactor
This commit is contained in:
parent
d30ddd4c2e
commit
abc1e9168d
@ -16,12 +16,16 @@ import { $i } from '@/account.js';
|
|||||||
import { misskeyApi } from '@/scripts/misskey-api.js';
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
||||||
import { unisonReload } from '@/scripts/unison-reload.js';
|
import { unisonReload } from '@/scripts/unison-reload.js';
|
||||||
|
|
||||||
|
function canAutoBackup() {
|
||||||
|
return profileManager.profile.name != null && profileManager.profile.name.trim() !== '';
|
||||||
|
}
|
||||||
|
|
||||||
export function getPreferencesProfileMenu(): MenuItem[] {
|
export function getPreferencesProfileMenu(): MenuItem[] {
|
||||||
const autoBackupEnabled = ref(store.state.enablePreferencesAutoCloudBackup);
|
const autoBackupEnabled = ref(store.state.enablePreferencesAutoCloudBackup);
|
||||||
|
|
||||||
watch(autoBackupEnabled, () => {
|
watch(autoBackupEnabled, () => {
|
||||||
if (autoBackupEnabled.value) {
|
if (autoBackupEnabled.value) {
|
||||||
if (profileManager.profile.name == null || profileManager.profile.name.trim() === '') {
|
if (!canAutoBackup()) {
|
||||||
autoBackupEnabled.value = false;
|
autoBackupEnabled.value = false;
|
||||||
os.alert({
|
os.alert({
|
||||||
type: 'warning',
|
type: 'warning',
|
||||||
@ -130,7 +134,7 @@ function importProfile() {
|
|||||||
|
|
||||||
export async function cloudBackup() {
|
export async function cloudBackup() {
|
||||||
if ($i == null) return;
|
if ($i == null) return;
|
||||||
if (profileManager.profile.name == null || profileManager.profile.name.trim() === '') {
|
if (!canAutoBackup()) {
|
||||||
throw new Error('Profile name is not set');
|
throw new Error('Profile name is not set');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -185,11 +189,11 @@ export async function restoreFromCloudBackup() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export async function enableAutoBackup() {
|
export async function enableAutoBackup() {
|
||||||
if (profileManager.profile.name == null || profileManager.profile.name.trim() === '') {
|
if (!canAutoBackup()) {
|
||||||
await renameProfile();
|
await renameProfile();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (profileManager.profile.name == null || profileManager.profile.name.trim() === '') {
|
if (!canAutoBackup()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user