Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/RubenVerborgh/Solid-React-Components

Core React components for building your own Solid components and apps
https://github.com/RubenVerborgh/Solid-React-Components

Last synced: 4 months ago
JSON representation

Core React components for building your own Solid components and apps

Awesome Lists containing this project

README

        

# Core React Components for Solid
A core set of [React](https://reactjs.org/) components and hooks
for building your own [Solid](https://solid.inrupt.com/) components and apps.

[![npm version](https://img.shields.io/npm/v/@solid/react.svg)](https://www.npmjs.com/package/@solid/react)
[![Build Status](https://travis-ci.com/solid/react-components.svg?branch=master)](https://travis-ci.com/solid/react-components)
[![Coverage Status](https://coveralls.io/repos/github/solid/react-components/badge.svg?branch=master)](https://coveralls.io/github/solid/react-components?branch=master)
[![Dependency Status](https://david-dm.org/solid/react-components.svg)](https://david-dm.org/solid/react-components)

Follow this [live tutorial](https://trav.page/log/write-solid/)
to get you started!

### Purpose
✨ [Solid](https://solid.inrupt.com/) is an ecosystem for people, data, and apps
in which people can store their data where they want,
independently of the apps they use.

⚛️ This library aims to:
1. provide React developers with components to develop fun Solid apps 👨🏿‍💻
2. enable React developers to build their own components for Solid 👷🏾‍♀️

Solid uses 🔗 [Linked Data](https://solid.inrupt.com/docs/intro-to-linked-data),
so people's data from all over the Web can be connected together
instead of needing to be stored in one giant space.
This library makes working with Linked Data easier, too.

### Example apps
These apps have already been built with React for Solid:
- [Profile viewer](https://github.com/solid/profile-viewer-react) 👤
- [LDflex playground](https://solid.github.io/ldflex-playground/) ⚾
- [Demo app](https://github.com/solid/react-components/blob/master/demo/app.jsx) 🔍
- [Another profile viewer](https://gitlab.com/angelo-v/solid-profile-viewer) 👤
- […add yours!](https://github.com/solid/react-components/edit/master/README.md)

### Install and go
First add the package:
```bash
yarn add @solid/react # or
npm install @solid/react
```

Then you can import components like this:
```JavaScript
import { LoginButton, Value } from '@solid/react';
```

## Build Solid apps from React components
The [demo app](https://github.com/solid/react-components/tree/master/demo)
will inspire you on how to use the components listed below.

### 👮🏻‍♀️ Authentication
#### Log the user in and out
You will need a copy of [popup.html](https://solid.github.io/solid-auth-client/dist/popup.html) in your application folder.
```jsx

Log me out
// Shows LoginButton or LogoutButton depending on the user's status

```

#### Display different content to logged in users
```jsx

You are not logged in, and this is a members-only area!

You are logged in and can see the special content.

```

### 👍🏾 Social interactions
With Solid, people can _like_ any page or thing on the Web:
```jsx
// the current page
GitHub
Ruben's website
poverty
Ruben
```

Your social interactions are stored in your own data pod.
Build your own interactions with an ``.

### 🖥️ Get data from Solid
#### Load data from the user and from the Web
```jsx

Welcome back,




  • Your inbox

  • Your homepage

Random friend of

All friends

Random blog post

All blog posts

```

#### Create data expressions with LDflex
Solid React data components
use the [LDFlex](https://github.com/solid/query-ldflex/) language
to build paths to the data you want.

For example:
- `"user.firstName"` will resolve to the logged in user's first name
- `"user.friends.firstName"` will resolve to the first name of the user's friends
- `"[https://ruben.verborgh.org/profile/#me].homepage"` will resolve to Ruben's homepage
- `"[https://ruben.verborgh.org/profile/#me].friends.firstName"` will resolve to Ruben's friends' names

Learn how to [create your own LDflex expressions](https://github.com/solid/query-ldflex/#creating-data-paths).

#### Automatically refresh when data is updated
Different Solid apps can write to the same documents at the same time.
If you put components inside of ``,
they will refresh when data is updated externally.
In the `subscribe` attribute, list the documents that should be tracked for updates;
set it to `*` (default) if you want to listen to all documents accessed by your app.
Use live updates sparingly,
since change monitoring consumes additional resources,
especially when monitoring documents on different data pods.

## 💪🏾 Create your own components
The Solid React library makes it easy
to create your own components
that interact with the current user
and fetch Linked Data from the Web.
This is easy thanks to [hooks](https://reactjs.org/docs/hooks-intro.html),
introduced in React 16.8.
A good way to get started is by looking at the [implementation](https://github.com/solid/react-components/tree/master/src/components)
of built-in components like
[AuthButton](https://github.com/solid/react-components/blob/master/src/components/AuthButton.jsx),
[Name](https://github.com/solid/react-components/blob/master/src/components/Name.jsx),
and
[List](https://github.com/solid/react-components/blob/master/src/components/List.jsx).

Not a hooks user yet,
or prefer writing components with functions instead of classes?
Our [higher-order components](https://github.com/solid/react-components/blob/v1.3.1/README.md#-building-your-own-components)
will help you out.

#### Identify the user
In Solid, people are identified by a WebID,
a URL that points to them and leads to their data.

The `useWebID` hook gives you the WebID
of the currently logged in user as a string,
which changes automatically whenever someone logs in or out.
The `useLoggedIn` and `useLoggedOut` hooks
provide similar functionality, but return a boolean value.

```jsx
import { useWebId, useLoggedIn, useLoggedOut } from '@solid/react';

function WebIdStatus() {
const webId = useWebId();
return Your WebID is {webId}.;
}

function Greeting() {
const loggedOut = useLoggedOut();
return You are {loggedOut ? 'anonymous' : 'logged in' }.;
}
```

#### Load data from the user or the Web
The `useLDflexValue` and `useLDflexList` hooks
let you load a single result or multiple results
of an LDflex expression.

```jsx
import { useLDflexValue, useLDflexList } from '@solid/react';

function ConnectionCount() {
const name = useLDflexValue('user.firstName') || 'unknown';
const friends = useLDflexList('user.friends');
return {`${name}`} is connected to {friends.length} people.;
}
```
Note how we convert `name` into a string through `` `${name}` ``.
Alternatively, we could also use `name.value`.
We do this because LDflex values
are [terms](https://rdf.js.org/data-model-spec/#term-interface)
rather than strings,
so they can have other properties like `language` and `termType`.
Also, an LDflex value can be used as a path again,
so you can keep on adding properties.

Finally, the `useLDflex` hook also returns status information about the expression.
When its optional second argument is `true`, it returns a list.

```jsx
import { List, useLDflex } from '@solid/react';

function BlogPosts({ author = 'https://ruben.verborgh.org/profile/#me' }) {
const expression = `[${author}].blog[schema:blogPost].label`;
const [posts, pending, error] = useLDflex(expression, true);

if (pending)
return loading ({posts.length} posts so far);
if (error)
return loading failed: {error.message};

return

    {posts.map((label, index) =>
  • {`${label}`}
  • )}
;
}
```

If your components should automatically refresh on updates
when placed inside of a `` component,
use the `useLiveUpdate` hook (already included in all 3 `useLDflex` hooks).
It returns the latest update as `{ timestamp, url }`.

## License
©2018–present [Ruben Verborgh](https://ruben.verborgh.org/),
[MIT License](https://github.com/solid/react-components/blob/master/LICENSE.md).