mirror of
https://github.com/zadam/trilium.git
synced 2025-10-30 18:05:55 +01:00
97 lines
3.6 KiB
JavaScript
97 lines
3.6 KiB
JavaScript
import server from "../../services/server.js";
|
|
import toastService from "../../services/toast.js";
|
|
|
|
const TPL = `
|
|
<h4 style="margin-top: 0;">Sync</h4>
|
|
<button id="force-full-sync-button" class="btn">Force full sync</button>
|
|
|
|
<br/>
|
|
<br/>
|
|
|
|
<button id="fill-entity-changes-button" class="btn">Fill entity changes records</button>
|
|
|
|
<br/>
|
|
<br/>
|
|
|
|
<h4>Database integrity check</h4>
|
|
|
|
<p>This will check that the database is not corrupted on the SQLite level. It might take some time, depending on the DB size.</p>
|
|
|
|
<button id="check-integrity-button" class="btn">Check database integrity</button><br/><br/>
|
|
|
|
<h4>Consistency checks</h4>
|
|
|
|
<button id="find-and-fix-consistency-issues-button" class="btn">Find and fix consistency issues</button><br/><br/>
|
|
|
|
<h4>Anonymize database</h4>
|
|
|
|
<p>This action will create a new copy of the database and anonymize it (remove all note content and leave only structure and some non-sensitive metadata)
|
|
for sharing online for debugging purposes without fear of leaking your personal data.</p>
|
|
|
|
<button id="anonymize-button" class="btn">Save anonymized database</button><br/><br/>
|
|
|
|
<h4>Vacuum database</h4>
|
|
|
|
<p>This will rebuild the database which will typically result in a smaller database file. No data will be actually changed.</p>
|
|
|
|
<button id="vacuum-database-button" class="btn">Vacuum database</button>`;
|
|
|
|
export default class AdvancedOptions {
|
|
constructor() {
|
|
$("#options-advanced").html(TPL);
|
|
|
|
this.$forceFullSyncButton = $("#force-full-sync-button");
|
|
this.$fillEntityChangesButton = $("#fill-entity-changes-button");
|
|
this.$anonymizeButton = $("#anonymize-button");
|
|
this.$vacuumDatabaseButton = $("#vacuum-database-button");
|
|
this.$findAndFixConsistencyIssuesButton = $("#find-and-fix-consistency-issues-button");
|
|
this.$checkIntegrityButton = $("#check-integrity-button");
|
|
|
|
this.$forceFullSyncButton.on('click', async () => {
|
|
await server.post('sync/force-full-sync');
|
|
|
|
toastService.showMessage("Full sync triggered");
|
|
});
|
|
|
|
this.$fillEntityChangesButton.on('click', async () => {
|
|
await server.post('sync/fill-entity-changes');
|
|
|
|
toastService.showMessage("Sync rows filled successfully");
|
|
});
|
|
|
|
this.$anonymizeButton.on('click', async () => {
|
|
const resp = await server.post('database/anonymize');
|
|
|
|
if (!resp.success) {
|
|
toastService.showError("Could not create anonymized database, check backend logs for details");
|
|
}
|
|
else {
|
|
toastService.showMessage(`Created anonymized database in ${resp.anonymizedFilePath}`, 10000);
|
|
}
|
|
});
|
|
|
|
this.$vacuumDatabaseButton.on('click', async () => {
|
|
await server.post('database/vacuum-database');
|
|
|
|
toastService.showMessage("Database has been vacuumed");
|
|
});
|
|
|
|
this.$findAndFixConsistencyIssuesButton.on('click', async () => {
|
|
await server.post('database/find-and-fix-consistency-issues');
|
|
|
|
toastService.showMessage("Consistency issues should be fixed.");
|
|
});
|
|
|
|
this.$checkIntegrityButton.on('click', async () => {
|
|
const {results} = await server.get('database/check-integrity');
|
|
|
|
if (results.length === 1 && results[0].integrity_check === "ok") {
|
|
toastService.showMessage("Integrity check succeeded - no problems found.");
|
|
}
|
|
else {
|
|
toastService.showMessage("Integrity check failed: " + JSON.stringify(results, null, 2), 15000);
|
|
}
|
|
});
|
|
}
|
|
}
|