File size: 3,879 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
import page from '@automattic/calypso-router';
import { SelectDropdown } from '@automattic/components';
import clsx from 'clsx';
import { keys } from 'lodash';
import { Component } from 'react';
import { LiveProvider, LiveEditor, LiveError, LivePreview } from 'react-live';
import DocumentHead from 'calypso/components/data/document-head';
import Main from 'calypso/components/main';
import * as componentExamples from 'calypso/devdocs/design/component-examples';
import * as playgroundScope from 'calypso/devdocs/design/playground-scope';
import { getExampleCodeFromComponent } from './playground-utils';
import './playground.scss';
import './syntax.scss';
export default class DesignAssets extends Component {
static displayName = 'DesignAssets';
state = {
code: `<Main>
<HeaderCake actionText="Fun" actionIcon="status">Welcome to the Playground</HeaderCake>
<Button primary onClick={
function() {
alert( 'World' )
}
}>
<Gridicon icon="code" /> Hello
</Button>
<br /><hr /><br />
<ActionCard
headerText={ 'Change the code above' }
mainText={ "The playground lets you drop in components and play with values. It's experiemental and likely will break." }
buttonText={ 'WordPress' }
buttonIcon="external"
buttonPrimary={ false }
buttonHref="https://wordpress.com"
buttonTarget="_blank"
/>
<br /><hr /><br />
<JetpackLogo />
<SectionNav >
<NavTabs label="Status" selectedText="Published">
<NavItem path="/posts" selected={ true }>Published</NavItem>
<NavItem path="/posts/drafts" selected={ false }>Drafts</NavItem>
<NavItem path="/posts/scheduled" selected={ false }>Scheduled</NavItem>
<NavItem path="/posts/trashed" selected={ false }>Trashed</NavItem>
</NavTabs>
<NavSegmented label="Author">
<NavItem path="/posts/my" selected={ false }>Only Me</NavItem>
<NavItem path="/posts" selected={ true }>Everyone</NavItem>
</NavSegmented>
<Search
pinned
fitsContainer
placeholder="Search Published..."
delaySearch={ true }
onSearch={ () => {} }
/>
</SectionNav>
</Main>`,
};
backToComponents = () => {
page( '/devdocs/design/' );
};
addComponent = ( exampleCode ) => () => {
this.setState( {
code:
'<Main>' +
this.state.code.replace( /(^<Main>)/, '' ).replace( /(<\/Main>$)/, '' ) +
'\n\t' +
exampleCode +
'\n</Main>',
} );
};
handleChange = ( code ) => {
this.setState( {
code: code,
} );
};
listOfExamples() {
return (
<SelectDropdown selectedText="Add a component" className="design__playground-examples">
{ keys( componentExamples ).map( ( name ) => {
// eslint-disable-next-line import/namespace
const ExampleComponentName = componentExamples[ name ];
const exampleComponent = <ExampleComponentName />;
const exampleCode = getExampleCodeFromComponent( exampleComponent );
return (
exampleCode && (
<SelectDropdown.Item key={ name } onClick={ this.addComponent( exampleCode ) }>
{ name }
</SelectDropdown.Item>
)
);
} ) }
</SelectDropdown>
);
}
render() {
const className = clsx( 'devdocs', 'devdocs__components', {
'is-single': true,
'is-list': ! this.props.component,
} );
return (
<Main className={ className }>
<DocumentHead title="Playground" />
<LiveProvider
code={ this.state.code }
scope={ playgroundScope }
mountStylesheet={ false }
className="design__playground"
>
<div className="design__editor">
<div className="design__error">
<LiveError />
</div>
<LiveEditor />
</div>
<div className="design__preview">
{ this.listOfExamples() }
<LivePreview />
</div>
</LiveProvider>
</Main>
);
}
}
|