Skip to content

Commit 1c4e104

Browse files
authored
8 initial readme file (#19)
- added top-level readme - inner readme for storybook - updated stories for all existing implementations
1 parent 1d87d8a commit 1c4e104

File tree

9 files changed

+857
-6
lines changed

9 files changed

+857
-6
lines changed

.devcontainer/devcontainer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"eamodio.gitlens",
2323
"wayou.vscode-todo-highlight",
2424
"PKief.material-icon-theme",
25-
"yoavbls.pretty-ts-errors"
25+
"yoavbls.pretty-ts-errors",
26+
"unifiedjs.vscode-mdx"
2627
]
2728
}
2829
},

.eslintrc.yml

-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ extends:
5050
- "plugin:jest/style"
5151
# -- STORYBOOK --
5252
# NOTE: Quote from docs: "This plugin will only be applied to files following the *.stories.* (we recommend this) or *.story.* pattern."
53-
# Its recommended to lint also the config files in .storybook, which in our current file context, is painfull to achieve, so this is emmited.
54-
# It would not have made any major difference anyhow, can only help with mistyped addon names, we will survive without it...
5553
- "plugin:storybook/recommended"
5654

5755
# --------------------------- Formatting -------------------------

.storybook/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { StorybookConfig } from "@storybook/react-vite";
22

33
const config: StorybookConfig = {
4-
stories: ["../**/stories.@(ts|tsx)"],
4+
stories: ["../**/stories.@(ts|tsx)", "../**/readme.mdx"],
55
addons: ["@storybook/addon-essentials"],
66
framework: "@storybook/react-vite",
77
};

readme.md

+28-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1-
TEST FOR PUBLISHING; UNSTABLE DO NOT USE
1+
**Disclaimer:** _I am not affiliated in any way with Microsoft or Fluent UI. This is **NOT** an official repository from the Fluent UI ecosystem_.
22

3-
FURTHER REL FOR PIPELINE TEST 0.0.2
3+
### Who is this for?
4+
5+
This library is aimed at folks who work with Microsoft's Fluent UI library but think it lacks some features here and there.
6+
7+
### Is this stable?
8+
9+
Not quite yet, from `1.*` onward it will be, as long as its in `0.*` consider it unstable.
10+
11+
### What does it contain?
12+
13+
It contains helpful hooks, components, and theme utilities that I was maintaining across different projects. I decided to create this central repository to share these utilities.
14+
15+
These utilities can be common layout utilities (like `Flex`, `Grid`, etc.), generic and library-specific hooks, extended theme tokens, common animations, and also full-fledged components that are not yet available in Fluent UI itself (like `Pagination`, for instance).
16+
17+
### Where can I find the docs?
18+
19+
The library documentation resides at a dedicated [Storybook](https://bubulux.github.io/fluentui-helpers). You will also find planned updates and preview components there.
20+
21+
### How long will I be committed to this?
22+
23+
I am maintaining two larger projects with Fluent UI, one private and one for my company, so there are long-lasting factors that will bind me to this for a while.
24+
25+
### How to contribute or report bugs?
26+
27+
If there are any bugs, please open an issue on GitHub.
28+
29+
If you want to contribute (other than a bug fix) or suggest a change, open a discussion thread :)
File renamed without changes.

src/hooks/useFuiProviderNode/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import useFuiProviderNode from "@hooks/useFuiProviderNode/hook";
2+
3+
export default useFuiProviderNode;
+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
import type { Meta, StoryObj } from "@storybook/react";
2+
3+
import { Tooltip, Button } from "@fluentui/react-components";
4+
import useFuiProviderNode from "@hooks/useFuiProviderNode";
5+
6+
/**
7+
* @description
8+
* - when you use a component in fluent that requires the parent provider node, for example for relative positioning, you can use this hook to get the parent provider node
9+
* - some components like Tooltip for example allow to set a mountNode prop, which is the parent provider node
10+
* - this will only work if you have exactly one provider node in your app
11+
*
12+
* @example
13+
*
14+
* ```tsx
15+
* import { Tooltip, Button } from "@fluentui/react-components";
16+
* import useFuiProviderNode from "@hooks/useFuiProviderNode";
17+
*
18+
* export default function SomeHigherComponent() {
19+
* const { fuiProviderNode } = useFuiProviderNode();
20+
* return (
21+
* <Tooltip
22+
* content="This is a tooltip that uses the provider node"
23+
* mountNode={fuiProviderNode}
24+
* relationship="label"
25+
* >
26+
* <Button>Hover me</Button>
27+
* </Tooltip>
28+
* );
29+
* }
30+
* ```
31+
*/
32+
export function Wrapper({ hasProviderNode }: { hasProviderNode: boolean }) {
33+
const { fuiProviderNode } = useFuiProviderNode();
34+
return hasProviderNode ? (
35+
<Tooltip
36+
content="This is a tooltip that uses the provider node"
37+
mountNode={fuiProviderNode}
38+
relationship="label"
39+
>
40+
<Button>Hover me</Button>
41+
</Tooltip>
42+
) : (
43+
<Tooltip
44+
content="This is a tooltip that relies on a unspecified provider node"
45+
relationship="label"
46+
>
47+
<Button>Hover me</Button>
48+
</Tooltip>
49+
);
50+
}
51+
52+
const meta: Meta = {
53+
title: "Hooks/Specific/useFuiProviderNode",
54+
component: Wrapper,
55+
args: {
56+
hasProviderNode: true,
57+
},
58+
};
59+
60+
export default meta;
61+
62+
type Story = StoryObj<typeof Wrapper>;
63+
64+
export const WithNodeFromHook: Story = {};
65+
66+
export const DefaultProviderNode: Story = {
67+
args: { hasProviderNode: false },
68+
};

src/readme.mdx

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { Meta } from "@storybook/blocks";
2+
3+
<Meta title="Introduction" />
4+
5+
### Implemented
6+
7+
For the implemented features just browse the Storybook.
8+
Not only visual components are there, but also hooks and other utilities showcase through wrappers.
9+
10+
### Planned
11+
12+
#### Components
13+
14+
- Atoms: Pagination
15+
- Layout: Grid (not sure, might cause more problems than it solves)
16+
- Animations: FadeIn, FadeOut
17+
18+
#### Hooks
19+
20+
_nothing planned_
21+
22+
#### Theme
23+
24+
- More materials / Morphism for web: Window 11 brings lots of glass / acrylic effects from the [fluent UI language](https://fluent2.microsoft.design/material), there should also be a way to access these in web apps.

0 commit comments

Comments
 (0)