Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inbox docs update #692

Merged
merged 20 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"cSpell.words": [
"topbar"
]
}
Binary file added images/inbox/Elements.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/inbox/Variables Inbox.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 2 additions & 4 deletions inbox/introduction.mdx
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
---
title: 'Introduction'
description: "Learn more about Novu's Inbox Component."
title: 'Overview'
description: "Learn more about Novu's Inbox component."
---

The Inbox component enables a rich context-aware in-app notifications center directly in your application, and with minimal effort.

In-App notifications are different from push notifications because the notifications are consumed directly by the user in your app itself, whereas push notifications are shown on the device level. Read more about [push channel and supported providers.](/channels-and-providers/push/overview)

Novu provides a pre-built, ready-to-use, and customizable Inbox UI component. It's in React today, and soon will be available in other popular frameworks including Vue, React Native, and full headless.

<Frame caption="Fully functional and customizable React Inbox component">
Expand Down
37 changes: 19 additions & 18 deletions inbox/react/advanced-configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,6 @@ sidebarTitle: 'Advanced Configuration'
description: 'Learn how to configure the Inbox component with advanced options'
---

## Use your own backend and socket URL
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moved to the bottom of the page


By default, Novu's hosted services for API and socket are used. If you want, you can override them and configure your own.

```tsx
import { Inbox } from '@novu/react';

function Novu() {
return (
<Inbox
applicationIdentifier="YOUR_APPLICATION_IDENTIFIER"
subscriberId="YOUR_SUBSCRIBER_ID"
backendUrl="YOUR_BACKEND_URL"
socketUrl="YOUR_SOCKET_URL"
/>
);
}
```

## HMAC Encryption

Expand Down Expand Up @@ -67,3 +49,22 @@ const hmacHash = createHmac('sha256', process.env.NOVU_API_KEY)
## Backend SDK Methods

[Backend sdk methods](/sdks/framework/typescript/overview)

## Use your own backend and socket URL

By default, Novu's hosted services for API and socket are used. If you want, you can override them and configure your own.

```tsx
import { Inbox } from '@novu/react';

function Novu() {
return (
<Inbox
applicationIdentifier="YOUR_APPLICATION_IDENTIFIER"
subscriberId="YOUR_SUBSCRIBER_ID"
backendUrl="YOUR_BACKEND_URL"
socketUrl="YOUR_SOCKET_URL"
/>
);
}
```
303 changes: 0 additions & 303 deletions inbox/react/components.mdx

This file was deleted.

Loading