@machinemetrics/mm-react-tools
v5.1.0
Published
Components, hooks, and helper functions for writing React apps using MachineMetrics APIs.
Keywords
Readme
mm-react-tools
Components, hooks, and helper functions for writing React apps using MachineMetrics APIs.
Table of Contents
- [Upgrading to 3.x] (#upgrading-to-3.x)
- Install
- Getting Started
- Client ID and Secret
- License
Upgrading to 3.x
When upgrading to 3.x or newer, there are a few breaking changes that need to be addressed.
- The
domainproperty passed toMMProvideris no longer used so it can be removed. This information is inferred from the URL being loaded. - If you pass
<Route>components toMMProvidereither directly or in some level more deeply nested within your application, it must be contained within a<Routes>component.
Install
npm install @machinemetrics/mm-react-toolsPeer Dependencies
Due to how Apollo, React, and other libraries work, there are some additional dependencies that you'll need to include in your project:
npm install react react-router-dom styled-components @apollo/clientGetting Started
Wrap your application in the MMProvider to wire up everything necessary to authenticate against MachineMetrics Cloud with OAuth.
Sign-in uses the OAuth authorization-code flow with PKCE (S256). There is no clientSecret prop: a browser app is a public client and must not ship a secret. If you are upgrading from v4, delete clientSecret from your config and rotate that secret — it has been in every build that included it.
import React from 'react';
import ReactDOM from 'react-dom';
import { MMProvider } from '@machinemetrics/mm-react-tools';
import App from './App';
ReactDOM.render(
<MMProvider
clientId={process.env.REACT_APP_CLIENT_ID}
releaseStage={process.env.REACT_APP_RELEASE_STAGE}
scope={'reporting'}
>
<App />
</MMProvider>,
document.getElementById('root')
);releaseStage is one of production, govcloud, staging or development and selects the login, app, API, GraphQL, NATS and custom data service hosts, available to your app as useMMAuth().urls. Pass urls to override any of them. The development stage has no customDataUrl.
Protect a Route
Use the ProtectedRoute to kick off the login flow.
// App.js
import React from 'react';
import { Route, Routes } from 'react-router-dom';
import { PrivateLayout } from '@machinemetrics/mm-react-tools';
import PublicPage from './PublicPage';
import PrivatePage from './PrivatePage';
function App() {
return (
<Routes>
<Route exact path='/public' element={<PublicPage />} />
<Route element={<PrivateLayout />}>
<Route path="/private" element={<PrivatePage />}>
</Route>
<Routes>
);
}
export default App;GraphQL Hooks
Apollo hooks for GraphQL are available via useQuery and useSubscription.
// PrivatePage.js
import React, { useEffect, useState } from 'react';
import { gql, useQuery } from '@apollo/client';
const PrivatePage = () => {
const [company, setCompany] = useState();
const query = gql`
query {
companies {
name
}
}
`;
const { data, loading, error } = useQuery(query);
useEffect(() => {
if (!data || !data.companies || !data.companies.length) {
return;
}
setCompany(data.companies[0].name);
}, [data]);
return <div>{company}</div>;
};
export default PrivatePage;Client ID and Secret
Contact [email protected] for a Client ID and Secret.
License
MIT © MachineMetrics
