2021-01-29 21:19:24 +00:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import * as React from 'react';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
2023-10-11 19:06:43 +00:00
|
|
|
import type { Meta } from '@storybook/react';
|
2021-09-18 00:30:08 +00:00
|
|
|
import { setupI18n } from '../../../util/setupI18n';
|
2021-01-29 21:19:24 +00:00
|
|
|
import enMessages from '../../../../_locales/en/messages.json';
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { Props } from './ConversationDetailsMediaList';
|
|
|
|
import { ConversationDetailsMediaList } from './ConversationDetailsMediaList';
|
2023-10-11 19:06:43 +00:00
|
|
|
import type { MediaItemType } from '../../../types/MediaItem';
|
|
|
|
import { getDefaultConversation } from '../../../test-both/helpers/getDefaultConversation';
|
2021-01-29 21:19:24 +00:00
|
|
|
import {
|
|
|
|
createPreparedMediaItems,
|
|
|
|
createRandomMedia,
|
2023-10-11 19:06:43 +00:00
|
|
|
} from '../media-gallery/utils/mocks';
|
2021-01-29 21:19:24 +00:00
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
|
2022-06-07 00:48:02 +00:00
|
|
|
export default {
|
|
|
|
title: 'Components/Conversation/ConversationDetails/ConversationMediaList',
|
2023-10-11 19:06:43 +00:00
|
|
|
} satisfies Meta<Props>;
|
2021-01-29 21:19:24 +00:00
|
|
|
|
|
|
|
const createProps = (mediaItems?: Array<MediaItemType>): Props => ({
|
|
|
|
conversation: getDefaultConversation({
|
|
|
|
recentMediaItems: mediaItems || [],
|
|
|
|
}),
|
|
|
|
i18n,
|
|
|
|
loadRecentMediaItems: action('loadRecentMediaItems'),
|
|
|
|
showAllMedia: action('showAllMedia'),
|
2022-12-10 02:02:22 +00:00
|
|
|
showLightboxWithMedia: action('showLightboxWithMedia'),
|
2021-01-29 21:19:24 +00:00
|
|
|
});
|
|
|
|
|
2022-11-18 00:45:19 +00:00
|
|
|
export function Basic(): JSX.Element {
|
2021-01-29 21:19:24 +00:00
|
|
|
const mediaItems = createPreparedMediaItems(createRandomMedia);
|
|
|
|
const props = createProps(mediaItems);
|
|
|
|
|
|
|
|
return <ConversationDetailsMediaList {...props} />;
|
2022-11-18 00:45:19 +00:00
|
|
|
}
|