AmeyGohil opened a new pull request, #2:
URL: https://github.com/apache/incubator-resilientdb-resvault/pull/2

   ## Feature Addition: Drag and Drop JSON Support in Dashboard Page
   
   ### Overview
   Added a drag-and-drop box to the Dashboard page, enabling users to navigate 
dynamically based on valid JSON data.
   
   ### Preview:
   ![Screenshot from 2024-02-18 
16-14-59](https://github.com/apache/incubator-resilientdb-resvault/assets/43518222/4ea90885-6c24-4c85-9550-73896e346f0f)
   
   
   ### Example Usage
   Users can drop JSON objects containing operation details, such as:
   
   #### Example for `CREATE` Operation:
   ```json
   {
     "operation": "CREATE",
     "address": "some_address",
     "amount": 100,
     "data": "some_data"
   }
   ```
   
   #### Example for `FETCH` Operation:
   ```json
   {
     "operation": "FETCH",
     "id": "some_id"
   }
   ```
   
   #### Example for `UPDATE` Operation:
   ```json
   {
     "operation": "UPDATE_ALL",
     "values": "some_values"
   }
   ```
   
   #### Example for `UPDATE_ALL` Operation:
   ```json
   {
     "operation": "UPDATE",
     "address": "some_address",
     "amount": 150,
     "data": "updated_data",
     "id": "some_id"
   }
   ```
   
   #### Example for `FILTER` Operation:
   ```json
   {
     "operation": "FILTER",
     "recipientPublicKey": "some_public_key"
   }
   ```
   
   #### Example for `INFO` Operation:
   ```json
   {
     "operation": "INFO"
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to