11 KiB
description | redirect_from |
---|---|
Single-page application with Blockstack | [/develop/zero_to_dapp_1.html /browser/hello-blockstack.html] |
Tutorial for App Integration
{:.no_toc}
In this tutorial, you will learn about Blockstack authentication and storage by installing, running and reviewing the code for a "Todos" web app built with Blockstack and React.
This app highlights the following platform functionality:
- Generate Secret Key with associated Blockstack username to authenticate app
- Add, edit and delete encrypted app data with Gaia
- Decrypt data on Gaia for public sharing by URL
- Unauthenticate and re-authenticate app with Secret Key
Preview the app or view its code on GitHub.
Existing familiarity with React is recommended for reviewing this app's code.
- TOC {:toc}
Install and run the app
You must have recent versions of Git and Node.js (v12.10.0 or greater) installed already.
-
Install the code and its dependencies:
git clone https://github.com/blockstack/blockstack-todos cd blockstack-todos npm install
-
Run the application:
$ npm run start
You should see output similar to the following:
Compiled successfully! You can now view bs-todo in the browser. http://localhost:3000/ Note that the development build is not optimized. To create a production build, use npm run build.
-
Open your local browser to
http://localhost:3000
if it doesn't open automatically.You should see the app's landing page:
Onboard into your first Blockstack app
-
Choose Get started to start onboarding into the app.
The app displays a standardized introductory modal using Blockstack Connect, a JavaScript library that makes it easy to integrate Blockstack into the UI of any web app.
Below, you can see the relevant parts of the React component that triggers this modal in
src/components/Signin.jsx
:import { useConnect } from '@blockstack/connect'; export const Signin = () => { const { doOpenAuth } = useConnect(); return ( <Button onClick={() => doOpenAuth()}>Get Started</Button> ); };
This component imports the React hook
useConnect
from the Blockstack Connect library.useConnect
returns many helper functions such asdoOpenAuth
, which triggers this modal upon click of the "Get started" button.The modal is designed to prepare new users for a different type of relationship with Blockstack apps, one in which they authenticate with a Secret Key that's used to encrypt their private data.
The modal displays the app's name and icon as configured in
src/components/App.jsx
:appDetails: { name: 'Blockstack App', icon: window.location.origin + '/favicon.ico' }
This component loads the
UserSession
module from a second Blockstack library called blockstack.js, which complements Blockstack Connect by providing an API for many protocol-level operations, such as for authentication and storage.import { UserSession } from 'blockstack'; import { appConfig } from '../assets/constants' // ... const userSession = new UserSession({ appConfig })
This module handles user session operations and is initiated using the
appConfig
object, which contains an array of scopes that indicate just what permissions to grant during authentication:export const appConfig = new AppConfig(['store_write', 'publish_data'])
The
appDetails
anduserSession
objects are joined by the callback functionfinished
in configuring Blockstack Connect for authentication with theauthOptions
object:finished: ({ userSession }) => { this.setState({ userData: userSession.loadUserData() }); }
This function simply saves data about the user into the app's state upon authentication.
Further down in the component we see in
componentDidMount
that it checks upon mount to either process completion of authentication withuserSession.handlePendingSignIn()
or otherwise load session data into app state as above withuserSession.isUserSignedIn()
:componentDidMount() { if (userSession.isSignInPending()) { userSession.handlePendingSignIn().then((userData) => { window.history.replaceState({}, document.title, "/") this.setState({ userData: userData}) }); } else if (userSession.isUserSignedIn()) { this.setState({ userData: userSession.loadUserData() }); } }
-
Choose Get started to generate a Secret Key.
The app triggers a popup window in which the Blockstack App is loaded from
app.blockstack.org
and begins generating a new Secret Key. -
Choose Copy Secret Key to copy your Secret Key to the clipboard.
The Secret Key is a unique 12-word mnemonic phrase that empowers the user not only to access Blockstack apps securely and independently. It's also used to encrypt all of the private data they create and manage with Blockstack apps.
Secret Keys are like strong passwords. However, they can never be recovered if lost or reset if stolen. As such, it's paramount that users handle them with great care.
-
Choose I've saved it to confirm you've secured your Secret Key in a suitable place.
-
Enter a username value and choose Continue
The username will be used by the app to generate a URL for sharing your todos, should you choose to make them public.
It is registered on the Stacks blockchain with the Blockstack Naming System (BNS) and associated with your Secret Key.
-
You've now completed onboarding into the app!
Add, edit and delete todos privately
Once you've authenticated the app, you can can start adding todos by entering values into the "Write your to do" field and hitting "Enter".
The data for all todos are saved as JSON to the Gaia hub linked to your Secret Key using the putFile
method of the userSession
object in the src/assets/data-store.js
module:
export const saveTasks = async (userSession, tasks, isPublic) => {
await userSession.putFile(TASKS_FILENAME, JSON.stringify({ tasks, isPublic }), {
encrypt: !isPublic,
});
};
These todos are subsequently loaded using the getFile
method of the same object in the same module:
export const fetchTasks = async (userSession, username) => {
const tasksJSON = await userSession.getFile(TASKS_FILENAME, {
decrypt: false,
username: username || undefined,
});
// code to format and return the tasks
};
By default, the putFile
and getFile
methods automatically encrypt data when saved and decrypt it when retrieved, using the user's Secret Key. This ensures that only the user has the ability to view this data.
When deleting a todo, the same putFile
method is used to save a new JSON array of todos that excludes the deleted todo.
Publish your todos publicly
Select "Make public" to make your todos accessible to the public for sharing via URL.
This will call saveTasks
with the isPublic
parameter set to true
, which is used to disable encryption when using putFile
.
The app will now show all of your todos to anyone who visits the URL displayed with your Blockstack username as a suffix.
Sign out and see your public tasks
Select "Sign out" to deauthenticate the app with your Blockstack account.
This triggers an event, which under the hood calls the signUserOut
method of the UserSession
object.
Now, visit the URL that was provided to you when you made your tasks public. This url is of the format /todos/:username
, so if your username is jane_doe.id.blockstack
, the URL would be localhost:3000/todos/jane_doe.id.blockstack
.
When you visit this page, the TodoList.jsx
component detects that there is a username in the URL. When there is a username, it calls fetchTasks
, this time providing the username
argument. This username
option is then passed to getFile
, which will lookup where that user's tasks are stored.
Sign back in
At this point, you will be logged out from the app but not you'll still have an active session with the Blockstack app itself on app.blockstack.org. Navigate to app.blockstack.org and select "Sign out" there if you want to deauthenticate the Blockstack app as well.
Once signed out, select "Sign in" to sign back in with your Secret Key.
If you've previously deauthenticated the Blockstack app, you'll see a prompt to enter your Secret Key:
The above screen will be ommitted if you have an active session with the Blockstack app already.
Then you'll be presented with the option to select an existing username associated with your Secret Key or create a new one if you wish to authenticate the app with a different identity and data set:
You'll now see your todos as an authenticated user for the username you've chosen.
Learn more
Read the Blockstack Connect guide and the blockstack.js reference to learn more about the libraries used in this tutorial.