mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-04-30 05:14:53 +08:00
46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
/**
|
|
* @flow
|
|
*/
|
|
|
|
import React from 'react';
|
|
import SetStringExample from './examples/SetString';
|
|
import { storiesOf } from '@kadira/storybook';
|
|
import UIExplorer, { Description, DocItem, Section } from '../../ui-explorer';
|
|
|
|
const ClipboardScreen = () =>
|
|
<UIExplorer title="Clipboard" url="apis/Clipboard">
|
|
<Description>
|
|
Clipboard gives you an interface for setting to the clipboard. (Getting clipboard content is
|
|
not supported on web.)
|
|
</Description>
|
|
|
|
<Section title="Methods">
|
|
<DocItem
|
|
description="Determines whether the browser environment supports Clipboard at all."
|
|
label="web"
|
|
name="static isAvailable"
|
|
typeInfo="() => boolean"
|
|
/>
|
|
|
|
<DocItem
|
|
description={
|
|
'Copies a string to the clipboard. On web, some browsers may not support copying to the clipboard, therefore, this function returns a boolean to indicate if the copy was successful.'
|
|
}
|
|
example={{
|
|
render: () => <SetStringExample />
|
|
}}
|
|
name="static setString"
|
|
typeInfo="(string) => boolean"
|
|
/>
|
|
|
|
<DocItem
|
|
description="Not properly supported on Web. Returns a `Promise` of an empty string."
|
|
label="compat"
|
|
name="static getString"
|
|
typeInfo="()"
|
|
/>
|
|
</Section>
|
|
</UIExplorer>;
|
|
|
|
storiesOf('APIs', module).add('Clipboard', ClipboardScreen);
|