Hi everyone,
I have made an API Fetch Data Plugin that will take data from any API address and will provide the requested data to the user’s interface. The plugin made as I have a device, made by me, to send json data to a server every 5 minutes and I just want to be send via an API address.
I am wondering what it needs to be tested and see if it works correct. I have made an unorthodox installation in a spare installation and looks everything runs smooth but requires to be build if I want to use it or install it through the nocobase for other users as well.
Any idea? If I haven’t explain something correct, please let me know.
Could you please show more details about the plugin?
What exactly you want me to provide?
And where do you want me to show it, and how? I will provide it.
├── client.d.ts
├── client.js
├── docs
│ ├── en-US
│ │ ├── changelog.md
│ │ ├── index.md
│ │ ├── tabs.json
│ │ └── usage.md
│ └── zh-CN
│ ├── changelog.md
│ ├── index.md
│ ├── tabs.json
│ └── usage.md
├── LICENSE
├── package.json
├── README.md
├── README.zh-CN.md
├── server.d.ts
├── server.js
└── src
├── client
│ ├── Configuration
│ │ ├── ExpiresSelect.tsx
│ │ ├── index.tsx
│ │ ├── roles.ts
│ │ └── schema.tsx
│ ├── index.tsx
│ └── locale
│ └── index.ts
├── collections
│ ├── apiKeys.ts
│ ├── dataRecords.ts
│ ├── devices.ts
│ └── permissions.ts
├── constants.ts
├── index.ts
├── locale
│ ├── en-US.json
│ ├── ja_JP.json
│ ├── ko_KR.json
│ └── zh-CN.json
├── locale.ts
├── server
│ ├── actions
│ │ ├── api-keys.ts
│ │ ├── control-device.ts
│ │ └── fetch-data.ts
│ ├── collections
│ │ ├── apiKeys.ts
│ │ ├── dataRecords.ts
│ │ ├── devices.ts
│ │ └── permissions.ts
│ ├── index.ts
│ ├── locale
│ │ ├── en-US.ts
│ │ ├── fr-FR.ts
│ │ ├── index.ts
│ │ └── zh-CN.ts
│ ├── plugin.ts
│ ├── routes
│ │ ├── config.ts
│ │ └── roles.ts
│ ├── services
│ │ ├── ApiService.ts
│ │ └── DeviceService.ts
│ └── tests
│ └── actions.test.ts
└── swagger
└── index.ts
17 directories, 52 files