iceshrimp-legacy/packages/client/src/components/form/suspense.vue

112 lines
1.9 KiB
Vue
Raw Normal View History

2021-11-28 12:07:37 +01:00
<template>
2023-04-08 02:01:42 +02:00
<transition :name="$store.state.animation ? 'fade' : ''" mode="out-in">
<div v-if="pending">
<MkLoading />
2021-11-28 12:07:37 +01:00
</div>
2023-04-08 02:01:42 +02:00
<div v-else-if="resolved">
<slot :result="result"></slot>
</div>
<div v-else>
<div class="wszdbhzo">
<div>
<i class="ph-warning ph-bold ph-lg"></i>
{{ i18n.ts.somethingHappened }}
</div>
<MkButton inline class="retry" @click="retry"
><i class="ph-arrow-clockwise ph-bold ph-lg"></i>
{{ i18n.ts.retry }}</MkButton
>
</div>
</div>
</transition>
2021-11-28 12:07:37 +01:00
</template>
<script lang="ts">
2023-07-17 00:32:32 +02:00
import type { PropType } from "vue";
import { defineComponent, ref, watch } from "vue";
2023-04-08 02:01:42 +02:00
import MkButton from "@/components/MkButton.vue";
import { i18n } from "@/i18n";
2021-11-28 12:07:37 +01:00
export default defineComponent({
components: {
2022-11-15 20:47:30 +01:00
MkButton,
2021-11-28 12:07:37 +01:00
},
props: {
p: {
type: Function as PropType<() => Promise<any>>,
required: true,
2023-04-08 02:01:42 +02:00
},
2021-11-28 12:07:37 +01:00
},
setup(props, context) {
const pending = ref(true);
const resolved = ref(false);
const rejected = ref(false);
const result = ref(null);
const process = () => {
if (props.p == null) {
return;
}
const promise = props.p();
pending.value = true;
resolved.value = false;
rejected.value = false;
promise.then((_result) => {
pending.value = false;
resolved.value = true;
result.value = _result;
});
promise.catch(() => {
pending.value = false;
rejected.value = true;
});
};
2023-04-08 02:01:42 +02:00
watch(
() => props.p,
() => {
process();
},
{
immediate: true,
2023-07-06 03:28:27 +02:00
},
2023-04-08 02:01:42 +02:00
);
2021-11-28 12:07:37 +01:00
const retry = () => {
process();
};
return {
pending,
resolved,
rejected,
result,
retry,
2022-11-15 20:47:30 +01:00
i18n,
2021-11-28 12:07:37 +01:00
};
2023-04-08 02:01:42 +02:00
},
2021-11-28 12:07:37 +01:00
});
</script>
<style lang="scss" scoped>
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.125s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
.wszdbhzo {
padding: 16px;
text-align: center;
> .retry {
margin-top: 16px;
}
}
</style>