mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-18 23:49:20 +01:00
Rename files
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
// Copyright 2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import React from 'react';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
|
||||
import type { Meta } from '@storybook/react';
|
||||
import type { PropsType } from './CallingSelectPresentingSourcesModal.dom.js';
|
||||
import { CallingSelectPresentingSourcesModal } from './CallingSelectPresentingSourcesModal.dom.js';
|
||||
|
||||
const { i18n } = window.SignalContext;
|
||||
|
||||
const createProps = (): PropsType => ({
|
||||
i18n,
|
||||
presentingSourcesAvailable: [
|
||||
{
|
||||
id: 'screen',
|
||||
name: 'Entire Screen',
|
||||
isScreen: true,
|
||||
thumbnail:
|
||||
'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+P/1PwAF8AL1sEVIPAAAAABJRU5ErkJggg==',
|
||||
},
|
||||
{
|
||||
id: 'window:123',
|
||||
name: 'Bozirro Airhorse',
|
||||
isScreen: false,
|
||||
thumbnail:
|
||||
'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z1D4HwAF5wJxzsNOIAAAAABJRU5ErkJggg==',
|
||||
},
|
||||
{
|
||||
id: 'window:456',
|
||||
name: 'Discoverer',
|
||||
isScreen: false,
|
||||
thumbnail:
|
||||
'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z8HwHwAFHQIIj4yLtgAAAABJRU5ErkJggg==',
|
||||
},
|
||||
{
|
||||
id: 'window:789',
|
||||
name: 'Signal Beta',
|
||||
isScreen: false,
|
||||
thumbnail: '',
|
||||
},
|
||||
{
|
||||
id: 'window:xyz',
|
||||
name: 'Window that has a really long name and overflows',
|
||||
isScreen: false,
|
||||
thumbnail:
|
||||
'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+O/wHwAEhgJAyqFnAgAAAABJRU5ErkJggg==',
|
||||
},
|
||||
],
|
||||
selectPresentingSource: action('select-presenting-source'),
|
||||
cancelPresenting: action('cancel-presenting'),
|
||||
});
|
||||
|
||||
export default {
|
||||
title: 'Components/CallingSelectPresentingSourcesModal',
|
||||
} satisfies Meta<PropsType>;
|
||||
|
||||
export function Modal(): JSX.Element {
|
||||
return <CallingSelectPresentingSourcesModal {...createProps()} />;
|
||||
}
|
||||
Reference in New Issue
Block a user