chore update playground

This commit is contained in:
Jon Lundy 2022-11-20 10:13:36 -07:00
parent 12716ae972
commit ab9561f8b3
Signed by untrusted user who does not match committer: xuu
GPG Key ID: C63E6D61F3035024
3 changed files with 13 additions and 9 deletions

View File

@ -24,12 +24,12 @@ var page = template.Must(template.New("graphiql").Parse(`<!DOCTYPE html>
} }
</style> </style>
<script <script
src="https://cdn.jsdelivr.net/npm/react@17.0.2/umd/react.production.min.js" src="https://cdn.jsdelivr.net/npm/react@{{.reactVersion}}/umd/react.production.min.js"
integrity="{{.reactSRI}}" integrity="{{.reactSRI}}"
crossorigin="anonymous" crossorigin="anonymous"
></script> ></script>
<script <script
src="https://cdn.jsdelivr.net/npm/react-dom@17.0.2/umd/react-dom.production.min.js" src="https://cdn.jsdelivr.net/npm/react-dom@{{.reactVersion}}/umd/react-dom.production.min.js"
integrity="{{.reactDOMSRI}}" integrity="{{.reactDOMSRI}}"
crossorigin="anonymous" crossorigin="anonymous"
></script> ></script>
@ -82,9 +82,10 @@ func Handler(title string, endpoint string) http.HandlerFunc {
"endpoint": endpoint, "endpoint": endpoint,
"endpointIsAbsolute": endpointHasScheme(endpoint), "endpointIsAbsolute": endpointHasScheme(endpoint),
"subscriptionEndpoint": getSubscriptionEndpoint(endpoint), "subscriptionEndpoint": getSubscriptionEndpoint(endpoint),
"version": "2.0.10", "version": "2.0.13",
"cssSRI": "sha256-gQryfbGYeYFxnJYnfPStPYFt0+uv8RP8Dm++eh00G9c=", "reactVersion": "17.0.2",
"jsSRI": "sha256-qQ6pw7LwTLC+GfzN+cJsYXfVWRKH9O5o7+5H96gTJhQ=", "cssSRI": "sha256-qKvndYgkAMQOBoa1SZF9NlbIig+kQ3Fk4f8wlrEqBLw=",
"jsSRI": "sha256-dExtzxjgqXfOgQ94xw079jAjd4dPAFrO2Qz6I3Yd9Ko=",
"reactSRI": "sha256-Ipu/TQ50iCCVZBUsZyNJfxrDk0E2yhaEIz0vqI+kFG8=", "reactSRI": "sha256-Ipu/TQ50iCCVZBUsZyNJfxrDk0E2yhaEIz0vqI+kFG8=",
"reactDOMSRI": "sha256-nbMykgB6tsOFJ7OdVmPpdqMFVk4ZsqWocT6issAPUF0=", "reactDOMSRI": "sha256-nbMykgB6tsOFJ7OdVmPpdqMFVk4ZsqWocT6issAPUF0=",
}) })

View File

@ -50,10 +50,10 @@ func Handler(title string, endpoint string) http.HandlerFunc {
err := page.Execute(w, map[string]string{ err := page.Execute(w, map[string]string{
"title": title, "title": title,
"endpoint": endpoint, "endpoint": endpoint,
"version": "1.7.26", "version": "1.7.28",
"cssSRI": "sha256-dKnNLEFwKSVFpkpjRWe+o/jQDM6n/JsvQ0J3l5Dk3fc=", "cssSRI": "sha256-dKnNLEFwKSVFpkpjRWe+o/jQDM6n/JsvQ0J3l5Dk3fc=",
"faviconSRI": "sha256-GhTyE+McTU79R4+pRO6ih+4TfsTOrpPwD8ReKFzb3PM=", "faviconSRI": "sha256-GhTyE+McTU79R4+pRO6ih+4TfsTOrpPwD8ReKFzb3PM=",
"jsSRI": "sha256-SG9YAy4eywTcLckwij7V4oSCG3hOdV1m+2e1XuNxIgk=", "jsSRI": "sha256-VVwEZwxs4qS5W7E+/9nXINYgr/BJRWKOi/rTMUdmmWg=",
}) })
if err != nil { if err != nil {
panic(err) panic(err)

View File

@ -16,6 +16,8 @@ import (
"github.com/99designs/gqlgen/graphql/handler/transport" "github.com/99designs/gqlgen/graphql/handler/transport"
"github.com/gorilla/websocket" "github.com/gorilla/websocket"
"github.com/ravilushqa/otelgqlgen" "github.com/ravilushqa/otelgqlgen"
"github.com/vektah/gqlparser/v2/gqlerror"
"github.com/sour-is/ev/app/gql/graphiql" "github.com/sour-is/ev/app/gql/graphiql"
"github.com/sour-is/ev/app/gql/playground" "github.com/sour-is/ev/app/gql/playground"
"github.com/sour-is/ev/app/msgbus" "github.com/sour-is/ev/app/msgbus"
@ -24,7 +26,6 @@ import (
"github.com/sour-is/ev/internal/lg" "github.com/sour-is/ev/internal/lg"
"github.com/sour-is/ev/pkg/es" "github.com/sour-is/ev/pkg/es"
"github.com/sour-is/ev/pkg/gql" "github.com/sour-is/ev/pkg/gql"
"github.com/vektah/gqlparser/v2/gqlerror"
) )
type Resolver struct { type Resolver struct {
@ -137,7 +138,9 @@ func (*noop) Events(ctx context.Context, streamID string, paging *gql.PageInput)
func (*noop) EventAdded(ctx context.Context, streamID string, after int64) (<-chan *es.GQLEvent, error) { func (*noop) EventAdded(ctx context.Context, streamID string, after int64) (<-chan *es.GQLEvent, error) {
panic("not implemented") panic("not implemented")
} }
func (*noop) TruncateStream(ctx context.Context, streamID string, index int64) (bool, error) {
panic("not implemented")
}
func (*noop) RegisterHTTP(*http.ServeMux) {} func (*noop) RegisterHTTP(*http.ServeMux) {}
func NewServer(es graphql.ExecutableSchema) *handler.Server { func NewServer(es graphql.ExecutableSchema) *handler.Server {