Skip to content

Commit

Permalink
Feature/add streaming api (#555)
Browse files Browse the repository at this point in the history
## Describe your changes
Implement Streaming page to subscribe and monitor platform events
(standard & custom).

## Issue ticket number and link

## Checklist before requesting a review
- [x] I have read and understand the [Contributions
section](https://github.com/tprouvot/Salesforce-Inspector-reloaded#contributions)
- [x] Target branch is releaseCandidate and not master
- [x] I have performed a self-review of my code
- [x] I ran the [unit
tests](https://github.com/tprouvot/Salesforce-Inspector-reloaded#unit-tests)
and my PR does not break any tests
- [ ] I documented the changes I've made on the
[CHANGES.md](https://github.com/tprouvot/Salesforce-Inspector-reloaded/blob/master/CHANGES.md)
and followed actual conventions
- [ ] I added a new section on
[how-to.md](https://github.com/tprouvot/Salesforce-Inspector-reloaded/blob/master/docs/how-to.md)
(optional)

---------

Co-authored-by: guillaumeSF <[email protected]>
Co-authored-by: Thomas Prouvot <[email protected]>
Co-authored-by: nshulman <[email protected]>
Co-authored-by: Nathan Shulman <[email protected]>
Co-authored-by: Thomas Prouvot <[email protected]>
Co-authored-by: Alan Jaouen <[email protected]>
Co-authored-by: Mehdi Cherfaoui <[email protected]>
Co-authored-by: waliasandeep <[email protected]>
Co-authored-by: castellani <[email protected]>
  • Loading branch information
10 people authored Sep 6, 2024
1 parent 3b0c6b3 commit a86ee47
Show file tree
Hide file tree
Showing 25 changed files with 1,275 additions and 7 deletions.
469 changes: 469 additions & 0 deletions addon/event-monitor.css

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions addon/event-monitor.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<title>Event Monitor</title>
<link rel="stylesheet" href="button.css">
<link rel="stylesheet" href="slds-spinner.css">
<link rel="stylesheet" href="data-load.css">
<link rel="stylesheet" href="event-monitor.css">
</head>

<body>
<div id="root"></div>
<script src="react.js"></script>
<script src="react-dom.js"></script>
<script src="button.js"></script>
<script type="module" src="event-monitor.js"></script>
</body>

</html>
Loading

0 comments on commit a86ee47

Please sign in to comment.