Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs] example titles & descriptions: AppBar, AutoComplete, Avatar #2929

Merged
merged 2 commits into from
Jan 14, 2016
Merged

[Docs] example titles & descriptions: AppBar, AutoComplete, Avatar #2929

merged 2 commits into from
Jan 14, 2016

Conversation

mbrookes
Copy link
Member

First two for #2927

@mbrookes mbrookes closed this Jan 13, 2016
@mbrookes mbrookes reopened this Jan 13, 2016
@newoga
Copy link
Contributor

newoga commented Jan 13, 2016

@mbrookes What do you think about defining the example names as part of the example and exporting it?

For example:

import React from 'react';
import AppBar from 'material-ui/lib/app-bar';
import IconButton from 'material-ui/lib/icon-button';
import NavigationClose from 'material-ui/lib/svg-icons/navigation/close';
import FlatButton from 'material-ui/lib/flat-button';

function handleTouchTap() {
  alert('onTouchTap triggered on the title component');
}

const styles = {
  title: {
    cursor: 'pointer',
  },
};

// Added this...
export const exampleName = '`IconButton` left, clickable title, and `FlatButton` right.';

const AppBarExampleIconButton = () => (
  <AppBar
    title={<span style={styles.title}>Title</span>}
    onTitleTouchTap={handleTouchTap}
    iconElementLeft={<IconButton><NavigationClose /></IconButton>}
    iconElementRight={<FlatButton label="Save" />}
  />
);

export default AppBarExampleIconButton;
import React from 'react';
import CodeExample from '../../../CodeExample';
import PropTypeDescription from '../../../PropTypeDescription';
import MarkdownElement from '../../../MarkdownElement';

import appBarReadmeText from './README';
import AppBarExampleIcon from './ExampleIcon';
import appBarExampleIconCode from '!raw!./ExampleIcon';
import AppBarExampleIconButton, {example as iconButton} from './ExampleIconButton';
import appBarExampleIconButtonCode from '!raw!./ExampleIconButton';
import AppBarExampleIconMenu from './ExampleIconMenu';
import appBarExampleIconMenuCode from '!raw!./ExampleIconMenu';
import appBarCode from '!raw!material-ui/lib/app-bar';

const descriptions = {
  icon: 'A simple example of `AppBar` with an icon on the right. ' +
  'By default, the left icon is a `hamburger-menu`.',
  iconButton: '`IconButton` left, clickable title, and `FlatButton` right.',
  iconMenu: 'Two exapmles of filtering. The first uses `fuzzyFilter`, the second uses `caseInsensitiveFilter`',
};

const AppBarPage = () => (
  <div>
    <MarkdownElement text={appBarReadmeText} />
    <CodeExample
      code={appBarExampleIconCode}
      title="Simple example"
      description={descriptions.icon}
    >
      <AppBarExampleIcon />
    </CodeExample>
    <CodeExample
      code={appBarExampleIconButtonCode}
      title="Buttons"
      description={iconButton}
    >
      <AppBarExampleIconButton />
    </CodeExample>
    <CodeExample
      code={appBarExampleIconMenuCode}
      title="Icon Menu"
      description={descriptions.iconMenu}
    >
      <AppBarExampleIconMenu />
    </CodeExample>
    <PropTypeDescription code={appBarCode} />
  </div>
);

export default AppBarPage;

@newoga
Copy link
Contributor

newoga commented Jan 13, 2016

Well, I guess my example is wrong because its the description, not the title. I wonder if there's a way to simplify all this importing though...Mm

Edit:
That's also a problem because that would also show up in the code string...Mmm. Maybe ignore this for now, I am curious if there is a way we can reduce the boilerplate imports some.

@mbrookes
Copy link
Member Author

Yes, I dropped the idea of importing the descriptions from md files, as it was going to add another file and import per example, and was overkill.

As for the existing imports - I'll let you puzzle over that one before I progress any further. The best I could come up with was to propose shortening the imports to match the file names.

I wanted to get the first couple out there for review - so glad this has sparked some thought on potential improvements.

@newoga
Copy link
Contributor

newoga commented Jan 13, 2016

@mbrookes Yeah by all means go ahead and wrap up updating examples for a component or two. I really like what you've done with this. I'll continue ruminating a bit about the imports.

@oliviertassinari oliviertassinari added the docs Improvements or additions to the documentation label Jan 14, 2016
noFilter: 'The first example has `MenuItem`s in its data source that display on data entry. ' +
'The second example uses an array of values as its `dataSource`, and updates onFocus ' +
'Both examples have filtering disabled.',
filters: 'Two exapmles of filtering. The first uses `fuzzyFilter`, the second uses `caseInsensitiveFilter`',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

examples

@oliviertassinari
Copy link
Member

This approach seems like a good tradeoff. Should we squash down and merge?

@mbrookes
Copy link
Member Author

Typo fixed & commits squashed.

oliviertassinari added a commit that referenced this pull request Jan 14, 2016
[Docs] example titles & descriptions: AppBar, AutoComplete
@oliviertassinari oliviertassinari merged commit b2d5e83 into mui:master Jan 14, 2016
@oliviertassinari
Copy link
Member

@mbrookes Thanks!

@mbrookes mbrookes changed the title [Docs] example titles & descriptions: AppBar, AutoComplete [Docs] example titles & descriptions: AppBar, AutoComplete, Avatar Jan 14, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs Improvements or additions to the documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants