Skip to content

Commit

Permalink
Makes the graph application web-components based
Browse files Browse the repository at this point in the history
  • Loading branch information
nzaytsev committed Jan 30, 2025
1 parent 43c29f9 commit c51b815
Show file tree
Hide file tree
Showing 45 changed files with 3,339 additions and 2,961 deletions.
163 changes: 147 additions & 16 deletions ThirdPartyNotices.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,23 @@ This project incorporates components from the projects listed below.
12. @opentelemetry/resources version 1.30.1 (https://github.com/open-telemetry/opentelemetry-js)
13. @opentelemetry/sdk-trace-base version 1.30.1 (https://github.com/open-telemetry/opentelemetry-js)
14. @opentelemetry/semantic-conventions version 1.28.0 (https://github.com/open-telemetry/opentelemetry-js)
15. @shoelace-style/shoelace version 2.19.1 (https://github.com/shoelace-style/shoelace)
16. @vscode/codicons version 0.0.36 (https://github.com/microsoft/vscode-codicons)
17. billboard.js version 3.14.3 (https://github.com/naver/billboard.js)
18. https-proxy-agent version 5.0.1 (https://github.com/TooTallNate/node-https-proxy-agent)
19. iconv-lite version 0.6.3 (https://github.com/ashtuchkin/iconv-lite)
20. lit version 3.2.1 (https://github.com/lit/lit)
21. marked version 15.0.6 (https://github.com/markedjs/marked)
22. microsoft/vscode (https://github.com/microsoft/vscode)
23. node-fetch version 2.7.0 (https://github.com/bitinn/node-fetch)
24. os-browserify version 0.3.0 (https://github.com/CoderPuppy/os-browserify)
25. path-browserify version 1.0.1 (https://github.com/browserify/path-browserify)
26. react-dom version 19.0.0 (https://github.com/facebook/react)
27. react version 19.0.0 (https://github.com/facebook/react)
28. signal-utils version 0.21.1 (https://github.com/proposal-signals/signal-utils)
29. slug version 10.0.0 (https://github.com/Trott/slug)
30. sortablejs version 1.15.0 (https://github.com/SortableJS/Sortable)
15. @r2wc/react-to-web-component version 2.0.4 (https://github.com/bitovi/react-to-web-component)
16. @shoelace-style/shoelace version 2.19.1 (https://github.com/shoelace-style/shoelace)
17. @vscode/codicons version 0.0.36 (https://github.com/microsoft/vscode-codicons)
18. billboard.js version 3.14.3 (https://github.com/naver/billboard.js)
19. https-proxy-agent version 5.0.1 (https://github.com/TooTallNate/node-https-proxy-agent)
20. iconv-lite version 0.6.3 (https://github.com/ashtuchkin/iconv-lite)
21. lit version 3.2.1 (https://github.com/lit/lit)
22. marked version 15.0.6 (https://github.com/markedjs/marked)
23. microsoft/vscode (https://github.com/microsoft/vscode)
24. node-fetch version 2.7.0 (https://github.com/bitinn/node-fetch)
25. os-browserify version 0.3.0 (https://github.com/CoderPuppy/os-browserify)
26. path-browserify version 1.0.1 (https://github.com/browserify/path-browserify)
27. react-dom version 19.0.0 (https://github.com/facebook/react)
28. react version 19.0.0 (https://github.com/facebook/react)
29. signal-utils version 0.21.1 (https://github.com/proposal-signals/signal-utils)
30. slug version 10.0.0 (https://github.com/Trott/slug)
31. sortablejs version 1.15.0 (https://github.com/SortableJS/Sortable)

%% @gk-nzaytsev/fast-string-truncated-width NOTICES AND INFORMATION BEGIN HERE
=========================================
Expand Down Expand Up @@ -1324,6 +1325,136 @@ END OF @opentelemetry/sdk-trace-base NOTICES AND INFORMATION
=========================================
END OF @opentelemetry/semantic-conventions NOTICES AND INFORMATION

%% @r2wc/react-to-web-component NOTICES AND INFORMATION BEGIN HERE
=========================================
# React to Web Component

`@r2wc/react-to-web-component` converts [React](https://reactjs.org/) components to [custom elements](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements)! It lets you share React components as native elements that **don't** require being mounted through React. The custom element acts as a wrapper for the underlying React component. Use these custom elements with any project that uses HTML even in any framework (vue, svelte, angular, ember, canjs) the same way you would use standard HTML elements.

> Note: The latest version of this package only works with the React 18. If you are using React 16 or 17, please use version 1.

`@r2wc/react-to-web-component`:

- Works in all modern browsers. (Edge needs a [customElements polyfill](https://github.com/webcomponents/polyfills/tree/master/packages/custom-elements)).
- Is `1.26KB` minified and gzipped.

## Setup

To install from npm:

```
npm install @r2wc/react-to-web-component
```

## Need help or have questions?

This project is supported by [Bitovi, a React consultancy](https://www.bitovi.com/frontend-javascript-consulting/react-consulting). You can get help or ask questions on our:

- [Discord Community](https://discord.gg/J7ejFsZnJ4)
- [Twitter](https://twitter.com/bitovi)

Or, you can hire us for training, consulting, or development. [Set up a free consultation.](https://www.bitovi.com/frontend-javascript-consulting/react-consulting)

## Basic Use

For basic usage, we will use this simple React component:

```js
const Greeting = () => {
return <h1>Hello, World!</h1>
}
```

With our React component complete, all we have to do is call `r2wc` and [customElements.define](https://developer.mozilla.org/en-US/docs/Web/API/CustomElementRegistry/define) to create and define our custom element:

```js
import r2wc from "@r2wc/react-to-web-component"

const WebGreeting = r2wc(Greeting)

customElements.define("web-greeting", WebGreeting)
```

Now we can use `<web-greeting>` like any other HTML element!

```html
<body>
<h1>Greeting Demo</h1>

<web-greeting></web-greeting>
</body>
```

In the above case, the web-greeting custom element is not making use of the `name` property from our `Greeting` component.

## Working with Attributes

By default, custom elements created by `r2wc` only pass properties to the underlying React component. To make attributes work, you must specify your component's props.

```js
const Greeting = ({ name }) => {
return <h1>Hello, {name}!</h1>
}

const WebGreeting = r2wc(Greeting, {
props: {
name: "string",
},
})
```

Now `r2wc` will know to look for `name` attributes
as follows:

```html
<body>
<h1>Greeting Demo</h1>

<web-greeting name="Justin"></web-greeting>
</body>
```

For projects needing more advanced usage of the web components, see our [programatic usage and declarative demos](docs/programatic-usage.md).

We also have a [complete example using a third party library](docs/complete-example.md).

## Examples

- [Hello World](https://codesandbox.io/s/hello-world-md5oih) - The quintessential software demo!
- [All the Props](https://codesandbox.io/s/all-the-props-n8z5hv) - A demo of all the prop transform types that R2WC supports.
- [Header Example](https://codesandbox.io/s/example-header-blog-7k313l) - An example reusable Header component.
- [MUI Button](https://codesandbox.io/s/example-mui-button-qwidh9) - An example application using an MUI button with theme customization.
- [Checklist Demo](https://codesandbox.io/s/example-checklist-blog-y3nqwx) - An example Checklist application.

## Blog Posts

R2WC with Vite [View Post](https://www.bitovi.com/blog/react-everywhere-with-vite-and-react-to-webcomponent)

R2WC with Create React App (CRA) [View Post](https://www.bitovi.com/blog/how-to-create-a-web-component-with-create-react-app)

## How it works

Check out our [full API documentation](https://github.com/bitovi/react-to-web-component/blob/main/docs/api.md).

Under the hood, `r2wc` creates a `CustomElementConstructor` with custom getters/setters and life cycle methods that keep track of the props that you have defined. When a property is set, its custom setter:

- re-renders the React component inside the custom element.
- creates an enumerable getter / setter on the instance to save the set value and avoid hitting the proxy in the future.

Also:

- Enumerable properties and values on the custom element are used as the `props` passed to the React component.
- The React component is not rendered until the custom element is inserted into the page.

# We want to hear from you.

Come chat with us about open source in our Bitovi community [Discord](https://discord.gg/J7ejFsZnJ4).

See what we're up to by following us on [Twitter](https://twitter.com/bitovi).

=========================================
END OF @r2wc/react-to-web-component NOTICES AND INFORMATION

%% @shoelace-style/shoelace NOTICES AND INFORMATION BEGIN HERE
=========================================
Copyright (c) 2020 A Beautiful Site, LLC
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20116,7 +20116,7 @@
"vscode:prepublish": "pnpm run bundle"
},
"dependencies": {
"@gitkraken/gitkraken-components": "11.0.0-vnext",
"@gitkraken/gitkraken-components": "11.0.0-vnext.3",
"@gitkraken/provider-apis": "0.26.1",
"@gitkraken/shared-web-components": "0.1.1-rc.15",
"@gk-nzaytsev/fast-string-truncated-width": "1.1.0",
Expand All @@ -20133,6 +20133,7 @@
"@opentelemetry/resources": "1.30.1",
"@opentelemetry/sdk-trace-base": "1.30.1",
"@opentelemetry/semantic-conventions": "1.28.0",
"@r2wc/react-to-web-component": "^2.0.4",
"@shoelace-style/shoelace": "2.19.1",
"@vscode/codicons": "0.0.36",
"billboard.js": "3.14.3",
Expand Down
54 changes: 33 additions & 21 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion scripts/esbuild.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ async function buildGraphWebview(mode) {

const result = await esbuild.build({
bundle: true,
entryPoints: ['src/webviews/apps/plus/graph/graph.tsx'],
entryPoints: ['src/webviews/apps/plus/graph/graph.ts'],
entryNames: '[dir]/graph',
alias: {
'@env': path.resolve(__dirname, 'src', 'env', 'browser'),
Expand Down
15 changes: 15 additions & 0 deletions src/system/function.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,21 @@ export function debounce<T extends (...args: any[]) => ReturnType<T>>(
return debounced;
}

export function debounced<T extends (...args: any[]) => ReturnType<T>>(delay: number) {
return (_target: any, _fieldName: string, targetFields: { value?: T }): any => {
console.log('debounced', targetFields, _fieldName);
if (!targetFields.value) {
throw new Error('@debounced can only be used on methods');
}
const debounced = debounce(targetFields.value, delay);
return {
...targetFields,
// @ts-expect-error Deferrable<T> to T is safe
value: debounced as T,
};
};
}

const comma = ',';
const equals = '=';
const openBrace = '{';
Expand Down
Loading

0 comments on commit c51b815

Please sign in to comment.