summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkDigitalClock.stories.impl.ts
diff options
context:
space:
mode:
authorAcid Chicken (硫酸鶏) <root@acid-chicken.com>2023-05-20 03:38:07 +0900
committerGitHub <noreply@github.com>2023-05-20 03:38:07 +0900
commitee3f408c7d25accb5812c4f442ba7f4531e4b681 (patch)
treeb3b3e170abf923127c9fa00e09de276ffe4fcb2e /packages/frontend/src/components/MkDigitalClock.stories.impl.ts
parentdelete /docs (diff)
downloadmisskey-ee3f408c7d25accb5812c4f442ba7f4531e4b681.tar.gz
misskey-ee3f408c7d25accb5812c4f442ba7f4531e4b681.tar.bz2
misskey-ee3f408c7d25accb5812c4f442ba7f4531e4b681.zip
feat: impl IdlingRenderScheduler (#10547)
* feat: impl IdleRender * test: pin time on Chromatic * test: pin time on Chromatic * fix: typo * style: rename * style: rename * chore: back to setTimeout * style: linebreak * refactor: remove unused budget option * refactor: use raw unix time * fix: conflict error * fix: floor * fix: subtract * Revert "fix: subtract" This reverts commit 2ef4afaafc69d2fb8329b04c1b124dfa97b7e863. * Revert "fix: floor" This reverts commit bef8ecdf45c6afc52138921d16e2caca78cfd38d. * Revert "refactor: use raw unix time" This reverts commit 5199e13cb2829f3036101f95445cca3cb9c83703.
Diffstat (limited to 'packages/frontend/src/components/MkDigitalClock.stories.impl.ts')
-rw-r--r--packages/frontend/src/components/MkDigitalClock.stories.impl.ts32
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/frontend/src/components/MkDigitalClock.stories.impl.ts b/packages/frontend/src/components/MkDigitalClock.stories.impl.ts
new file mode 100644
index 0000000000..344f6de47c
--- /dev/null
+++ b/packages/frontend/src/components/MkDigitalClock.stories.impl.ts
@@ -0,0 +1,32 @@
+/* eslint-disable @typescript-eslint/explicit-function-return-type */
+import { StoryObj } from '@storybook/vue3';
+import isChromatic from 'chromatic/isChromatic';
+import MkDigitalClock from './MkDigitalClock.vue';
+export const Default = {
+ render(args) {
+ return {
+ components: {
+ MkDigitalClock,
+ },
+ setup() {
+ return {
+ args,
+ };
+ },
+ computed: {
+ props() {
+ return {
+ ...this.args,
+ };
+ },
+ },
+ template: '<MkDigitalClock v-bind="props" />',
+ };
+ },
+ args: {
+ now: isChromatic() ? () => new Date('2023-01-01T10:10:30') : undefined,
+ },
+ parameters: {
+ layout: 'centered',
+ },
+} satisfies StoryObj<typeof MkDigitalClock>;