@4geit/swg-user-chatbox-model 中文文档教程

发布于 7年前 浏览 20 项目主页 更新于 3年前

@4geit/swg-user-chatbox-model npm version


用户聊天框模型来处理自定义设置

Installation

  1. A recommended way to install @4geit/swg-user-chatbox-model is through npm package manager using the following command:
npm i @4geit/swg-user-chatbox-model --save

或使用 yarn 使用以下命令:

yarn add @4geit/swg-user-chatbox-model
  1. In your swagger file, you need to add a reference to the SwgUserChatboxModel definition under the definitions property (e.g. /api/swagger/swagger.yaml) as below:
swagger: "2.0"
# ...
definitions:
  SwgUserChatboxModel:
    $ref: ../../node_modules/@4geit/swg-user-chatbox-model/swagger.yaml#/definitions/SwgUserChatboxModel
# ...
  1. SwgUserChatboxModel also comes along with some endpoints you can expose to the API, to do so you will need to add a reference to the SwgUserChatboxModel definition under the paths property (e.g. /api/swagger/swagger.yaml) as below:
swagger: "2.0"
# ...
paths:
  /user-chatboxes:
    $ref: ../../node_modules/@4geit/swg-user-chatbox-model/swagger.yaml#/definitions/UserChatboxListPath
  /user-chatboxes/bulk:
    $ref: ../../node_modules/@4geit/swg-user-chatbox-model/swagger.yaml#/definitions/UserChatboxBulkPath
  /user-chatboxes/{id}:
    $ref: ../../node_modules/@4geit/swg-user-chatbox-model/swagger.yaml#/definitions/UserChatboxItemPath
  /user-chatboxes/populate:
    $ref: ../../node_modules/@4geit/swg-user-chatbox-model/swagger.yaml#/definitions/PopulatePath
# ...

您还需要将路径添加到 swg-user 的 controllers 文件夹-chatbox-model 包,这样 swagger-node 就会找到相关的控制器来使用。 编辑文件 /config/default.yaml 并向属性 mockControllersDirscontrollersDirs 添加两个新路径,如下所示:

swagger:
  # ...
  bagpipes:
    _router:
      # ...
      mockControllersDirs:
        # ...
        - node_modules/@4geit/swg-user-chatbox-model/mocks
        # ...
      controllersDirs:
        # ...
        - node_modules/@4geit/swg-user-chatbox-model/controllers
        # ...

@4geit/swg-user-chatbox-model npm version


user chatbox model to handle custom settings

Installation

  1. A recommended way to install @4geit/swg-user-chatbox-model is through npm package manager using the following command:
npm i @4geit/swg-user-chatbox-model --save

Or use yarn using the following command:

yarn add @4geit/swg-user-chatbox-model
  1. In your swagger file, you need to add a reference to the SwgUserChatboxModel definition under the definitions property (e.g. /api/swagger/swagger.yaml) as below:
swagger: "2.0"
# ...
definitions:
  SwgUserChatboxModel:
    $ref: ../../node_modules/@4geit/swg-user-chatbox-model/swagger.yaml#/definitions/SwgUserChatboxModel
# ...
  1. SwgUserChatboxModel also comes along with some endpoints you can expose to the API, to do so you will need to add a reference to the SwgUserChatboxModel definition under the paths property (e.g. /api/swagger/swagger.yaml) as below:
swagger: "2.0"
# ...
paths:
  /user-chatboxes:
    $ref: ../../node_modules/@4geit/swg-user-chatbox-model/swagger.yaml#/definitions/UserChatboxListPath
  /user-chatboxes/bulk:
    $ref: ../../node_modules/@4geit/swg-user-chatbox-model/swagger.yaml#/definitions/UserChatboxBulkPath
  /user-chatboxes/{id}:
    $ref: ../../node_modules/@4geit/swg-user-chatbox-model/swagger.yaml#/definitions/UserChatboxItemPath
  /user-chatboxes/populate:
    $ref: ../../node_modules/@4geit/swg-user-chatbox-model/swagger.yaml#/definitions/PopulatePath
# ...

And you will also need to add the path to the controllers folder of the swg-user-chatbox-model package so that swagger-node will find the relevant controller to use. Edit the file /config/default.yaml and add two new paths to the properties mockControllersDirs and controllersDirs as illustrated below:

swagger:
  # ...
  bagpipes:
    _router:
      # ...
      mockControllersDirs:
        # ...
        - node_modules/@4geit/swg-user-chatbox-model/mocks
        # ...
      controllersDirs:
        # ...
        - node_modules/@4geit/swg-user-chatbox-model/controllers
        # ...
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文