Skip to content
New issue

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

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

Already on GitHub? # to your account

useContainerQuery react hook #117

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [3.2.0]

### Added

- `container-query`
- `handleResize` is no longer called with null, and width / height props are
Copy link
Owner Author

Choose a reason for hiding this comment

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

This should be tested separately from the hook as well. (Maybe as a unit test.)

always set.
- `use-container-query`
- New `useContainerQuery` react hook. (Requires 16.8.0 or higher.)
- `react-container-query`
- Relaxed the react and react-dom peer dep version ranges.

## [3.1.0]

### Added
Expand Down
46 changes: 46 additions & 0 deletions docs/react.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,52 @@ You might have the following CSS:
}
```

### useContainerQuery hook

This is probably the easiest way to use Container Queries up in React.

Note that to use [React hooks](https://reactjs.org/docs/hooks-intro.html), you'll
need React 16.8.0 or higher.

```js
import React from "react";
import useContainerQuery from "@zeecoder/use-container-query";
import { meta } from "./App.pcss";

const App = () => {
const ref = useContainerQuery(meta);

return (
<div className="App" ref={ref}>
My App
</div>
);
};

export default App;
```

To get the component's size, you can do the following:

```js
import React, { useState } from "react";
import useContainerQuery from "@zeecoder/use-container-query";
import { meta } from "./App.pcss";

const App = () => {
const [size, handleResize] = useState({ width: 1, height: 1 });
const ref = useContainerQuery(meta, { handleResize });

return (
<div className="App" ref={ref}>
My App {size.width}x{size.height}
</div>
);
};

export default App;
```

### \<ContainerQuery\> with (children) Render Prop

Using render props.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"postcss-nested": "^4.1.1",
"prettier": "^1.15.2",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"regenerator-runtime": "^0.13.1",
"style-loader": "^0.23.1",
"webpack": "^4.28.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-container-query/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# react-container-query
# @zeecoder/react-container-query

This module is part of a [monorepo](https://github.com/ZeeCoder/container-query).

Expand Down
4 changes: 2 additions & 2 deletions packages/react-container-query/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
"size-limit": "^0.21.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
},
"keywords": [
"react",
Expand Down
19 changes: 19 additions & 0 deletions packages/use-container-query/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"presets": [
[
"@babel/preset-env",
{
"modules": false,
"targets": {
"browsers": [
"IE >= 10",
"Chrome >= 10",
"Opera >= 15",
"FF >= 10",
"Edge >= 12"
]
}
}
]
]
}
6 changes: 6 additions & 0 deletions packages/use-container-query/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
src/
rollup/
.babelrc
yarn.lock
yarn-error.log
.size-limit
10 changes: 10 additions & 0 deletions packages/use-container-query/.size-limit
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[
{
path: "dist/bundle.cjs.js",
limit: "15.1KB"
},
{
path: "dist/bundle.esm.js",
limit: "15.1KB"
}
]
19 changes: 19 additions & 0 deletions packages/use-container-query/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
9 changes: 9 additions & 0 deletions packages/use-container-query/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# @zeecoder/use-container-query

This module is part of a [monorepo](https://github.com/ZeeCoder/container-query).

Detailed documentation can be found [here](https://github.com/ZeeCoder/container-query/blob/master/docs/react.md).

## License

MIT
60 changes: 60 additions & 0 deletions packages/use-container-query/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"name": "@zeecoder/use-container-query",
"description": "React hook to use Container Queries.",
"homepage": "https://github.com/ZeeCoder/container-query/tree/master/packages/use-container-query",
"version": "3.0.1",
"license": "MIT",
"author": "Viktor Hubert <rpgmorpheus@gmail.com>",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"scripts": {
"test": "yarn size",
"build:esm": "rollup -c rollup/rollup.esm.js",
"build:cjs": "rollup -c rollup/rollup.cjs.js",
"build": "npm-run-all build:*",
"size": "size-limit",
"size:why": "size-limit --why",
"prepare": "yarn build",
"prepublishOnly": "yarn test"
},
"dependencies": {
"@zeecoder/container-query": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"npm-run-all": "^4.1.2",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-terser": "^3.0.0",
"size-limit": "^0.21.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"keywords": [
"react",
"hooks",
"rwd",
"responsive-design",
"responsive",
"postcss",
"postcss-plugin",
"container-query",
"container-queries",
"element-query",
"element-queries",
"media-query",
"media-queries",
"css",
"browser",
"query",
"javascript",
"component",
"module"
],
"publishConfig": {
"access": "public"
}
}
13 changes: 13 additions & 0 deletions packages/use-container-query/rollup/rollup.cjs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import sharedConfig from "./rollup.shared";

sharedConfig.output = [
{
// Muting the warning about CJS default export being added to the ".default"
// prop. It's fine.
exports: "named",
file: __dirname + "/../dist/bundle.cjs.js",
format: "cjs"
}
];

export default sharedConfig;
10 changes: 10 additions & 0 deletions packages/use-container-query/rollup/rollup.esm.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import sharedConfig from "./rollup.shared";

sharedConfig.output = [
{
file: __dirname + "/../dist/bundle.esm.js",
format: "es"
}
];

export default sharedConfig;
8 changes: 8 additions & 0 deletions packages/use-container-query/rollup/rollup.shared.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import babel from "rollup-plugin-babel";
import { terser } from "rollup-plugin-terser";

export default {
input: __dirname + "/../src/index.js",
plugins: [babel(), terser()],
external: ["react", "react-dom", "@zeecoder/container-query"]
};
12 changes: 12 additions & 0 deletions packages/use-container-query/src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React, { useRef, useEffect } from "react";
import Container from "@zeecoder/container-query";

export default function(meta, options = {}) {
const ref = useRef();

useEffect(() => {
new Container(ref.current, meta, options);
}, []);

return ref;
}
4 changes: 2 additions & 2 deletions tests/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ import "babel-regenerator-runtime";
// "Registering" test suits
import "./react/manual";
import "./react/hoc";
import "./react/hook";
import "./react/non-oocss";
// Weirdly unless basic tests are the last, they throw errors in IE
import "./react/basic";
import "./react/basic"; // Weirdly unless basic tests are the last, they throw errors in IE
22 changes: 22 additions & 0 deletions tests/react/hook/Test/Test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import React, { useState } from "react";
import useContainerQuery from "../../../../packages/use-container-query/dist/bundle.esm";
import { meta } from "./Test.pcss";

const Test = () => {
const [size, handleResize] = useState({ width: 1, height: 1 });
const ref = useContainerQuery(meta, {
valuePrecision: 2,
// todo make handleResize always return an object with some width / height
// value
handleResize
});

// todo test getting the size here
return (
<div className="Test" ref={ref}>
{size.width}x{size.height}
</div>
);
};

export default Test;
16 changes: 16 additions & 0 deletions tests/react/hook/Test/Test.pcss
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
body {
background: rgb(200, 200, 200);
}

.Test {
@define-container;
position: absolute;
width: 100%;
height: 100%;
background-color: rgb(255, 0, 0);
--w: 1rw;

@container (width > 100px) {
background-color: rgb(0, 255, 0);
}
}
49 changes: 49 additions & 0 deletions tests/react/hook/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import React from "react";
import Test from "./Test/Test";
import {
renderTestComponent,
clearDOM,
waitForTestComponentToHaveStyle,
changeRootSize,
waitForTestComponentToHaveCustomProperties,
waitForElementToHaveStyle
} from "../../utils";

// Features covered:
// Running the same tests as we do for the HoC version
describe("useContainerQuery", () => {
beforeAll(() => {
clearDOM();
renderTestComponent(<Test />, {
width: 100,
height: 50
});
});

it("should apply styles to the body", async () => {
await waitForElementToHaveStyle(document.body, {
backgroundColor: "rgb(200, 200, 200)"
});
});

it("should not have any of the container queries applied", async () => {
await waitForTestComponentToHaveStyle({
backgroundColor: "rgb(255, 0, 0)"
});

await waitForTestComponentToHaveCustomProperties({
"--w": "1px"
});
});

it("should react to width change", async () => {
changeRootSize({ width: 101 });
await waitForTestComponentToHaveStyle({
backgroundColor: "rgb(0, 255, 0)"
});

await waitForTestComponentToHaveCustomProperties({
"--w": "1.01px"
});
});
});
Loading