@nestia/chat
's examples detailing
#1210
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes multiple changes to the
packages/chat
module, focusing on renaming files, updating paths, and enhancing the chatbot examples. The most important changes include updating HTML files to reference new paths, renaming and restructuring TypeScript files, and adding new functionality to the BBS example.Updates to HTML files:
packages/chat/bbs/index.html
: Updated script source path to../src/examples/bbs/index.tsx
.packages/chat/index.html
: Changed title and updated script source path to./src/examples/index.tsx
.packages/chat/playground/index.html
: Added a new HTML file for the playground example.packages/chat/shopping/index.html
: Updated script source path to../src/examples/shopping/index.tsx
.Renaming and restructuring TypeScript files:
packages/chat/src/NestiaChatApplication.tsx
: Renamed frompackages/chat/src/applications/NestiaChatApplication.tsx
and updated import paths.packages/chat/src/examples/bbs/BbsArticleService.ts
: Renamed frompackages/chat/src/services/BbsArticleService.ts
and added a newindex
method.packages/chat/src/examples/bbs/BbsChatApplication.tsx
: Added a new file to handle the BBS chat application logic.packages/chat/src/examples/playground/NestiaChatPlaygroundApplication.tsx
: Renamed frompackages/chat/src/applications/NestiaChatUploader.tsx
and updated component names. [1] [2] [3]packages/chat/src/examples/playground/NestiaChatPlaygroundFileUploadMovie.tsx
: Renamed frompackages/chat/src/movies/uploader/NestiaChatFileUploadMovie.tsx
and updated component names. [1] [2]Enhancements to BBS example:
packages/chat/src/examples/bbs/index.tsx
: Refactored the BBS chat application component and updated the logic for starting the chatbot. [1] [2] [3] [4] [5]packages/chat/src/examples/bbs/script.md
: Added a new script file for creating and updating articles in the BBS example.Other changes:
packages/chat/package.json
: Updated version number and modified the files array to exclude thesrc/examples
directory. [1] [2]packages/chat/src/examples/index.tsx
: Added a new file to list and describe the chatbot examples.