Skip to content

Commit f0654ef

Browse files
committed
Update links, naming
1 parent defdb2a commit f0654ef

File tree

30 files changed

+50
-50
lines changed

30 files changed

+50
-50
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ This repo contains example projects for common use cases for TalkJS.
44

55
TalkJS is a chat API with a pre-built UI for web and mobile apps. Build any chat use case into your product with just a few lines of code. Frontend UI SDK and out-of-the-box notifications included.
66

7-
Visit [talkjs.com](https://talkjs.com/?ref=jssdk-npm-readme) or see our [docs](https://talkjs.com/docs/) to learn more!
7+
Visit [talkjs.com](https://talkjs.com/?ref=jssdk-npm-readme) or see the [TalkJS docs](https://talkjs.com/docs/) to learn more!
88

99
## How-to guides
1010

11-
See our [how-to guides](./howtos/) for ways to use TalkJS's features to customize your chat. Here are just a few examples:
11+
See the [how-to guides](./howtos/) for ways to use TalkJS's features to customize your chat. Here are just a few examples:
1212

1313
- [How to set an automatic away message](./howtos/how-to-set-an-away-message/) with webhooks and the REST API
1414
- [How to use custom data to style your TalkJS chat](./howtos/how-to-use-custom-data-to-style-your-talkjs-chat/)
@@ -18,16 +18,16 @@ See our [how-to guides](./howtos/) for ways to use TalkJS's features to customiz
1818

1919
## SDKs
2020

21-
See examples for how to get started with our SDKs:
21+
See examples for how to get started with the SDKs:
2222

23-
- [JavaScript SDK](./user-to-operator/)
24-
- [React SDK](./react)
23+
- [JavaScript (Classic SDK)](./user-to-operator/)
24+
- [React (Classic SDK)](./react/classic-sdk/)
2525
- [React Native SDK](./react-native)
2626
- [Flutter SDK](./flutter_sdk/)
2727

2828
## Integrating with other frameworks
2929

30-
Our [JavaScript SDK](https://talkjs.com/docs/Reference/JavaScript_Chat_SDK/) lets you integrate TalkJS into your frontend with regular JavaScript, so you can use it alongside any web framework.
30+
The [classic JavaScript SDK](https://talkjs.com/docs/UI_Components/JavaScript/Classic/) lets you integrate TalkJS into your frontend with regular JavaScript, so you can use it alongside any web framework.
3131

3232
Examples of integrating with popular frontend frameworks:
3333

@@ -50,6 +50,6 @@ Using a library, framework or language not listed here? [Let us know](https://ta
5050

5151
## Other resources
5252

53-
For more information on how to integrate TalkJS to your projects, check out our [docs](https://talkjs.com/docs/?ref=gh-example-readme).
53+
For more information on how to integrate TalkJS to your projects, check out the [TalkJS docs](https://talkjs.com/docs/?ref=gh-example-readme).
5454

5555
Not sure how to cover your use case with TalkJS? [Get in touch](https://talkjs.com?ref=gh-example-readme&chatwithus=1) and we'll help you out!

_archive/blazor/blazor-wasm-basic-example/Article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public class User
104104
}
105105
```
106106

107-
The properties are pretty self-explanatory. If you are interested in deeper explanations feel free to visit the official docs: https://talkjs.com/docs/Reference/Concepts/Users/
107+
The properties are pretty self-explanatory. If you are interested in deeper explanations feel free to visit the official docs: https://talkjs.com/docs/Concepts/Users/
108108

109109
Due to the way we developed our functions in the `TalkAux` object, we do not need any additional models.
110110

android/basic-example/app/src/main/java/com/talkjs/basicexample/TalkJSUser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import java.util.List;
66

77
/**
8-
* This class matches the Talk.User object that's used by the TalkJS JavaScript SDK. It's converted
8+
* This class matches the Talk.User object that's used by the TalkJS classic JavaScript SDK. It's converted
99
* to JSON in JavaScriptCallbacks.java and then used in chat.js to synchronize user data. You can either
1010
* use this class in your apps, or modify chat.js to create Talk.User objects from your existing user classes.
1111
*/

csharp/blazor_talkjs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is an example project for TalkJS's tutorial on [how to integrate TalkJS wit
44

55
This example demonstrates how to integrate TalkJS with a Blazor web application. There is one project present inside the repo:
66

7-
- The `Blazor Web App` Interactive Server project which uses TalkJS's [JavaScript SDK](https://talkjs.com/docs/Getting_Started/JavaScript_SDK) to create a one on one chat.
7+
- The `Blazor Web App` Interactive Server project which uses TalkJS's [classic JavaScript SDK](https://talkjs.com/docs/UI_Components/JavaScript/Classic) to create a one on one chat.
88

99
> [!TIP]
1010
> [Download this example project as a zip file](https://github.com/talkjs/talkjs-examples/releases/latest/download/csharp.blazor_talkjs.zip)

flask/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This is an example project for TalkJS's tutorial on [how to build a Flask chat a
55
This example demonstrates how to integrate TalkJS with a Python application that uses the Flask framework. There are two projects present inside the repo:
66

77
- `talkjs-flask-python`: This project contains the Flask backend, which serves a REST endpoint with user data.
8-
- `talkjs-frontend`: This project contains the frontend code, which uses TalkJS's [JavaScript SDK](https://talkjs.com/docs/Reference/JavaScript_Chat_SDK/) to create chats between users.
8+
- `talkjs-frontend`: This project contains the frontend code, which uses TalkJS's [classic JavaScript SDK](https://talkjs.com/docs/UI_Components/JavaScript/Classic/) to create chats between users.
99

1010
## Prerequisites
1111

flutter_sdk/basic-example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TalkJS and Flutter example
22

3-
An example project that shows both the [ChatBox](https://talkjs.com/docs/Reference/Flutter_SDK/Widgets/Chatbox/) and [ConversationList](https://talkjs.com/docs/Reference/Flutter_SDK/Widgets/ConversationList/) widgets of TalkJS.
3+
An example project that shows both the [ChatBox](https://talkjs.com/docs/UI_Components/Flutter/Widgets/Chatbox/) and [ConversationList](https://talkjs.com/docs/UI_Components/Flutter/Widgets/ConversationList/) widgets of TalkJS.
44

55
> [!TIP]
66
> [Download this example project as a zip file](https://github.com/talkjs/talkjs-examples/releases/latest/download/flutter_sdk.basic-example.zip)

howtos/how-to-add-forwarding/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ This is an example project for TalkJS's tutorial on [How to add a forward messag
77
<figcaption>A conversation with a forwarded message</figcaption>
88
</figure>
99

10-
This project uses custom [message actions](https://talkjs.com/docs/Features/Message_Features/Message_Actions/) and the [TalkJS REST API](https://talkjs.com/docs/Reference/REST_API/Getting_Started/Introduction/) to allow users to forward text-based messages to conversations that they're part of.
10+
This project uses custom [message actions](https://talkjs.com/docs/Features/Messages/Message_Actions/) and the [TalkJS REST API](https://talkjs.com/docs/REST_API/) to allow users to forward text-based messages to conversations that they're part of.
1111

1212
> [!NOTE]
13-
> This example implementation of message forwarding only supports forwarding text-based messages, not messages that are location shares, [voice messages](https://talkjs.com/docs/Features/Message_Features/Voice_Messages/), or [file attachments](https://talkjs.com/docs/Features/Message_Features/File_Sharing/). To extend the current functionality to also include forwarding files, see the information on [sending files with the REST API](https://talkjs.com/docs/Reference/REST_API/Messages/#send-a-file).
13+
> This example implementation of message forwarding only supports forwarding text-based messages, not messages that are location shares, [voice messages](https://talkjs.com/docs/Features/Messages/Voice_Messages/), or [file attachments](https://talkjs.com/docs/Features/Message_Features/File_Sharing/). To extend the current functionality to also include forwarding files, see the information on [sending files with the REST API](https://talkjs.com/docs/REST_API/Messages/#send-a-file).
1414
1515
> [!TIP]
1616
> [Download this example project as a zip file](https://github.com/talkjs/talkjs-examples/releases/latest/download/howtos.how-to-add-forwarding.zip)

howtos/how-to-build-a-chat-similar-to-upwork-with-talkjs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ This example project accompanies the tutorial: [How to build a chat similar to U
99

1010
+ Replace the `APP_ID` in `script.js` with your own app ID. You can find your app ID on the **Settings** page of your [TalkJS dashboard](https://talkjs.com/dashboard/).
1111
+ On the [**Themes** page](https://talkjs.com/dashboard/themes) of your dashboard, create a new theme and apply it to the `default` role.
12-
+ Add the [`role` property](https://talkjs.com/docs/Reference/Concepts/Roles/) to your user and the other user, and set it to `default` to apply the new theme.
12+
+ Add the [`role` property](https://talkjs.com/docs/Concepts/Roles/) to your user and the other user, and set it to `default` to apply the new theme.

howtos/how-to-build-a-chat-that-looks-like-linkedin-chat-with-talkjs-chat-api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ This example project accompanies the tutorial: [How to build a LinkedIn lookalik
99

1010
+ Replace the `APP_ID` in `script.js` with your own app ID. You can find your app ID on the **Settings** page of your [TalkJS dashboard](https://talkjs.com/dashboard/).
1111
+ Create a new theme and apply it to the default role.
12-
+ Add the [`role` property](https://talkjs.com/docs/Reference/Concepts/Roles/) to your user and the other user and set it to default to apply the new theme.
12+
+ Add the [`role` property](https://talkjs.com/docs/Concepts/Roles/) to your user and the other user and set it to default to apply the new theme.

howtos/how-to-build-an-airbnb-chat-lookalike-with-talkjs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ This example project accompanies the tutorial: [Build a messaging inbox similar
99

1010
+ Replace the `APP_ID` in `script.js` with your own app ID. You can find your app ID on the **Settings** page of your [TalkJS dashboard](https://talkjs.com/dashboard/).
1111
+ Create a new theme and apply it to the `default` role.
12-
+ Add the [`role` property](https://talkjs.com/docs/Reference/Concepts/Roles/) to your user and the other user, and set it to `default` to apply the new theme.
12+
+ Add the [`role` property](https://talkjs.com/docs/Concepts/Roles/) to your user and the other user, and set it to `default` to apply the new theme.

0 commit comments

Comments
 (0)