0.0.16 • Published 7 years ago

cerebro-ui v0.0.16

Weekly downloads
38
License
MIT
Repository
github
Last release
7 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-jishoshabnamisigap-plugin@infinitebrahmanuniverse/nolb-cer@omm/cerebro-confluence-jiraconvert-colorahk-manager@zalastax/nolb-cerbase2x16cerebro-case-stylescerebro-cdnjscerebro-cheatscerebro-chrome-bookmarkscerebro-codelfcerebro-confluence-jiracerebro-connectioncerebro-copyqcerebro-cryptocurrenciescerebro-decodecerebro-dnsdockcerebro-google-chrome-bookmarkscerebro-imdbcerebro-itermcerebro-karabinercerebro-kittycerebro-latexcerebro-let-me-google-for-youcerebro-linux-system-settingscerebro-localhostcerebro-mac-appscerebro-mac-running-appscerebro-encodecerebro-fakercerebro-file-searchcerebro-file-search-locatecerebro-files-navcerebro-filmaffinitycerebro-giaccerebro-gitignorecerebro-gitignore-buildercerebro-gitlabcerebro-googlecerebro-blockchaincerebro-aws-consolecerebro-baiducerebro-base2x16cerebro-base64-emilioidkcerebro-basic-appscerebro-basic-apps-chinese-abbrcerebro-basic-apps-chinese-abbr-pluscerebro-bitlycerebro-goto-folder-linuxcerebro-hackernewscerebro-hostscerebro-plugin-boostnotecerebro-plugin-convertcerebro-plugin-evernotecerebro-plugin-fantasticalcerebro-plugin-gitlabcerebro-plugin-gitmojicerebro-plugin-herokucerebro-plugin-iftttcerebro-plugin-sentrycerebro-plugin-statuscerebro-plugin-uuidcerebro-plugin-ynabcerebro-productivity-timercerebro-qwantcerebro-random-numbercerebro-recipescerebro-screenshotcerebro-shellcerebro-shorten-urlcerebro-skyengcerebro-mailinatorcerebro-npmscerebro-num-nzhcerebro-open-coordscerebro-open-in-itermcerebro-org-todocerebro-osx-systemcerebro-oxford-dictcerebro-snippets-barcerebro-spotifycerebro-steamlaunchcerebro-terminalcerebro-tldrcerebro-torrentcerebro-translatecerebro-traviscerebro-tunnelblickcerebro-uuidcerebro-web-searchcerebro-whoiscerebro-wiki-frcerebro-window-managercerebro-windowfindercerebro-windows-shell
0.0.16

7 years ago

0.0.15

7 years ago

0.0.14

7 years ago

0.0.13

7 years ago

0.0.12

7 years ago

0.0.11

7 years ago

0.0.10

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago