0.0.16 • Published 8 years ago

cerebro-ui v0.0.16

Weekly downloads
38
License
MIT
Repository
github
Last release
8 years ago

cerebro-ui

It is UI components library for Cerebro app plugins

Components

This package contains main UI elements that you need to use in your plugin previews:

Keyboard navigation lists

This component used to build lists with keyboard navigation:

  • Arrows and ctrl+j/k used to select next or previous item;
  • enter or o used to select item;
  • and esc used to move selection back to main results list;
import { KeyboardNav, KeyboardNavItem } from 'cerebro-ui'

const Preview = ({ items, onSelect }) => (
  <KeyboardNav>
    <ul className={styles.list}>
    {
      items.map(s => (
        <KeyboardNavItem key={s} onSelect={() => onSelect(item)}>
          {item}
        </KeyboardNavItem>
      ))
    }
    </ul>
  </KeyboardNav>
)

Loading

For consistence, it is recommended to use one loading spinner component in all plugins:

import { Loading } from 'cerebro-ui'

const Preview = ({ isLoading }) => (
  isLoading ? <Loading /> : <MyPluginPreview />
)

Preload

In most cases <Loading /> component is displayed until some promise resolved/rejected. In this case to simplify component code and remove unnecessary state with loading/loaded flags, <Preload /> component could be used:

import { Preload, Loading } from 'cerebro-ui'

const Preview = (promise) => (
  <Preload promise={promise} loader=>{Loading}>
    { (promiseResult) => <YourComponent someProp={promiseResult} /> }
  </Preload>
)

Form elements

import { Button, Checkbox, Select, Text } from 'cerebro-ui/Form'

Related

License

MIT © Alexandr Subbotin

cerebro-search-projects@everything-registry/sub-chunk-1307j-jisho@infinitebrahmanuniverse/nolb-cer@omm/cerebro-confluence-jirashabnamisigap-plugin@zalastax/nolb-cerahk-managercerebro-encodecerebro-fakercerebro-file-searchcerebro-file-search-locatecerebro-gitignorecerebro-gitignore-buildercerebro-gitlabcerebro-googlecerebro-google-chrome-bookmarkscerebro-goto-folder-linuxcerebro-hackernewscerebro-cheatscerebro-chrome-bookmarkscerebro-codelfcerebro-confluence-jiracerebro-connectioncerebro-copyqcerebro-cpf-cnpjcerebro-cryptocurrenciescerebro-decodecerebro-dnsdockcerebro-npmscerebro-num-nzhcerebro-open-coordscerebro-open-in-itermcerebro-org-todocerebro-osx-systemcerebro-oxford-dictcerebro-passwordcerebro-phpstormcerebro-placeholditcerebro-plugin-boostnotecerebro-plugin-convertcerebro-plugin-evernotecerebro-kittycerebro-latexcerebro-let-me-google-for-youcerebro-linux-system-settingscerebro-localhostcerebro-mac-appscerebro-mac-running-appscerebro-mailinatorcerebro-aws-consolecerebro-baiducerebro-base2x16cerebro-base64-emilioidkcerebro-basic-appscerebro-basic-apps-chinese-abbrcerebro-files-navcerebro-filmaffinitycerebro-giaccerebro-basic-apps-chinese-abbr-pluscerebro-bitlycerebro-blockchaincerebro-case-stylescerebro-hostscerebro-imdbcerebro-itermcerebro-karabinercerebro-plugin-fantasticalcerebro-plugin-gitlabcerebro-cdnjscerebro-plugin-gitmojicerebro-plugin-herokucerebro-plugin-iftttcerebro-plugin-sentrycerebro-plugin-statuscerebro-qwantcerebro-random-numbercerebro-recipescerebro-screenshotcerebro-shellcerebro-spotifycerebro-steamlaunchcerebro-terminalcerebro-tldrcerebro-torrentcerebro-translatecerebro-traviscerebro-tunnelblickcerebro-uuidcerebro-web-searchcerebro-whoiscerebro-skyengcerebro-snippets-barcerebro-zalgocerebro-zapiercerebro-wiki-frcerebro-window-managercerebro-windowfindercerebro-windows-shell
0.0.16

8 years ago

0.0.15

8 years ago

0.0.14

8 years ago

0.0.13

8 years ago

0.0.12

8 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago