Migrate to Vue 3 and Vite

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2022-07-12 10:55:28 +02:00
parent 8f4099ee33
commit ee20e03cc2
464 changed files with 31515 additions and 32758 deletions

View File

@@ -1,18 +1,19 @@
<template>
<div class="card" v-if="todo">
<div class="card-content">
<b-checkbox v-model="status" />
<o-checkbox v-model="status" />
<router-link
:to="{ name: RouteName.TODO, params: { todoId: todo.id } }"
>{{ todo.title }}</router-link
>
<span class="details has-text-grey">
<span v-if="todo.dueDate" class="due_date">
<b-icon icon="calendar" />
{{ todo.dueDate | formatDateString }}
<span class="">
<span v-if="todo.dueDate" class="">
<o-icon icon="calendar" />
{{ formatDateString(todo.dueDate) }}
</span>
<span v-if="todo.assignedTo" class="assigned_to">
<b-icon icon="account" />
<span v-if="todo.assignedTo" class="">
<Account />
<o-icon icon="account" />
{{ `@${todo.assignedTo.preferredUsername}` }}
<span v-if="todo.assignedTo.domain">{{
`@${todo.assignedTo.domain}`
@@ -22,52 +23,40 @@
</div>
</div>
</template>
<script lang="ts">
import { Component, Prop, Vue } from "vue-property-decorator";
import { SnackbarProgrammatic as Snackbar } from "buefy";
<script lang="ts" setup>
// import { SnackbarProgrammatic as Snackbar } from "buefy";
import { ITodo } from "../../types/todos";
import RouteName from "../../router/name";
import { UPDATE_TODO } from "../../graphql/todos";
import { computed, ref } from "vue";
import { useMutation } from "@vue/apollo-composable";
import Account from "vue-material-design-icons/Account.vue";
import { formatDateString } from "@/filters/datetime";
@Component
export default class Todo extends Vue {
@Prop({ required: true, type: Object }) todo!: ITodo;
const props = defineProps<{ todo: ITodo }>();
RouteName = RouteName;
const editMode = ref(false);
editMode = false;
const status = computed({
get() {
return props.todo.status;
},
set(status: boolean) {
updateTodo({ status, id: props.todo.id });
},
});
get status(): boolean {
return this.todo.status;
}
const { mutate: updateTodo, onDone, onError } = useMutation(UPDATE_TODO);
set status(status: boolean) {
this.updateTodo({ status });
}
onDone(() => {
editMode.value = false;
});
async updateTodo(params: Record<string, unknown>): Promise<void> {
try {
await this.$apollo.mutate({
mutation: UPDATE_TODO,
variables: {
id: this.todo.id,
...params,
},
});
this.editMode = false;
} catch (e: any) {
Snackbar.open({
message: e.message,
type: "is-danger",
position: "is-bottom",
});
}
}
}
onError((e) => {
// Snackbar.open({
// message: e.message,
// type: "is-danger",
// position: "is-bottom",
// });
});
</script>
<style lang="scss" scoped>
@use "@/styles/_mixins" as *;
span.details {
@include margin-left(1rem);
}
</style>

View File

@@ -1,101 +1,99 @@
<template>
<div class="card" v-if="todo">
<div class="card-content">
<b-field :label="$t('Status')">
<b-checkbox size="is-large" v-model="status" />
</b-field>
<b-field :label="$t('Title')">
<b-input v-model="title" />
</b-field>
<b-field :label="$t('Assigned to')"> </b-field>
<b-field :label="$t('Due on')">
<b-datepicker v-model="dueDate" :first-day-of-week="firstDayOfWeek" />
</b-field>
<o-field :label="$t('Status')">
<o-checkbox size="large" v-model="status" />
</o-field>
<o-field :label="$t('Title')">
<o-input v-model="title" />
</o-field>
<o-field :label="$t('Assigned to')"> </o-field>
<o-field :label="$t('Due on')">
<o-datepicker v-model="dueDate" :first-day-of-week="firstDayOfWeek" />
</o-field>
</div>
</div>
</template>
<script lang="ts">
import { Prop, Vue } from "vue-property-decorator";
<script lang="ts" setup>
import debounce from "lodash/debounce";
import { DebouncedFunc } from "lodash";
import { SnackbarProgrammatic as Snackbar } from "buefy";
import { ITodo } from "../../types/todos";
import RouteName from "../../router/name";
import { UPDATE_TODO } from "../../graphql/todos";
import { IPerson } from "../../types/actor";
import { Snackbar } from "@/plugins/snackbar";
import { computed, inject, ref } from "vue";
import { useMutation } from "@vue/apollo-composable";
import { Locale } from "date-fns";
export default class Todo extends Vue {
@Prop({ required: true, type: Object }) todo!: ITodo;
const props = defineProps<{
todo: ITodo;
}>();
RouteName = RouteName;
const editMode = ref(false);
editMode = false;
const title = computed({
get(): string {
return props.todo.title;
},
set(newTitle: string) {
debounceUpdateTodo({ id: props.todo.id, title: newTitle });
},
});
debounceUpdateTodo!: DebouncedFunc<
(obj: Record<string, unknown>) => Promise<void>
>;
const status = computed({
get(): boolean {
return props.todo.status;
},
set(newStatus: boolean) {
debounceUpdateTodo({ id: props.todo.id, status: newStatus });
},
});
// We put this in data because of issues like
// https://github.com/vuejs/vue-class-component/issues/263
data(): Record<string, unknown> {
return {
debounceUpdateTodo: debounce(this.updateTodo, 1000),
};
}
// const assignedTo = computed({
// get(): IPerson | undefined {
// return props.todo.assignedTo;
// },
// set(person: IPerson | undefined) {
// debounceUpdateTodo({
// id: props.todo.id,
// assignedToId: person ? person.id : null,
// });
// },
// });
get title(): string {
return this.todo.title;
}
const dueDate = computed({
get(): string | undefined {
return props.todo.dueDate;
},
set title(title: string) {
this.debounceUpdateTodo({ title });
}
set(newDueDate: string | undefined) {
debounceUpdateTodo({ id: props.todo.id, dueDate: newDueDate });
},
});
get status(): boolean {
return this.todo.status;
}
const snackbar = inject<Snackbar>("snackbar");
set status(status: boolean) {
this.debounceUpdateTodo({ status });
}
const {
mutate: updateTodo,
onDone: updateTodoDone,
onError: updateTodoError,
} = useMutation(UPDATE_TODO);
get assignedTo(): IPerson | undefined {
return this.todo.assignedTo;
}
updateTodoDone(() => {
editMode.value = false;
});
set assignedTo(person: IPerson | undefined) {
this.debounceUpdateTodo({ assignedToId: person ? person.id : null });
}
updateTodoError((e) => {
snackbar?.open({
message: e.message,
variant: "danger",
position: "is-bottom",
});
});
get dueDate(): Date | undefined {
return this.todo.dueDate;
}
const debounceUpdateTodo = debounce(updateTodo, 1000);
set dueDate(dueDate: Date | undefined) {
this.debounceUpdateTodo({ dueDate });
}
const dateFnsLocale = inject<Locale>("dateFnsLocale");
async updateTodo(params: Record<string, unknown>): Promise<void> {
try {
await this.$apollo.mutate({
mutation: UPDATE_TODO,
variables: {
id: this.todo.id,
...params,
},
});
this.editMode = false;
} catch (e: any) {
Snackbar.open({
message: e.message,
type: "is-danger",
position: "is-bottom",
});
}
}
get firstDayOfWeek(): number {
return this.$dateFnsLocale?.options?.weekStartsOn || 0;
}
}
const firstDayOfWeek = computed((): number => {
return dateFnsLocale?.options?.weekStartsOn ?? 0;
});
</script>