0.0.62 • Published 5 years ago

messa-resizer v0.0.62

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

Resizer Component (Experimental) WIP

storybook: https://resizer.messafilip.now.sh

storybook gif

Main Scripts

add to your a project

yarn add messa-resizer

install dependencies

yarn install

run storybook:

yarn storybook

run all test: (flow & eslint & jest)

yarn test

build library:

yarn build

Examples

Here is a minimal example. (without styles)

import React from "react";
import { Resizer } from "messa-resizer";

const App = () => {
  return <Resizer>Resizer component</Resizer>;
};

Component props

NameTypeDefaultDescription
childrenReact.NodeThe content of the Resizer.
styleStyleObjectThe root container's styles.
classNamestringThe root container's classNames.
defaultWidthnumberThe defaultWidth of the Resizer.
defaultHeightnumberThe defaultHeight of the Resizer.
maxHeightnumberInfinityThe maxHeight of the Resizer.
minHeightnumber20The minHeight of the Resizer.
maxWidthnumberInfinityThe maxWidth of the Resizer.
minWidthnumber20The minWidth of the Resizer.
handlersStylesHandlersStylesThe handlebars' inline-styles.
handlersClassNamesHandlersClassNamesThe handlebars' inline-styles.
type HandlersStyles = {|
  +bottom?: StyleObject,
  +right?: StyleObject,
  +"bottom-right"?: StyleObject
|};
type HandlersClassNames = {|
  +bottom?: string,
  +right?: string,
  +"bottom-right"?: string,
|};

TODOs

  • the defaultHeight and defaultWidth should handle string ('auto', '12px', '100%', etc...)
  • add E2E tests (cypress or Puppeteer)
  • The Handlebar component should be able to have children
  • improve unit tests
  • improve styles extend API
  • continuous integration
  • Add handlebars for left and top

Requirments

  • Use ES6 (with Flow) or TypeScript
  • Third-party apps should be able to modify styles
  • The example should work in Chrome, Firefox and Safari
  • Use React
  • Add unit tests (each component should be covered)
0.0.62

5 years ago

0.0.61

5 years ago

0.0.60

5 years ago

0.0.41

5 years ago

0.0.40

5 years ago

0.0.32

5 years ago

0.0.31

5 years ago

0.0.30

5 years ago

0.0.20

5 years ago

0.0.13

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago