Skip to content
Snippets Groups Projects
Reset.js 1.73 KiB
import React, { useState } from 'react';

import { send } from 'loot-core/src/platform/client/fetch';
import { Text, ButtonWithLoading } from 'loot-design/src/components/common';

import { Setting } from './UI';

export function ResetCache() {
  let [resetting, setResetting] = useState(false);

  async function onResetCache() {
    setResetting(true);
    await send('reset-budget-cache');
    setResetting(false);
  }

  return (
    <Setting
      primaryAction={
        <ButtonWithLoading loading={resetting} onClick={onResetCache}>
          Reset budget cache
        </ButtonWithLoading>
      }
    >
      <Text>
        <strong>Reset budget cache</strong> will clear all cached values for the
        budget and recalculate the entire budget. All values in the budget are
        cached for performance reasons, and if there is a bug in the cache you
        won't see correct values. There is no danger in resetting the cache.
        Hopefully you never have to do this.
      </Text>
    </Setting>
  );
}

export function ResetSync({ resetSync }) {
  let [resetting, setResetting] = useState(false);

  async function onResetSync() {
    setResetting(true);
    await resetSync();
    setResetting(false);
  }

  return (
    <Setting
      primaryAction={
        <ButtonWithLoading loading={resetting} onClick={onResetSync}>
          Reset sync
        </ButtonWithLoading>
      }
    >
      <Text>
        <strong>Reset sync</strong> will remove all local data used to track
        changes for syncing, and create a fresh sync ID on our server. This file
        on other devices will have to be re-downloaded to use the new sync ID.
        Use this if there is a problem with syncing and you want to start fresh.
      </Text>
    </Setting>
  );
}