feat(frontend): add sync in settings

This commit is contained in:
DCsunset 2020-10-29 20:57:21 +08:00
parent 066c92946f
commit 98b4e8be81
6 changed files with 80 additions and 9 deletions

19
frontend/assets/app.css Normal file
View file

@ -0,0 +1,19 @@
.v-application.task-app code {
font-weight: initial;
background-color: #2f2f2f;
color: rgba(255, 255, 255, 0.9);
font-size: 95%;
display: inline-block;
padding: 1px 0.5em 1px 0.5em;
margin: 2px;
margin-bottom: 14px;
}
/* Code block */
.v-application.task-app pre code {
display: block;
padding: 0.5em 0.8em 0.5em 0.8em;
}
.v-application.task-app code:before,
.v-application.task-app code:after {
content: initial;
}

View file

@ -36,7 +36,29 @@
<v-list-item-action> <v-list-item-action>
<v-text-field <v-text-field
v-model="settings.autoRefresh" v-model="settings.autoRefresh"
style="width: 30px" style="width: 40px"
:rules="numberRules"
/>
</v-list-item-action>
</v-list-item>
<v-list-item>
<v-list-item-content>
<v-list-item-title class="pb-1">
Auto Sync
<v-icon size="18px" class="ml-2" @click="sync" title="Sync immediately">
mdi-sync
</v-icon>
</v-list-item-title>
<v-list-item-subtitle>
in minutes (0 means no auto sync)<br />
run <code>task sync</code> periodically
</v-list-item-subtitle>
</v-list-item-content>
<v-list-item-action>
<v-text-field
v-model="settings.autoSync"
style="width: 40px"
:rules="numberRules" :rules="numberRules"
/> />
</v-list-item-action> </v-list-item-action>
@ -83,12 +105,14 @@ export default defineComponent({
const formRef = ref(null); const formRef = ref(null);
const settings = reactive({ const settings = reactive({
dark: context.root.$store.state.settings.dark, dark: context.root.$store.state.settings.dark,
autoRefresh: context.root.$store.state.settings.autoRefresh autoRefresh: context.root.$store.state.settings.autoRefresh,
autoSync: context.root.$store.state.settings.autoSync
}); });
const reset = () => { const reset = () => {
settings.dark = context.root.$store.state.settings.dark; settings.dark = context.root.$store.state.settings.dark;
settings.autoRefresh = context.root.$store.state.settings.autoRefresh; settings.autoRefresh = context.root.$store.state.settings.autoRefresh;
settings.autoSync = context.root.$store.state.settings.autoSync;
}; };
const closeDialog = () => { const closeDialog = () => {
@ -106,7 +130,12 @@ export default defineComponent({
} }
}; };
const sync = async () => {
await context.root.$store.dispatch('syncTasks');
};
return { return {
sync,
showDialog, showDialog,
closeDialog, closeDialog,
save, save,

View file

@ -1,5 +1,5 @@
<template> <template>
<v-app> <v-app class="task-app">
<SettingsDialog v-model="settingsDialog" /> <SettingsDialog v-model="settingsDialog" />
<v-snackbar <v-snackbar

View file

@ -36,7 +36,9 @@ export default {
// mdi font // mdi font
'@mdi/font/css/materialdesignicons.css', '@mdi/font/css/materialdesignicons.css',
// main font // main font
'typeface-open-sans/index.css' 'typeface-open-sans/index.css',
// App css
'@/assets/app.css'
], ],
/* /*
** Plugins to load before mounting the App ** Plugins to load before mounting the App

View file

@ -51,13 +51,14 @@ export default defineComponent({
setup(_props, context) { setup(_props, context) {
context.root.$store.dispatch('fetchTasks'); context.root.$store.dispatch('fetchTasks');
let interval: NodeJS.Timeout | null = null; // Auto Refresh
let refreshInterval: NodeJS.Timeout | null = null;
const setAutoRefresh = () => { const setAutoRefresh = () => {
if (interval) if (refreshInterval)
clearInterval(interval); clearInterval(refreshInterval);
const freq = +context.root.$store.state.settings.autoRefresh; const freq = +context.root.$store.state.settings.autoRefresh;
if (freq > 0) { if (freq > 0) {
interval = setInterval(() => { refreshInterval = setInterval(() => {
context.root.$store.dispatch('fetchTasks'); context.root.$store.dispatch('fetchTasks');
}, +context.root.$store.state.settings.autoRefresh * 60000); }, +context.root.$store.state.settings.autoRefresh * 60000);
} }
@ -65,6 +66,21 @@ export default defineComponent({
setAutoRefresh(); setAutoRefresh();
watch(() => context.root.$store.state.settings, setAutoRefresh); watch(() => context.root.$store.state.settings, setAutoRefresh);
// Auto Sync
let syncInterval: NodeJS.Timeout | null = null;
const setAutoSync = () => {
if (syncInterval)
clearInterval(syncInterval);
const freq = +context.root.$store.state.settings.autoSync;
if (freq > 0) {
syncInterval = setInterval(() => {
context.root.$store.dispatch('syncTasks');
}, +context.root.$store.state.settings.autoSync * 60000);
}
};
setAutoSync();
watch(() => context.root.$store.state.settings, setAutoSync);
const mode = ref('Tasks'); const mode = ref('Tasks');
const allModes = ['Tasks', 'Projects']; const allModes = ['Tasks', 'Projects'];

View file

@ -11,7 +11,8 @@ export const state = () => ({
}, },
settings: { settings: {
dark: false, dark: false,
autoRefresh: '5' // in minutes autoRefresh: '5', // in minutes
autoSync: '0' // in minutes
} }
}); });
@ -74,6 +75,10 @@ export const actions: ActionTree<RootState, RootState> = {
await this.$axios.$put('/api/tasks', { tasks }); await this.$axios.$put('/api/tasks', { tasks });
// Refresh // Refresh
await context.dispatch('fetchTasks'); await context.dispatch('fetchTasks');
},
async syncTasks(_context) {
await this.$axios.$post('/api/sync');
} }
}; };