67 lines
1.8 KiB
TypeScript
67 lines
1.8 KiB
TypeScript
/*
|
|||
|
|
* Copyright 2025 New Vector Ltd.
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
||
|
|
* Please see LICENSE files in the repository root for full details.
|
||
|
|
*/
|
||
|
|
|
||
|
|
import React, { type JSX } from "react";
|
||
|
|
import { fn } from "storybook/test";
|
||
|
|
|
||
|
|
import type { Meta, StoryFn } from "@storybook/react-vite";
|
||
|
|
import {
|
||
|
|
AudioPlayerView,
|
||
|
|
type AudioPlayerViewActions,
|
||
|
|
type AudioPlayerViewSnapshot,
|
||
|
|
type AudioPlayerViewModel,
|
||
|
|
} from "./AudioPlayerView";
|
||
|
|
import { ViewWrapper } from "../../ViewWrapper";
|
||
|
|
|
||
|
|
type AudioPlayerProps = AudioPlayerViewSnapshot & AudioPlayerViewActions;
|
||
|
|
const AudioPlayerViewWrapper = (props: AudioPlayerProps): JSX.Element => (
|
||
|
|
<ViewWrapper<AudioPlayerViewSnapshot, AudioPlayerViewModel> Component={AudioPlayerView} props={props} />
|
||
|
|
);
|
||
|
|
|
||
|
|
export default {
|
||
|
|
title: "Audio/AudioPlayerView",
|
||
|
|
component: AudioPlayerViewWrapper,
|
||
|
|
tags: ["autodocs"],
|
||
|
|
argTypes: {
|
||
|
|
playbackState: {
|
||
|
|
options: ["stopped", "playing", "paused", "decoding"],
|
||
|
|
control: { type: "select" },
|
||
|
|
},
|
||
|
|
},
|
||
|
|
args: {
|
||
|
|
mediaName: "Sample Audio",
|
||
|
|
durationSeconds: 300,
|
||
|
|
playedSeconds: 120,
|
||
|
|
percentComplete: 30,
|
||
|
|
playbackState: "stopped",
|
||
|
|
sizeBytes: 3500,
|
||
|
|
error: false,
|
||
|
|
togglePlay: fn(),
|
||
|
|
onKeyDown: fn(),
|
||
|
|
onSeekbarChange: fn(),
|
||
|
|
},
|
||
|
|
} as Meta<typeof AudioPlayerViewWrapper>;
|
||
|
|
|
||
|
|
const Template: StoryFn<typeof AudioPlayerViewWrapper> = (args) => <AudioPlayerViewWrapper {...args} />;
|
||
|
|
|
||
|
|
export const Default = Template.bind({});
|
||
|
|
|
||
|
|
export const NoMediaName = Template.bind({});
|
||
|
|
NoMediaName.args = {
|
||
|
|
mediaName: undefined,
|
||
|
|
};
|
||
|
|
|
||
|
|
export const NoSize = Template.bind({});
|
||
|
|
NoSize.args = {
|
||
|
|
sizeBytes: undefined,
|
||
|
|
};
|
||
|
|
|
||
|
|
export const HasError = Template.bind({});
|
||
|
|
HasError.args = {
|
||
|
|
error: true,
|
||
|
|
};
|