Release v0.19.0 (#2125)

Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
This commit is contained in:
Daniel Valdivia
2022-06-15 18:18:36 -07:00
committed by GitHub
parent 1311b171f9
commit 8993b40730
463 changed files with 623 additions and 1377 deletions

View File

@@ -15,7 +15,7 @@ spec:
serviceAccountName: console-sa
containers:
- name: console
image: 'minio/console:v0.18.1'
image: 'minio/console:v0.19.0'
imagePullPolicy: "IfNotPresent"
env:
- name: CONSOLE_OPERATOR_MODE

View File

@@ -32,7 +32,7 @@ spec:
spec:
containers:
- name: console
image: 'minio/console:v0.18.1'
image: 'minio/console:v0.19.0'
imagePullPolicy: "IfNotPresent"
env:
- name: CONSOLE_MINIO_SERVER

View File

@@ -1,88 +0,0 @@
// Code generated by go-swagger; DO NOT EDIT.
// This file is part of MinIO Console Server
// Copyright (c) 2022 MinIO, Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
package operator_api
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the generate command
import (
"net/http"
"github.com/go-openapi/runtime/middleware"
"github.com/minio/console/models"
)
// DeleteMPIntegrationHandlerFunc turns a function with the right signature into a delete m p integration handler
type DeleteMPIntegrationHandlerFunc func(DeleteMPIntegrationParams, *models.Principal) middleware.Responder
// Handle executing the request and returning a response
func (fn DeleteMPIntegrationHandlerFunc) Handle(params DeleteMPIntegrationParams, principal *models.Principal) middleware.Responder {
return fn(params, principal)
}
// DeleteMPIntegrationHandler interface for that can handle valid delete m p integration params
type DeleteMPIntegrationHandler interface {
Handle(DeleteMPIntegrationParams, *models.Principal) middleware.Responder
}
// NewDeleteMPIntegration creates a new http.Handler for the delete m p integration operation
func NewDeleteMPIntegration(ctx *middleware.Context, handler DeleteMPIntegrationHandler) *DeleteMPIntegration {
return &DeleteMPIntegration{Context: ctx, Handler: handler}
}
/* DeleteMPIntegration swagger:route DELETE /mp-integration OperatorAPI deleteMPIntegration
Delete email registered for marketplace integration
*/
type DeleteMPIntegration struct {
Context *middleware.Context
Handler DeleteMPIntegrationHandler
}
func (o *DeleteMPIntegration) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
route, rCtx, _ := o.Context.RouteInfo(r)
if rCtx != nil {
*r = *rCtx
}
var Params = NewDeleteMPIntegrationParams()
uprinc, aCtx, err := o.Context.Authorize(r, route)
if err != nil {
o.Context.Respond(rw, r, route.Produces, route, err)
return
}
if aCtx != nil {
*r = *aCtx
}
var principal *models.Principal
if uprinc != nil {
principal = uprinc.(*models.Principal) // this is really a models.Principal, I promise
}
if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
o.Context.Respond(rw, r, route.Produces, route, err)
return
}
res := o.Handler.Handle(Params, principal) // actually handle the request
o.Context.Respond(rw, r, route.Produces, route, res)
}

View File

@@ -1,63 +0,0 @@
// Code generated by go-swagger; DO NOT EDIT.
// This file is part of MinIO Console Server
// Copyright (c) 2022 MinIO, Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
package operator_api
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"net/http"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime/middleware"
)
// NewDeleteMPIntegrationParams creates a new DeleteMPIntegrationParams object
//
// There are no default values defined in the spec.
func NewDeleteMPIntegrationParams() DeleteMPIntegrationParams {
return DeleteMPIntegrationParams{}
}
// DeleteMPIntegrationParams contains all the bound params for the delete m p integration operation
// typically these are obtained from a http.Request
//
// swagger:parameters DeleteMPIntegration
type DeleteMPIntegrationParams struct {
// HTTP Request Object
HTTPRequest *http.Request `json:"-"`
}
// BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface
// for simple values it will use straight method calls.
//
// To ensure default values, the struct must have been initialized with NewDeleteMPIntegrationParams() beforehand.
func (o *DeleteMPIntegrationParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
var res []error
o.HTTPRequest = r
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}

View File

@@ -1,113 +0,0 @@
// Code generated by go-swagger; DO NOT EDIT.
// This file is part of MinIO Console Server
// Copyright (c) 2022 MinIO, Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
package operator_api
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"net/http"
"github.com/go-openapi/runtime"
"github.com/minio/console/models"
)
// DeleteMPIntegrationNoContentCode is the HTTP code returned for type DeleteMPIntegrationNoContent
const DeleteMPIntegrationNoContentCode int = 204
/*DeleteMPIntegrationNoContent A successful response.
swagger:response deleteMPIntegrationNoContent
*/
type DeleteMPIntegrationNoContent struct {
}
// NewDeleteMPIntegrationNoContent creates DeleteMPIntegrationNoContent with default headers values
func NewDeleteMPIntegrationNoContent() *DeleteMPIntegrationNoContent {
return &DeleteMPIntegrationNoContent{}
}
// WriteResponse to the client
func (o *DeleteMPIntegrationNoContent) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
rw.WriteHeader(204)
}
/*DeleteMPIntegrationDefault Generic error response.
swagger:response deleteMPIntegrationDefault
*/
type DeleteMPIntegrationDefault struct {
_statusCode int
/*
In: Body
*/
Payload *models.Error `json:"body,omitempty"`
}
// NewDeleteMPIntegrationDefault creates DeleteMPIntegrationDefault with default headers values
func NewDeleteMPIntegrationDefault(code int) *DeleteMPIntegrationDefault {
if code <= 0 {
code = 500
}
return &DeleteMPIntegrationDefault{
_statusCode: code,
}
}
// WithStatusCode adds the status to the delete m p integration default response
func (o *DeleteMPIntegrationDefault) WithStatusCode(code int) *DeleteMPIntegrationDefault {
o._statusCode = code
return o
}
// SetStatusCode sets the status to the delete m p integration default response
func (o *DeleteMPIntegrationDefault) SetStatusCode(code int) {
o._statusCode = code
}
// WithPayload adds the payload to the delete m p integration default response
func (o *DeleteMPIntegrationDefault) WithPayload(payload *models.Error) *DeleteMPIntegrationDefault {
o.Payload = payload
return o
}
// SetPayload sets the payload to the delete m p integration default response
func (o *DeleteMPIntegrationDefault) SetPayload(payload *models.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *DeleteMPIntegrationDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(o._statusCode)
if o.Payload != nil {
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
}

View File

@@ -1,104 +0,0 @@
// Code generated by go-swagger; DO NOT EDIT.
// This file is part of MinIO Console Server
// Copyright (c) 2022 MinIO, Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
package operator_api
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the generate command
import (
"errors"
"net/url"
golangswaggerpaths "path"
)
// DeleteMPIntegrationURL generates an URL for the delete m p integration operation
type DeleteMPIntegrationURL struct {
_basePath string
}
// WithBasePath sets the base path for this url builder, only required when it's different from the
// base path specified in the swagger spec.
// When the value of the base path is an empty string
func (o *DeleteMPIntegrationURL) WithBasePath(bp string) *DeleteMPIntegrationURL {
o.SetBasePath(bp)
return o
}
// SetBasePath sets the base path for this url builder, only required when it's different from the
// base path specified in the swagger spec.
// When the value of the base path is an empty string
func (o *DeleteMPIntegrationURL) SetBasePath(bp string) {
o._basePath = bp
}
// Build a url path and query string
func (o *DeleteMPIntegrationURL) Build() (*url.URL, error) {
var _result url.URL
var _path = "/mp-integration"
_basePath := o._basePath
if _basePath == "" {
_basePath = "/api/v1"
}
_result.Path = golangswaggerpaths.Join(_basePath, _path)
return &_result, nil
}
// Must is a helper function to panic when the url builder returns an error
func (o *DeleteMPIntegrationURL) Must(u *url.URL, err error) *url.URL {
if err != nil {
panic(err)
}
if u == nil {
panic("url can't be nil")
}
return u
}
// String returns the string representation of the path with query string
func (o *DeleteMPIntegrationURL) String() string {
return o.Must(o.Build()).String()
}
// BuildFull builds a full url with scheme, host, path and query string
func (o *DeleteMPIntegrationURL) BuildFull(scheme, host string) (*url.URL, error) {
if scheme == "" {
return nil, errors.New("scheme is required for a full url on DeleteMPIntegrationURL")
}
if host == "" {
return nil, errors.New("host is required for a full url on DeleteMPIntegrationURL")
}
base, err := o.Build()
if err != nil {
return nil, err
}
base.Scheme = scheme
base.Host = host
return base, nil
}
// StringFull returns the string representation of a complete url
func (o *DeleteMPIntegrationURL) StringFull(scheme, host string) string {
return o.Must(o.BuildFull(scheme, host)).String()
}

View File

@@ -1,88 +0,0 @@
// Code generated by go-swagger; DO NOT EDIT.
// This file is part of MinIO Console Server
// Copyright (c) 2022 MinIO, Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
package operator_api
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the generate command
import (
"net/http"
"github.com/go-openapi/runtime/middleware"
"github.com/minio/console/models"
)
// PatchMPIntegrationHandlerFunc turns a function with the right signature into a patch m p integration handler
type PatchMPIntegrationHandlerFunc func(PatchMPIntegrationParams, *models.Principal) middleware.Responder
// Handle executing the request and returning a response
func (fn PatchMPIntegrationHandlerFunc) Handle(params PatchMPIntegrationParams, principal *models.Principal) middleware.Responder {
return fn(params, principal)
}
// PatchMPIntegrationHandler interface for that can handle valid patch m p integration params
type PatchMPIntegrationHandler interface {
Handle(PatchMPIntegrationParams, *models.Principal) middleware.Responder
}
// NewPatchMPIntegration creates a new http.Handler for the patch m p integration operation
func NewPatchMPIntegration(ctx *middleware.Context, handler PatchMPIntegrationHandler) *PatchMPIntegration {
return &PatchMPIntegration{Context: ctx, Handler: handler}
}
/* PatchMPIntegration swagger:route PATCH /mp-integration OperatorAPI patchMPIntegration
Update email registered for marketplace integration
*/
type PatchMPIntegration struct {
Context *middleware.Context
Handler PatchMPIntegrationHandler
}
func (o *PatchMPIntegration) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
route, rCtx, _ := o.Context.RouteInfo(r)
if rCtx != nil {
*r = *rCtx
}
var Params = NewPatchMPIntegrationParams()
uprinc, aCtx, err := o.Context.Authorize(r, route)
if err != nil {
o.Context.Respond(rw, r, route.Produces, route, err)
return
}
if aCtx != nil {
*r = *aCtx
}
var principal *models.Principal
if uprinc != nil {
principal = uprinc.(*models.Principal) // this is really a models.Principal, I promise
}
if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
o.Context.Respond(rw, r, route.Produces, route, err)
return
}
res := o.Handler.Handle(Params, principal) // actually handle the request
o.Context.Respond(rw, r, route.Produces, route, res)
}

View File

@@ -1,102 +0,0 @@
// Code generated by go-swagger; DO NOT EDIT.
// This file is part of MinIO Console Server
// Copyright (c) 2022 MinIO, Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
package operator_api
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"context"
"io"
"net/http"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
"github.com/go-openapi/runtime/middleware"
"github.com/go-openapi/validate"
"github.com/minio/console/models"
)
// NewPatchMPIntegrationParams creates a new PatchMPIntegrationParams object
//
// There are no default values defined in the spec.
func NewPatchMPIntegrationParams() PatchMPIntegrationParams {
return PatchMPIntegrationParams{}
}
// PatchMPIntegrationParams contains all the bound params for the patch m p integration operation
// typically these are obtained from a http.Request
//
// swagger:parameters PatchMPIntegration
type PatchMPIntegrationParams struct {
// HTTP Request Object
HTTPRequest *http.Request `json:"-"`
/*
Required: true
In: body
*/
Body *models.MpIntegration
}
// BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface
// for simple values it will use straight method calls.
//
// To ensure default values, the struct must have been initialized with NewPatchMPIntegrationParams() beforehand.
func (o *PatchMPIntegrationParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
var res []error
o.HTTPRequest = r
if runtime.HasBody(r) {
defer r.Body.Close()
var body models.MpIntegration
if err := route.Consumer.Consume(r.Body, &body); err != nil {
if err == io.EOF {
res = append(res, errors.Required("body", "body", ""))
} else {
res = append(res, errors.NewParseError("body", "body", "", err))
}
} else {
// validate body object
if err := body.Validate(route.Formats); err != nil {
res = append(res, err)
}
ctx := validate.WithOperationRequest(context.Background())
if err := body.ContextValidate(ctx, route.Formats); err != nil {
res = append(res, err)
}
if len(res) == 0 {
o.Body = &body
}
}
} else {
res = append(res, errors.Required("body", "body", ""))
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}

View File

@@ -1,113 +0,0 @@
// Code generated by go-swagger; DO NOT EDIT.
// This file is part of MinIO Console Server
// Copyright (c) 2022 MinIO, Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
package operator_api
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"net/http"
"github.com/go-openapi/runtime"
"github.com/minio/console/models"
)
// PatchMPIntegrationOKCode is the HTTP code returned for type PatchMPIntegrationOK
const PatchMPIntegrationOKCode int = 200
/*PatchMPIntegrationOK A successful response.
swagger:response patchMPIntegrationOK
*/
type PatchMPIntegrationOK struct {
}
// NewPatchMPIntegrationOK creates PatchMPIntegrationOK with default headers values
func NewPatchMPIntegrationOK() *PatchMPIntegrationOK {
return &PatchMPIntegrationOK{}
}
// WriteResponse to the client
func (o *PatchMPIntegrationOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.Header().Del(runtime.HeaderContentType) //Remove Content-Type on empty responses
rw.WriteHeader(200)
}
/*PatchMPIntegrationDefault Generic error response.
swagger:response patchMPIntegrationDefault
*/
type PatchMPIntegrationDefault struct {
_statusCode int
/*
In: Body
*/
Payload *models.Error `json:"body,omitempty"`
}
// NewPatchMPIntegrationDefault creates PatchMPIntegrationDefault with default headers values
func NewPatchMPIntegrationDefault(code int) *PatchMPIntegrationDefault {
if code <= 0 {
code = 500
}
return &PatchMPIntegrationDefault{
_statusCode: code,
}
}
// WithStatusCode adds the status to the patch m p integration default response
func (o *PatchMPIntegrationDefault) WithStatusCode(code int) *PatchMPIntegrationDefault {
o._statusCode = code
return o
}
// SetStatusCode sets the status to the patch m p integration default response
func (o *PatchMPIntegrationDefault) SetStatusCode(code int) {
o._statusCode = code
}
// WithPayload adds the payload to the patch m p integration default response
func (o *PatchMPIntegrationDefault) WithPayload(payload *models.Error) *PatchMPIntegrationDefault {
o.Payload = payload
return o
}
// SetPayload sets the payload to the patch m p integration default response
func (o *PatchMPIntegrationDefault) SetPayload(payload *models.Error) {
o.Payload = payload
}
// WriteResponse to the client
func (o *PatchMPIntegrationDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(o._statusCode)
if o.Payload != nil {
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
}

View File

@@ -1,104 +0,0 @@
// Code generated by go-swagger; DO NOT EDIT.
// This file is part of MinIO Console Server
// Copyright (c) 2022 MinIO, Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
package operator_api
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the generate command
import (
"errors"
"net/url"
golangswaggerpaths "path"
)
// PatchMPIntegrationURL generates an URL for the patch m p integration operation
type PatchMPIntegrationURL struct {
_basePath string
}
// WithBasePath sets the base path for this url builder, only required when it's different from the
// base path specified in the swagger spec.
// When the value of the base path is an empty string
func (o *PatchMPIntegrationURL) WithBasePath(bp string) *PatchMPIntegrationURL {
o.SetBasePath(bp)
return o
}
// SetBasePath sets the base path for this url builder, only required when it's different from the
// base path specified in the swagger spec.
// When the value of the base path is an empty string
func (o *PatchMPIntegrationURL) SetBasePath(bp string) {
o._basePath = bp
}
// Build a url path and query string
func (o *PatchMPIntegrationURL) Build() (*url.URL, error) {
var _result url.URL
var _path = "/mp-integration"
_basePath := o._basePath
if _basePath == "" {
_basePath = "/api/v1"
}
_result.Path = golangswaggerpaths.Join(_basePath, _path)
return &_result, nil
}
// Must is a helper function to panic when the url builder returns an error
func (o *PatchMPIntegrationURL) Must(u *url.URL, err error) *url.URL {
if err != nil {
panic(err)
}
if u == nil {
panic("url can't be nil")
}
return u
}
// String returns the string representation of the path with query string
func (o *PatchMPIntegrationURL) String() string {
return o.Must(o.Build()).String()
}
// BuildFull builds a full url with scheme, host, path and query string
func (o *PatchMPIntegrationURL) BuildFull(scheme, host string) (*url.URL, error) {
if scheme == "" {
return nil, errors.New("scheme is required for a full url on PatchMPIntegrationURL")
}
if host == "" {
return nil, errors.New("host is required for a full url on PatchMPIntegrationURL")
}
base, err := o.Build()
if err != nil {
return nil, err
}
base.Scheme = scheme
base.Host = host
return base, nil
}
// StringFull returns the string representation of a complete url
func (o *PatchMPIntegrationURL) StringFull(scheme, host string) string {
return o.Must(o.BuildFull(scheme, host)).String()
}

View File

@@ -1,128 +1,126 @@
{
"files": {
"main.css": "./static/css/main.90d417ae.css",
"main.js": "./static/js/main.efb70fdf.js",
"static/js/2483.fc3f6e02.chunk.js": "./static/js/2483.fc3f6e02.chunk.js",
"static/js/6914.c9671304.chunk.js": "./static/js/6914.c9671304.chunk.js",
"static/js/4209.1785b76b.chunk.js": "./static/js/4209.1785b76b.chunk.js",
"static/js/1829.082a42b0.chunk.js": "./static/js/1829.082a42b0.chunk.js",
"static/js/4455.62d5739d.chunk.js": "./static/js/4455.62d5739d.chunk.js",
"static/js/5088.43224960.chunk.js": "./static/js/5088.43224960.chunk.js",
"static/js/5140.e9043b63.chunk.js": "./static/js/5140.e9043b63.chunk.js",
"static/js/5997.78c91d41.chunk.js": "./static/js/5997.78c91d41.chunk.js",
"main.css": "./static/css/main.86370216.css",
"main.js": "./static/js/main.5dc94654.js",
"static/js/2483.8f3adc20.chunk.js": "./static/js/2483.8f3adc20.chunk.js",
"static/js/6914.ed2f1662.chunk.js": "./static/js/6914.ed2f1662.chunk.js",
"static/js/4209.4dac93b8.chunk.js": "./static/js/4209.4dac93b8.chunk.js",
"static/js/1829.60bc8756.chunk.js": "./static/js/1829.60bc8756.chunk.js",
"static/js/4455.596f5a0d.chunk.js": "./static/js/4455.596f5a0d.chunk.js",
"static/js/5088.ab7422bd.chunk.js": "./static/js/5088.ab7422bd.chunk.js",
"static/js/5140.b1dd0e23.chunk.js": "./static/js/5140.b1dd0e23.chunk.js",
"static/js/5997.3eaf5ca8.chunk.js": "./static/js/5997.3eaf5ca8.chunk.js",
"static/js/3176.43953acc.chunk.js": "./static/js/3176.43953acc.chunk.js",
"static/js/6137.7c3483b1.chunk.js": "./static/js/6137.7c3483b1.chunk.js",
"static/js/7045.ca5a5aae.chunk.js": "./static/js/7045.ca5a5aae.chunk.js",
"static/js/9251.6b7b3ee3.chunk.js": "./static/js/9251.6b7b3ee3.chunk.js",
"static/js/2338.edf0a361.chunk.js": "./static/js/2338.edf0a361.chunk.js",
"static/js/4335.8f37144a.chunk.js": "./static/js/4335.8f37144a.chunk.js",
"static/js/3061.5a2c926b.chunk.js": "./static/js/3061.5a2c926b.chunk.js",
"static/js/6763.e408c6ad.chunk.js": "./static/js/6763.e408c6ad.chunk.js",
"static/js/3543.e36f8103.chunk.js": "./static/js/3543.e36f8103.chunk.js",
"static/js/4061.18b19aa0.chunk.js": "./static/js/4061.18b19aa0.chunk.js",
"static/js/2249.d85d7c19.chunk.js": "./static/js/2249.d85d7c19.chunk.js",
"static/js/6137.2c486126.chunk.js": "./static/js/6137.2c486126.chunk.js",
"static/js/7045.bc049940.chunk.js": "./static/js/7045.bc049940.chunk.js",
"static/js/9251.597ed6d4.chunk.js": "./static/js/9251.597ed6d4.chunk.js",
"static/js/2338.560e15ee.chunk.js": "./static/js/2338.560e15ee.chunk.js",
"static/js/4335.aee4836f.chunk.js": "./static/js/4335.aee4836f.chunk.js",
"static/js/3061.58945a60.chunk.js": "./static/js/3061.58945a60.chunk.js",
"static/js/6763.7139c196.chunk.js": "./static/js/6763.7139c196.chunk.js",
"static/js/3543.81cc7db0.chunk.js": "./static/js/3543.81cc7db0.chunk.js",
"static/js/4061.1838118a.chunk.js": "./static/js/4061.1838118a.chunk.js",
"static/js/5112.75a42f1e.chunk.js": "./static/js/5112.75a42f1e.chunk.js",
"static/js/9611.c217768e.chunk.js": "./static/js/9611.c217768e.chunk.js",
"static/js/2637.4946ae96.chunk.js": "./static/js/2637.4946ae96.chunk.js",
"static/css/5503.d0badeac.chunk.css": "./static/css/5503.d0badeac.chunk.css",
"static/js/5503.5d36120f.chunk.js": "./static/js/5503.5d36120f.chunk.js",
"static/js/5926.1ba3b5eb.chunk.js": "./static/js/5926.1ba3b5eb.chunk.js",
"static/js/701.1602597e.chunk.js": "./static/js/701.1602597e.chunk.js",
"static/js/7821.060b10cd.chunk.js": "./static/js/7821.060b10cd.chunk.js",
"static/css/2850.d0badeac.chunk.css": "./static/css/2850.d0badeac.chunk.css",
"static/js/2850.e1485c70.chunk.js": "./static/js/2850.e1485c70.chunk.js",
"static/js/1182.f9bcec67.chunk.js": "./static/js/1182.f9bcec67.chunk.js",
"static/css/343.d0badeac.chunk.css": "./static/css/343.d0badeac.chunk.css",
"static/js/343.9bef5ddd.chunk.js": "./static/js/343.9bef5ddd.chunk.js",
"static/css/1199.d0badeac.chunk.css": "./static/css/1199.d0badeac.chunk.css",
"static/js/1199.84ef2065.chunk.js": "./static/js/1199.84ef2065.chunk.js",
"static/css/8614.d0badeac.chunk.css": "./static/css/8614.d0badeac.chunk.css",
"static/js/8614.e007e045.chunk.js": "./static/js/8614.e007e045.chunk.js",
"static/css/1395.d0badeac.chunk.css": "./static/css/1395.d0badeac.chunk.css",
"static/js/1395.f8a4acb9.chunk.js": "./static/js/1395.f8a4acb9.chunk.js",
"static/js/2555.bce2711c.chunk.js": "./static/js/2555.bce2711c.chunk.js",
"static/js/7585.23c3cb6d.chunk.js": "./static/js/7585.23c3cb6d.chunk.js",
"static/js/4847.7c89dc57.chunk.js": "./static/js/4847.7c89dc57.chunk.js",
"static/js/4653.04094e61.chunk.js": "./static/js/4653.04094e61.chunk.js",
"static/js/692.c8593ab8.chunk.js": "./static/js/692.c8593ab8.chunk.js",
"static/js/8626.7ac959a6.chunk.js": "./static/js/8626.7ac959a6.chunk.js",
"static/js/736.30689e5a.chunk.js": "./static/js/736.30689e5a.chunk.js",
"static/js/6577.451bf5a2.chunk.js": "./static/js/6577.451bf5a2.chunk.js",
"static/js/9561.2fa4c7be.chunk.js": "./static/js/9561.2fa4c7be.chunk.js",
"static/js/4394.9b95db79.chunk.js": "./static/js/4394.9b95db79.chunk.js",
"static/js/2637.f268b356.chunk.js": "./static/js/2637.f268b356.chunk.js",
"static/css/5503.90c9cdc7.chunk.css": "./static/css/5503.90c9cdc7.chunk.css",
"static/js/5503.26259a48.chunk.js": "./static/js/5503.26259a48.chunk.js",
"static/js/5926.0f643f13.chunk.js": "./static/js/5926.0f643f13.chunk.js",
"static/js/701.81a53820.chunk.js": "./static/js/701.81a53820.chunk.js",
"static/js/7821.d4f43f1a.chunk.js": "./static/js/7821.d4f43f1a.chunk.js",
"static/css/2850.90c9cdc7.chunk.css": "./static/css/2850.90c9cdc7.chunk.css",
"static/js/2850.cca8a24d.chunk.js": "./static/js/2850.cca8a24d.chunk.js",
"static/js/1182.cd571ded.chunk.js": "./static/js/1182.cd571ded.chunk.js",
"static/css/343.90c9cdc7.chunk.css": "./static/css/343.90c9cdc7.chunk.css",
"static/js/343.e9d1a353.chunk.js": "./static/js/343.e9d1a353.chunk.js",
"static/css/1199.90c9cdc7.chunk.css": "./static/css/1199.90c9cdc7.chunk.css",
"static/js/1199.6d35fa41.chunk.js": "./static/js/1199.6d35fa41.chunk.js",
"static/css/5517.90c9cdc7.chunk.css": "./static/css/5517.90c9cdc7.chunk.css",
"static/js/5517.bac46ad0.chunk.js": "./static/js/5517.bac46ad0.chunk.js",
"static/js/2555.d184ba4d.chunk.js": "./static/js/2555.d184ba4d.chunk.js",
"static/js/7585.38a7a791.chunk.js": "./static/js/7585.38a7a791.chunk.js",
"static/js/4847.6f54ff1c.chunk.js": "./static/js/4847.6f54ff1c.chunk.js",
"static/js/4653.3327f6b5.chunk.js": "./static/js/4653.3327f6b5.chunk.js",
"static/js/692.54f42c01.chunk.js": "./static/js/692.54f42c01.chunk.js",
"static/js/8626.e7ffb00f.chunk.js": "./static/js/8626.e7ffb00f.chunk.js",
"static/js/736.86840c49.chunk.js": "./static/js/736.86840c49.chunk.js",
"static/js/6577.200d8901.chunk.js": "./static/js/6577.200d8901.chunk.js",
"static/js/9561.291ccf9d.chunk.js": "./static/js/9561.291ccf9d.chunk.js",
"static/js/4394.d1cae66d.chunk.js": "./static/js/4394.d1cae66d.chunk.js",
"static/js/4781.f4794912.chunk.js": "./static/js/4781.f4794912.chunk.js",
"static/js/9478.dca1d314.chunk.js": "./static/js/9478.dca1d314.chunk.js",
"static/js/7164.3762a0c0.chunk.js": "./static/js/7164.3762a0c0.chunk.js",
"static/js/4414.d499a576.chunk.js": "./static/js/4414.d499a576.chunk.js",
"static/js/7798.4523255f.chunk.js": "./static/js/7798.4523255f.chunk.js",
"static/js/8833.435c57c9.chunk.js": "./static/js/8833.435c57c9.chunk.js",
"static/js/471.468250ea.chunk.js": "./static/js/471.468250ea.chunk.js",
"static/js/4414.4963fc41.chunk.js": "./static/js/4414.4963fc41.chunk.js",
"static/js/7798.b6480ddb.chunk.js": "./static/js/7798.b6480ddb.chunk.js",
"static/js/8833.24981129.chunk.js": "./static/js/8833.24981129.chunk.js",
"static/js/471.e0097193.chunk.js": "./static/js/471.e0097193.chunk.js",
"static/js/483.96dc1806.chunk.js": "./static/js/483.96dc1806.chunk.js",
"static/js/9467.89303883.chunk.js": "./static/js/9467.89303883.chunk.js",
"static/js/6895.a780402b.chunk.js": "./static/js/6895.a780402b.chunk.js",
"static/js/7925.17b70ce9.chunk.js": "./static/js/7925.17b70ce9.chunk.js",
"static/js/6331.4b9c378c.chunk.js": "./static/js/6331.4b9c378c.chunk.js",
"static/js/4133.e423ad64.chunk.js": "./static/js/4133.e423ad64.chunk.js",
"static/css/1367.d0badeac.chunk.css": "./static/css/1367.d0badeac.chunk.css",
"static/js/1367.570f471e.chunk.js": "./static/js/1367.570f471e.chunk.js",
"static/js/3956.04add457.chunk.js": "./static/js/3956.04add457.chunk.js",
"static/js/9221.74babab3.chunk.js": "./static/js/9221.74babab3.chunk.js",
"static/js/8896.a985f858.chunk.js": "./static/js/8896.a985f858.chunk.js",
"static/js/9134.9bb207a3.chunk.js": "./static/js/9134.9bb207a3.chunk.js",
"static/css/1268.d0badeac.chunk.css": "./static/css/1268.d0badeac.chunk.css",
"static/js/1268.444486ab.chunk.js": "./static/js/1268.444486ab.chunk.js",
"static/js/1030.d7679dcf.chunk.js": "./static/js/1030.d7679dcf.chunk.js",
"static/js/9145.d907d493.chunk.js": "./static/js/9145.d907d493.chunk.js",
"static/js/1379.ed19d5b2.chunk.js": "./static/js/1379.ed19d5b2.chunk.js",
"static/js/1501.82aa601c.chunk.js": "./static/js/1501.82aa601c.chunk.js",
"static/js/9605.0d9d8909.chunk.js": "./static/js/9605.0d9d8909.chunk.js",
"static/js/426.31bab58a.chunk.js": "./static/js/426.31bab58a.chunk.js",
"static/js/4298.cc4b772e.chunk.js": "./static/js/4298.cc4b772e.chunk.js",
"static/js/2878.f17e395f.chunk.js": "./static/js/2878.f17e395f.chunk.js",
"static/js/8495.71a61743.chunk.js": "./static/js/8495.71a61743.chunk.js",
"static/js/4934.064b787d.chunk.js": "./static/js/4934.064b787d.chunk.js",
"static/js/9942.51a9de47.chunk.js": "./static/js/9942.51a9de47.chunk.js",
"static/js/7021.148329a1.chunk.js": "./static/js/7021.148329a1.chunk.js",
"static/js/2684.ff523cc8.chunk.js": "./static/js/2684.ff523cc8.chunk.js",
"static/js/6683.ee501f75.chunk.js": "./static/js/6683.ee501f75.chunk.js",
"static/js/8350.8858e924.chunk.js": "./static/js/8350.8858e924.chunk.js",
"static/js/4873.ab307a49.chunk.js": "./static/js/4873.ab307a49.chunk.js",
"static/js/9449.27ca290f.chunk.js": "./static/js/9449.27ca290f.chunk.js",
"static/js/7659.425b0e4f.chunk.js": "./static/js/7659.425b0e4f.chunk.js",
"static/js/9968.10689a81.chunk.js": "./static/js/9968.10689a81.chunk.js",
"static/js/2180.d8b0a783.chunk.js": "./static/js/2180.d8b0a783.chunk.js",
"static/js/8253.78199b7c.chunk.js": "./static/js/8253.78199b7c.chunk.js",
"static/js/3328.d653fd74.chunk.js": "./static/js/3328.d653fd74.chunk.js",
"static/js/1440.e5771fc7.chunk.js": "./static/js/1440.e5771fc7.chunk.js",
"static/js/9179.4664c118.chunk.js": "./static/js/9179.4664c118.chunk.js",
"static/js/51.fe31a1b5.chunk.js": "./static/js/51.fe31a1b5.chunk.js",
"static/js/711.29c4e77f.chunk.js": "./static/js/711.29c4e77f.chunk.js",
"static/js/6901.0d9858c2.chunk.js": "./static/js/6901.0d9858c2.chunk.js",
"static/js/2185.a4530a2b.chunk.js": "./static/js/2185.a4530a2b.chunk.js",
"static/js/312.b28428a0.chunk.js": "./static/js/312.b28428a0.chunk.js",
"static/js/2112.d99282a3.chunk.js": "./static/js/2112.d99282a3.chunk.js",
"static/js/4619.774f2ac4.chunk.js": "./static/js/4619.774f2ac4.chunk.js",
"static/js/8990.1d656f02.chunk.js": "./static/js/8990.1d656f02.chunk.js",
"static/js/8455.c317ba9a.chunk.js": "./static/js/8455.c317ba9a.chunk.js",
"static/css/1913.d0badeac.chunk.css": "./static/css/1913.d0badeac.chunk.css",
"static/js/1913.cea66f73.chunk.js": "./static/js/1913.cea66f73.chunk.js",
"static/js/1604.c298cecf.chunk.js": "./static/js/1604.c298cecf.chunk.js",
"static/js/8391.024d90c0.chunk.js": "./static/js/8391.024d90c0.chunk.js",
"static/js/402.aec3e2df.chunk.js": "./static/js/402.aec3e2df.chunk.js",
"static/js/1705.58e59f26.chunk.js": "./static/js/1705.58e59f26.chunk.js",
"static/js/1581.b3df67cf.chunk.js": "./static/js/1581.b3df67cf.chunk.js",
"static/js/455.13bb7aa6.chunk.js": "./static/js/455.13bb7aa6.chunk.js",
"static/js/2661.10751b4b.chunk.js": "./static/js/2661.10751b4b.chunk.js",
"static/js/889.2a763545.chunk.js": "./static/js/889.2a763545.chunk.js",
"static/js/9088.8b721a73.chunk.js": "./static/js/9088.8b721a73.chunk.js",
"static/js/247.b749bae6.chunk.js": "./static/js/247.b749bae6.chunk.js",
"static/js/2763.700b8a36.chunk.js": "./static/js/2763.700b8a36.chunk.js",
"static/js/9467.f80c8cc9.chunk.js": "./static/js/9467.f80c8cc9.chunk.js",
"static/js/6895.747b46a8.chunk.js": "./static/js/6895.747b46a8.chunk.js",
"static/js/7925.29ca8fac.chunk.js": "./static/js/7925.29ca8fac.chunk.js",
"static/js/6331.fcfff663.chunk.js": "./static/js/6331.fcfff663.chunk.js",
"static/js/4133.d578498b.chunk.js": "./static/js/4133.d578498b.chunk.js",
"static/css/1367.90c9cdc7.chunk.css": "./static/css/1367.90c9cdc7.chunk.css",
"static/js/1367.69870fc1.chunk.js": "./static/js/1367.69870fc1.chunk.js",
"static/js/3956.aa532678.chunk.js": "./static/js/3956.aa532678.chunk.js",
"static/js/9221.5fe353b7.chunk.js": "./static/js/9221.5fe353b7.chunk.js",
"static/js/8896.3cbf9873.chunk.js": "./static/js/8896.3cbf9873.chunk.js",
"static/js/9134.3cd624c6.chunk.js": "./static/js/9134.3cd624c6.chunk.js",
"static/css/1268.90c9cdc7.chunk.css": "./static/css/1268.90c9cdc7.chunk.css",
"static/js/1268.d8119a92.chunk.js": "./static/js/1268.d8119a92.chunk.js",
"static/js/1030.38e91f62.chunk.js": "./static/js/1030.38e91f62.chunk.js",
"static/js/9145.82dff7c3.chunk.js": "./static/js/9145.82dff7c3.chunk.js",
"static/js/1379.405ea3e4.chunk.js": "./static/js/1379.405ea3e4.chunk.js",
"static/js/1501.d87ade72.chunk.js": "./static/js/1501.d87ade72.chunk.js",
"static/js/9605.249d1f92.chunk.js": "./static/js/9605.249d1f92.chunk.js",
"static/js/426.9fd80f88.chunk.js": "./static/js/426.9fd80f88.chunk.js",
"static/js/4298.e8216a7e.chunk.js": "./static/js/4298.e8216a7e.chunk.js",
"static/js/2878.718f713f.chunk.js": "./static/js/2878.718f713f.chunk.js",
"static/js/8495.b1689c2d.chunk.js": "./static/js/8495.b1689c2d.chunk.js",
"static/js/4934.72071d47.chunk.js": "./static/js/4934.72071d47.chunk.js",
"static/js/9942.406de82c.chunk.js": "./static/js/9942.406de82c.chunk.js",
"static/js/7021.6d31f973.chunk.js": "./static/js/7021.6d31f973.chunk.js",
"static/js/2684.0cd690ab.chunk.js": "./static/js/2684.0cd690ab.chunk.js",
"static/js/6683.f9402dc8.chunk.js": "./static/js/6683.f9402dc8.chunk.js",
"static/js/8350.1cbb8449.chunk.js": "./static/js/8350.1cbb8449.chunk.js",
"static/js/4873.4e512648.chunk.js": "./static/js/4873.4e512648.chunk.js",
"static/js/9449.2b80f120.chunk.js": "./static/js/9449.2b80f120.chunk.js",
"static/js/7659.28807a59.chunk.js": "./static/js/7659.28807a59.chunk.js",
"static/js/9968.5a32c7f4.chunk.js": "./static/js/9968.5a32c7f4.chunk.js",
"static/js/2180.03cd0c4b.chunk.js": "./static/js/2180.03cd0c4b.chunk.js",
"static/js/8253.ec0f3d9f.chunk.js": "./static/js/8253.ec0f3d9f.chunk.js",
"static/js/3328.2f4736e4.chunk.js": "./static/js/3328.2f4736e4.chunk.js",
"static/js/1440.b9a2f19f.chunk.js": "./static/js/1440.b9a2f19f.chunk.js",
"static/js/9179.92561ffe.chunk.js": "./static/js/9179.92561ffe.chunk.js",
"static/js/51.8ddd5a19.chunk.js": "./static/js/51.8ddd5a19.chunk.js",
"static/js/711.e9b969b9.chunk.js": "./static/js/711.e9b969b9.chunk.js",
"static/js/6901.6bc2bcd9.chunk.js": "./static/js/6901.6bc2bcd9.chunk.js",
"static/js/2185.0a99016d.chunk.js": "./static/js/2185.0a99016d.chunk.js",
"static/js/312.7e5dc1cb.chunk.js": "./static/js/312.7e5dc1cb.chunk.js",
"static/js/2112.10f63a9c.chunk.js": "./static/js/2112.10f63a9c.chunk.js",
"static/js/4619.eaf126cc.chunk.js": "./static/js/4619.eaf126cc.chunk.js",
"static/js/8990.ffebdc52.chunk.js": "./static/js/8990.ffebdc52.chunk.js",
"static/js/8455.828f0717.chunk.js": "./static/js/8455.828f0717.chunk.js",
"static/css/1913.90c9cdc7.chunk.css": "./static/css/1913.90c9cdc7.chunk.css",
"static/js/1913.40a1e517.chunk.js": "./static/js/1913.40a1e517.chunk.js",
"static/js/1604.25690eb1.chunk.js": "./static/js/1604.25690eb1.chunk.js",
"static/js/8391.2dea5c99.chunk.js": "./static/js/8391.2dea5c99.chunk.js",
"static/js/402.89c71117.chunk.js": "./static/js/402.89c71117.chunk.js",
"static/js/1705.32ce00fc.chunk.js": "./static/js/1705.32ce00fc.chunk.js",
"static/js/1581.fb295899.chunk.js": "./static/js/1581.fb295899.chunk.js",
"static/js/455.b19f8a8b.chunk.js": "./static/js/455.b19f8a8b.chunk.js",
"static/js/2661.04f9b92d.chunk.js": "./static/js/2661.04f9b92d.chunk.js",
"static/js/889.7a5661d6.chunk.js": "./static/js/889.7a5661d6.chunk.js",
"static/js/9088.741a3fa1.chunk.js": "./static/js/9088.741a3fa1.chunk.js",
"static/js/247.b3d65df3.chunk.js": "./static/js/247.b3d65df3.chunk.js",
"static/js/2763.71344b5a.chunk.js": "./static/js/2763.71344b5a.chunk.js",
"static/js/5171.e8fc646a.chunk.js": "./static/js/5171.e8fc646a.chunk.js",
"static/js/2426.a889403c.chunk.js": "./static/js/2426.a889403c.chunk.js",
"static/js/3762.52bd15d3.chunk.js": "./static/js/3762.52bd15d3.chunk.js",
"static/js/5561.80af3962.chunk.js": "./static/js/5561.80af3962.chunk.js",
"static/js/3762.52bd15d3.chunk.js": "./static/js/3762.52bd15d3.chunk.js",
"static/js/3801.64b6e473.chunk.js": "./static/js/3801.64b6e473.chunk.js",
"static/js/1918.4309a619.chunk.js": "./static/js/1918.4309a619.chunk.js",
"static/js/6523.fb65841b.chunk.js": "./static/js/6523.fb65841b.chunk.js",
"static/js/1373.c65e2a03.chunk.js": "./static/js/1373.c65e2a03.chunk.js",
"static/js/6431.5f2e5e6e.chunk.js": "./static/js/6431.5f2e5e6e.chunk.js",
"static/js/2011.f505a73d.chunk.js": "./static/js/2011.f505a73d.chunk.js",
"static/js/1416.8f4d72a9.chunk.js": "./static/js/1416.8f4d72a9.chunk.js",
@@ -132,143 +130,141 @@
"static/js/6172.b49c709f.chunk.js": "./static/js/6172.b49c709f.chunk.js",
"static/js/6852.10dc5cb9.chunk.js": "./static/js/6852.10dc5cb9.chunk.js",
"static/js/3388.f53bd1d3.chunk.js": "./static/js/3388.f53bd1d3.chunk.js",
"static/js/7576.5695ff4d.chunk.js": "./static/js/7576.5695ff4d.chunk.js",
"static/js/7576.7eab0ac3.chunk.js": "./static/js/7576.7eab0ac3.chunk.js",
"static/js/7002.4064675c.chunk.js": "./static/js/7002.4064675c.chunk.js",
"static/js/6484.3a2447c1.chunk.js": "./static/js/6484.3a2447c1.chunk.js",
"static/js/8138.45bff0ff.chunk.js": "./static/js/8138.45bff0ff.chunk.js",
"static/js/7142.4191cc91.chunk.js": "./static/js/7142.4191cc91.chunk.js",
"static/js/7923.f624f038.chunk.js": "./static/js/7923.f624f038.chunk.js",
"static/js/9785.7383f4d2.chunk.js": "./static/js/9785.7383f4d2.chunk.js",
"static/js/8735.bf97f464.chunk.js": "./static/js/8735.bf97f464.chunk.js",
"static/js/63.c9bf3400.chunk.js": "./static/js/63.c9bf3400.chunk.js",
"static/js/264.58e9bb70.chunk.js": "./static/js/264.58e9bb70.chunk.js",
"static/js/8959.f30c25e0.chunk.js": "./static/js/8959.f30c25e0.chunk.js",
"static/js/2983.689a9d39.chunk.js": "./static/js/2983.689a9d39.chunk.js",
"static/js/5289.649f8767.chunk.js": "./static/js/5289.649f8767.chunk.js",
"static/js/5026.69171baa.chunk.js": "./static/js/5026.69171baa.chunk.js",
"static/js/2983.cc2b6b9b.chunk.js": "./static/js/2983.cc2b6b9b.chunk.js",
"static/js/5289.faddab03.chunk.js": "./static/js/5289.faddab03.chunk.js",
"static/js/5026.fb284fc6.chunk.js": "./static/js/5026.fb284fc6.chunk.js",
"index.html": "./index.html",
"main.90d417ae.css.map": "./static/css/main.90d417ae.css.map",
"main.efb70fdf.js.map": "./static/js/main.efb70fdf.js.map",
"2483.fc3f6e02.chunk.js.map": "./static/js/2483.fc3f6e02.chunk.js.map",
"6914.c9671304.chunk.js.map": "./static/js/6914.c9671304.chunk.js.map",
"4209.1785b76b.chunk.js.map": "./static/js/4209.1785b76b.chunk.js.map",
"1829.082a42b0.chunk.js.map": "./static/js/1829.082a42b0.chunk.js.map",
"4455.62d5739d.chunk.js.map": "./static/js/4455.62d5739d.chunk.js.map",
"5088.43224960.chunk.js.map": "./static/js/5088.43224960.chunk.js.map",
"5140.e9043b63.chunk.js.map": "./static/js/5140.e9043b63.chunk.js.map",
"5997.78c91d41.chunk.js.map": "./static/js/5997.78c91d41.chunk.js.map",
"main.86370216.css.map": "./static/css/main.86370216.css.map",
"main.5dc94654.js.map": "./static/js/main.5dc94654.js.map",
"2483.8f3adc20.chunk.js.map": "./static/js/2483.8f3adc20.chunk.js.map",
"6914.ed2f1662.chunk.js.map": "./static/js/6914.ed2f1662.chunk.js.map",
"4209.4dac93b8.chunk.js.map": "./static/js/4209.4dac93b8.chunk.js.map",
"1829.60bc8756.chunk.js.map": "./static/js/1829.60bc8756.chunk.js.map",
"4455.596f5a0d.chunk.js.map": "./static/js/4455.596f5a0d.chunk.js.map",
"5088.ab7422bd.chunk.js.map": "./static/js/5088.ab7422bd.chunk.js.map",
"5140.b1dd0e23.chunk.js.map": "./static/js/5140.b1dd0e23.chunk.js.map",
"5997.3eaf5ca8.chunk.js.map": "./static/js/5997.3eaf5ca8.chunk.js.map",
"3176.43953acc.chunk.js.map": "./static/js/3176.43953acc.chunk.js.map",
"6137.7c3483b1.chunk.js.map": "./static/js/6137.7c3483b1.chunk.js.map",
"7045.ca5a5aae.chunk.js.map": "./static/js/7045.ca5a5aae.chunk.js.map",
"9251.6b7b3ee3.chunk.js.map": "./static/js/9251.6b7b3ee3.chunk.js.map",
"2338.edf0a361.chunk.js.map": "./static/js/2338.edf0a361.chunk.js.map",
"4335.8f37144a.chunk.js.map": "./static/js/4335.8f37144a.chunk.js.map",
"3061.5a2c926b.chunk.js.map": "./static/js/3061.5a2c926b.chunk.js.map",
"6763.e408c6ad.chunk.js.map": "./static/js/6763.e408c6ad.chunk.js.map",
"3543.e36f8103.chunk.js.map": "./static/js/3543.e36f8103.chunk.js.map",
"4061.18b19aa0.chunk.js.map": "./static/js/4061.18b19aa0.chunk.js.map",
"2249.d85d7c19.chunk.js.map": "./static/js/2249.d85d7c19.chunk.js.map",
"6137.2c486126.chunk.js.map": "./static/js/6137.2c486126.chunk.js.map",
"7045.bc049940.chunk.js.map": "./static/js/7045.bc049940.chunk.js.map",
"9251.597ed6d4.chunk.js.map": "./static/js/9251.597ed6d4.chunk.js.map",
"2338.560e15ee.chunk.js.map": "./static/js/2338.560e15ee.chunk.js.map",
"4335.aee4836f.chunk.js.map": "./static/js/4335.aee4836f.chunk.js.map",
"3061.58945a60.chunk.js.map": "./static/js/3061.58945a60.chunk.js.map",
"6763.7139c196.chunk.js.map": "./static/js/6763.7139c196.chunk.js.map",
"3543.81cc7db0.chunk.js.map": "./static/js/3543.81cc7db0.chunk.js.map",
"4061.1838118a.chunk.js.map": "./static/js/4061.1838118a.chunk.js.map",
"5112.75a42f1e.chunk.js.map": "./static/js/5112.75a42f1e.chunk.js.map",
"9611.c217768e.chunk.js.map": "./static/js/9611.c217768e.chunk.js.map",
"2637.4946ae96.chunk.js.map": "./static/js/2637.4946ae96.chunk.js.map",
"5503.d0badeac.chunk.css.map": "./static/css/5503.d0badeac.chunk.css.map",
"5503.5d36120f.chunk.js.map": "./static/js/5503.5d36120f.chunk.js.map",
"5926.1ba3b5eb.chunk.js.map": "./static/js/5926.1ba3b5eb.chunk.js.map",
"701.1602597e.chunk.js.map": "./static/js/701.1602597e.chunk.js.map",
"7821.060b10cd.chunk.js.map": "./static/js/7821.060b10cd.chunk.js.map",
"2850.d0badeac.chunk.css.map": "./static/css/2850.d0badeac.chunk.css.map",
"2850.e1485c70.chunk.js.map": "./static/js/2850.e1485c70.chunk.js.map",
"1182.f9bcec67.chunk.js.map": "./static/js/1182.f9bcec67.chunk.js.map",
"343.d0badeac.chunk.css.map": "./static/css/343.d0badeac.chunk.css.map",
"343.9bef5ddd.chunk.js.map": "./static/js/343.9bef5ddd.chunk.js.map",
"1199.d0badeac.chunk.css.map": "./static/css/1199.d0badeac.chunk.css.map",
"1199.84ef2065.chunk.js.map": "./static/js/1199.84ef2065.chunk.js.map",
"8614.d0badeac.chunk.css.map": "./static/css/8614.d0badeac.chunk.css.map",
"8614.e007e045.chunk.js.map": "./static/js/8614.e007e045.chunk.js.map",
"1395.d0badeac.chunk.css.map": "./static/css/1395.d0badeac.chunk.css.map",
"1395.f8a4acb9.chunk.js.map": "./static/js/1395.f8a4acb9.chunk.js.map",
"2555.bce2711c.chunk.js.map": "./static/js/2555.bce2711c.chunk.js.map",
"7585.23c3cb6d.chunk.js.map": "./static/js/7585.23c3cb6d.chunk.js.map",
"4847.7c89dc57.chunk.js.map": "./static/js/4847.7c89dc57.chunk.js.map",
"4653.04094e61.chunk.js.map": "./static/js/4653.04094e61.chunk.js.map",
"692.c8593ab8.chunk.js.map": "./static/js/692.c8593ab8.chunk.js.map",
"8626.7ac959a6.chunk.js.map": "./static/js/8626.7ac959a6.chunk.js.map",
"736.30689e5a.chunk.js.map": "./static/js/736.30689e5a.chunk.js.map",
"6577.451bf5a2.chunk.js.map": "./static/js/6577.451bf5a2.chunk.js.map",
"9561.2fa4c7be.chunk.js.map": "./static/js/9561.2fa4c7be.chunk.js.map",
"4394.9b95db79.chunk.js.map": "./static/js/4394.9b95db79.chunk.js.map",
"2637.f268b356.chunk.js.map": "./static/js/2637.f268b356.chunk.js.map",
"5503.90c9cdc7.chunk.css.map": "./static/css/5503.90c9cdc7.chunk.css.map",
"5503.26259a48.chunk.js.map": "./static/js/5503.26259a48.chunk.js.map",
"5926.0f643f13.chunk.js.map": "./static/js/5926.0f643f13.chunk.js.map",
"701.81a53820.chunk.js.map": "./static/js/701.81a53820.chunk.js.map",
"7821.d4f43f1a.chunk.js.map": "./static/js/7821.d4f43f1a.chunk.js.map",
"2850.90c9cdc7.chunk.css.map": "./static/css/2850.90c9cdc7.chunk.css.map",
"2850.cca8a24d.chunk.js.map": "./static/js/2850.cca8a24d.chunk.js.map",
"1182.cd571ded.chunk.js.map": "./static/js/1182.cd571ded.chunk.js.map",
"343.90c9cdc7.chunk.css.map": "./static/css/343.90c9cdc7.chunk.css.map",
"343.e9d1a353.chunk.js.map": "./static/js/343.e9d1a353.chunk.js.map",
"1199.90c9cdc7.chunk.css.map": "./static/css/1199.90c9cdc7.chunk.css.map",
"1199.6d35fa41.chunk.js.map": "./static/js/1199.6d35fa41.chunk.js.map",
"5517.90c9cdc7.chunk.css.map": "./static/css/5517.90c9cdc7.chunk.css.map",
"5517.bac46ad0.chunk.js.map": "./static/js/5517.bac46ad0.chunk.js.map",
"2555.d184ba4d.chunk.js.map": "./static/js/2555.d184ba4d.chunk.js.map",
"7585.38a7a791.chunk.js.map": "./static/js/7585.38a7a791.chunk.js.map",
"4847.6f54ff1c.chunk.js.map": "./static/js/4847.6f54ff1c.chunk.js.map",
"4653.3327f6b5.chunk.js.map": "./static/js/4653.3327f6b5.chunk.js.map",
"692.54f42c01.chunk.js.map": "./static/js/692.54f42c01.chunk.js.map",
"8626.e7ffb00f.chunk.js.map": "./static/js/8626.e7ffb00f.chunk.js.map",
"736.86840c49.chunk.js.map": "./static/js/736.86840c49.chunk.js.map",
"6577.200d8901.chunk.js.map": "./static/js/6577.200d8901.chunk.js.map",
"9561.291ccf9d.chunk.js.map": "./static/js/9561.291ccf9d.chunk.js.map",
"4394.d1cae66d.chunk.js.map": "./static/js/4394.d1cae66d.chunk.js.map",
"4781.f4794912.chunk.js.map": "./static/js/4781.f4794912.chunk.js.map",
"9478.dca1d314.chunk.js.map": "./static/js/9478.dca1d314.chunk.js.map",
"7164.3762a0c0.chunk.js.map": "./static/js/7164.3762a0c0.chunk.js.map",
"4414.d499a576.chunk.js.map": "./static/js/4414.d499a576.chunk.js.map",
"7798.4523255f.chunk.js.map": "./static/js/7798.4523255f.chunk.js.map",
"8833.435c57c9.chunk.js.map": "./static/js/8833.435c57c9.chunk.js.map",
"471.468250ea.chunk.js.map": "./static/js/471.468250ea.chunk.js.map",
"4414.4963fc41.chunk.js.map": "./static/js/4414.4963fc41.chunk.js.map",
"7798.b6480ddb.chunk.js.map": "./static/js/7798.b6480ddb.chunk.js.map",
"8833.24981129.chunk.js.map": "./static/js/8833.24981129.chunk.js.map",
"471.e0097193.chunk.js.map": "./static/js/471.e0097193.chunk.js.map",
"483.96dc1806.chunk.js.map": "./static/js/483.96dc1806.chunk.js.map",
"9467.89303883.chunk.js.map": "./static/js/9467.89303883.chunk.js.map",
"6895.a780402b.chunk.js.map": "./static/js/6895.a780402b.chunk.js.map",
"7925.17b70ce9.chunk.js.map": "./static/js/7925.17b70ce9.chunk.js.map",
"6331.4b9c378c.chunk.js.map": "./static/js/6331.4b9c378c.chunk.js.map",
"4133.e423ad64.chunk.js.map": "./static/js/4133.e423ad64.chunk.js.map",
"1367.d0badeac.chunk.css.map": "./static/css/1367.d0badeac.chunk.css.map",
"1367.570f471e.chunk.js.map": "./static/js/1367.570f471e.chunk.js.map",
"3956.04add457.chunk.js.map": "./static/js/3956.04add457.chunk.js.map",
"9221.74babab3.chunk.js.map": "./static/js/9221.74babab3.chunk.js.map",
"8896.a985f858.chunk.js.map": "./static/js/8896.a985f858.chunk.js.map",
"9134.9bb207a3.chunk.js.map": "./static/js/9134.9bb207a3.chunk.js.map",
"1268.d0badeac.chunk.css.map": "./static/css/1268.d0badeac.chunk.css.map",
"1268.444486ab.chunk.js.map": "./static/js/1268.444486ab.chunk.js.map",
"1030.d7679dcf.chunk.js.map": "./static/js/1030.d7679dcf.chunk.js.map",
"9145.d907d493.chunk.js.map": "./static/js/9145.d907d493.chunk.js.map",
"1379.ed19d5b2.chunk.js.map": "./static/js/1379.ed19d5b2.chunk.js.map",
"1501.82aa601c.chunk.js.map": "./static/js/1501.82aa601c.chunk.js.map",
"9605.0d9d8909.chunk.js.map": "./static/js/9605.0d9d8909.chunk.js.map",
"426.31bab58a.chunk.js.map": "./static/js/426.31bab58a.chunk.js.map",
"4298.cc4b772e.chunk.js.map": "./static/js/4298.cc4b772e.chunk.js.map",
"2878.f17e395f.chunk.js.map": "./static/js/2878.f17e395f.chunk.js.map",
"8495.71a61743.chunk.js.map": "./static/js/8495.71a61743.chunk.js.map",
"4934.064b787d.chunk.js.map": "./static/js/4934.064b787d.chunk.js.map",
"9942.51a9de47.chunk.js.map": "./static/js/9942.51a9de47.chunk.js.map",
"7021.148329a1.chunk.js.map": "./static/js/7021.148329a1.chunk.js.map",
"2684.ff523cc8.chunk.js.map": "./static/js/2684.ff523cc8.chunk.js.map",
"6683.ee501f75.chunk.js.map": "./static/js/6683.ee501f75.chunk.js.map",
"8350.8858e924.chunk.js.map": "./static/js/8350.8858e924.chunk.js.map",
"4873.ab307a49.chunk.js.map": "./static/js/4873.ab307a49.chunk.js.map",
"9449.27ca290f.chunk.js.map": "./static/js/9449.27ca290f.chunk.js.map",
"7659.425b0e4f.chunk.js.map": "./static/js/7659.425b0e4f.chunk.js.map",
"9968.10689a81.chunk.js.map": "./static/js/9968.10689a81.chunk.js.map",
"2180.d8b0a783.chunk.js.map": "./static/js/2180.d8b0a783.chunk.js.map",
"8253.78199b7c.chunk.js.map": "./static/js/8253.78199b7c.chunk.js.map",
"3328.d653fd74.chunk.js.map": "./static/js/3328.d653fd74.chunk.js.map",
"1440.e5771fc7.chunk.js.map": "./static/js/1440.e5771fc7.chunk.js.map",
"9179.4664c118.chunk.js.map": "./static/js/9179.4664c118.chunk.js.map",
"51.fe31a1b5.chunk.js.map": "./static/js/51.fe31a1b5.chunk.js.map",
"711.29c4e77f.chunk.js.map": "./static/js/711.29c4e77f.chunk.js.map",
"6901.0d9858c2.chunk.js.map": "./static/js/6901.0d9858c2.chunk.js.map",
"2185.a4530a2b.chunk.js.map": "./static/js/2185.a4530a2b.chunk.js.map",
"312.b28428a0.chunk.js.map": "./static/js/312.b28428a0.chunk.js.map",
"2112.d99282a3.chunk.js.map": "./static/js/2112.d99282a3.chunk.js.map",
"4619.774f2ac4.chunk.js.map": "./static/js/4619.774f2ac4.chunk.js.map",
"8990.1d656f02.chunk.js.map": "./static/js/8990.1d656f02.chunk.js.map",
"8455.c317ba9a.chunk.js.map": "./static/js/8455.c317ba9a.chunk.js.map",
"1913.d0badeac.chunk.css.map": "./static/css/1913.d0badeac.chunk.css.map",
"1913.cea66f73.chunk.js.map": "./static/js/1913.cea66f73.chunk.js.map",
"1604.c298cecf.chunk.js.map": "./static/js/1604.c298cecf.chunk.js.map",
"8391.024d90c0.chunk.js.map": "./static/js/8391.024d90c0.chunk.js.map",
"402.aec3e2df.chunk.js.map": "./static/js/402.aec3e2df.chunk.js.map",
"1705.58e59f26.chunk.js.map": "./static/js/1705.58e59f26.chunk.js.map",
"1581.b3df67cf.chunk.js.map": "./static/js/1581.b3df67cf.chunk.js.map",
"455.13bb7aa6.chunk.js.map": "./static/js/455.13bb7aa6.chunk.js.map",
"2661.10751b4b.chunk.js.map": "./static/js/2661.10751b4b.chunk.js.map",
"889.2a763545.chunk.js.map": "./static/js/889.2a763545.chunk.js.map",
"9088.8b721a73.chunk.js.map": "./static/js/9088.8b721a73.chunk.js.map",
"247.b749bae6.chunk.js.map": "./static/js/247.b749bae6.chunk.js.map",
"2763.700b8a36.chunk.js.map": "./static/js/2763.700b8a36.chunk.js.map",
"9467.f80c8cc9.chunk.js.map": "./static/js/9467.f80c8cc9.chunk.js.map",
"6895.747b46a8.chunk.js.map": "./static/js/6895.747b46a8.chunk.js.map",
"7925.29ca8fac.chunk.js.map": "./static/js/7925.29ca8fac.chunk.js.map",
"6331.fcfff663.chunk.js.map": "./static/js/6331.fcfff663.chunk.js.map",
"4133.d578498b.chunk.js.map": "./static/js/4133.d578498b.chunk.js.map",
"1367.90c9cdc7.chunk.css.map": "./static/css/1367.90c9cdc7.chunk.css.map",
"1367.69870fc1.chunk.js.map": "./static/js/1367.69870fc1.chunk.js.map",
"3956.aa532678.chunk.js.map": "./static/js/3956.aa532678.chunk.js.map",
"9221.5fe353b7.chunk.js.map": "./static/js/9221.5fe353b7.chunk.js.map",
"8896.3cbf9873.chunk.js.map": "./static/js/8896.3cbf9873.chunk.js.map",
"9134.3cd624c6.chunk.js.map": "./static/js/9134.3cd624c6.chunk.js.map",
"1268.90c9cdc7.chunk.css.map": "./static/css/1268.90c9cdc7.chunk.css.map",
"1268.d8119a92.chunk.js.map": "./static/js/1268.d8119a92.chunk.js.map",
"1030.38e91f62.chunk.js.map": "./static/js/1030.38e91f62.chunk.js.map",
"9145.82dff7c3.chunk.js.map": "./static/js/9145.82dff7c3.chunk.js.map",
"1379.405ea3e4.chunk.js.map": "./static/js/1379.405ea3e4.chunk.js.map",
"1501.d87ade72.chunk.js.map": "./static/js/1501.d87ade72.chunk.js.map",
"9605.249d1f92.chunk.js.map": "./static/js/9605.249d1f92.chunk.js.map",
"426.9fd80f88.chunk.js.map": "./static/js/426.9fd80f88.chunk.js.map",
"4298.e8216a7e.chunk.js.map": "./static/js/4298.e8216a7e.chunk.js.map",
"2878.718f713f.chunk.js.map": "./static/js/2878.718f713f.chunk.js.map",
"8495.b1689c2d.chunk.js.map": "./static/js/8495.b1689c2d.chunk.js.map",
"4934.72071d47.chunk.js.map": "./static/js/4934.72071d47.chunk.js.map",
"9942.406de82c.chunk.js.map": "./static/js/9942.406de82c.chunk.js.map",
"7021.6d31f973.chunk.js.map": "./static/js/7021.6d31f973.chunk.js.map",
"2684.0cd690ab.chunk.js.map": "./static/js/2684.0cd690ab.chunk.js.map",
"6683.f9402dc8.chunk.js.map": "./static/js/6683.f9402dc8.chunk.js.map",
"8350.1cbb8449.chunk.js.map": "./static/js/8350.1cbb8449.chunk.js.map",
"4873.4e512648.chunk.js.map": "./static/js/4873.4e512648.chunk.js.map",
"9449.2b80f120.chunk.js.map": "./static/js/9449.2b80f120.chunk.js.map",
"7659.28807a59.chunk.js.map": "./static/js/7659.28807a59.chunk.js.map",
"9968.5a32c7f4.chunk.js.map": "./static/js/9968.5a32c7f4.chunk.js.map",
"2180.03cd0c4b.chunk.js.map": "./static/js/2180.03cd0c4b.chunk.js.map",
"8253.ec0f3d9f.chunk.js.map": "./static/js/8253.ec0f3d9f.chunk.js.map",
"3328.2f4736e4.chunk.js.map": "./static/js/3328.2f4736e4.chunk.js.map",
"1440.b9a2f19f.chunk.js.map": "./static/js/1440.b9a2f19f.chunk.js.map",
"9179.92561ffe.chunk.js.map": "./static/js/9179.92561ffe.chunk.js.map",
"51.8ddd5a19.chunk.js.map": "./static/js/51.8ddd5a19.chunk.js.map",
"711.e9b969b9.chunk.js.map": "./static/js/711.e9b969b9.chunk.js.map",
"6901.6bc2bcd9.chunk.js.map": "./static/js/6901.6bc2bcd9.chunk.js.map",
"2185.0a99016d.chunk.js.map": "./static/js/2185.0a99016d.chunk.js.map",
"312.7e5dc1cb.chunk.js.map": "./static/js/312.7e5dc1cb.chunk.js.map",
"2112.10f63a9c.chunk.js.map": "./static/js/2112.10f63a9c.chunk.js.map",
"4619.eaf126cc.chunk.js.map": "./static/js/4619.eaf126cc.chunk.js.map",
"8990.ffebdc52.chunk.js.map": "./static/js/8990.ffebdc52.chunk.js.map",
"8455.828f0717.chunk.js.map": "./static/js/8455.828f0717.chunk.js.map",
"1913.90c9cdc7.chunk.css.map": "./static/css/1913.90c9cdc7.chunk.css.map",
"1913.40a1e517.chunk.js.map": "./static/js/1913.40a1e517.chunk.js.map",
"1604.25690eb1.chunk.js.map": "./static/js/1604.25690eb1.chunk.js.map",
"8391.2dea5c99.chunk.js.map": "./static/js/8391.2dea5c99.chunk.js.map",
"402.89c71117.chunk.js.map": "./static/js/402.89c71117.chunk.js.map",
"1705.32ce00fc.chunk.js.map": "./static/js/1705.32ce00fc.chunk.js.map",
"1581.fb295899.chunk.js.map": "./static/js/1581.fb295899.chunk.js.map",
"455.b19f8a8b.chunk.js.map": "./static/js/455.b19f8a8b.chunk.js.map",
"2661.04f9b92d.chunk.js.map": "./static/js/2661.04f9b92d.chunk.js.map",
"889.7a5661d6.chunk.js.map": "./static/js/889.7a5661d6.chunk.js.map",
"9088.741a3fa1.chunk.js.map": "./static/js/9088.741a3fa1.chunk.js.map",
"247.b3d65df3.chunk.js.map": "./static/js/247.b3d65df3.chunk.js.map",
"2763.71344b5a.chunk.js.map": "./static/js/2763.71344b5a.chunk.js.map",
"5171.e8fc646a.chunk.js.map": "./static/js/5171.e8fc646a.chunk.js.map",
"2426.a889403c.chunk.js.map": "./static/js/2426.a889403c.chunk.js.map",
"3762.52bd15d3.chunk.js.map": "./static/js/3762.52bd15d3.chunk.js.map",
"5561.80af3962.chunk.js.map": "./static/js/5561.80af3962.chunk.js.map",
"3762.52bd15d3.chunk.js.map": "./static/js/3762.52bd15d3.chunk.js.map",
"3801.64b6e473.chunk.js.map": "./static/js/3801.64b6e473.chunk.js.map",
"1918.4309a619.chunk.js.map": "./static/js/1918.4309a619.chunk.js.map",
"6523.fb65841b.chunk.js.map": "./static/js/6523.fb65841b.chunk.js.map",
"1373.c65e2a03.chunk.js.map": "./static/js/1373.c65e2a03.chunk.js.map",
"6431.5f2e5e6e.chunk.js.map": "./static/js/6431.5f2e5e6e.chunk.js.map",
"2011.f505a73d.chunk.js.map": "./static/js/2011.f505a73d.chunk.js.map",
"1416.8f4d72a9.chunk.js.map": "./static/js/1416.8f4d72a9.chunk.js.map",
@@ -278,22 +274,22 @@
"6172.b49c709f.chunk.js.map": "./static/js/6172.b49c709f.chunk.js.map",
"6852.10dc5cb9.chunk.js.map": "./static/js/6852.10dc5cb9.chunk.js.map",
"3388.f53bd1d3.chunk.js.map": "./static/js/3388.f53bd1d3.chunk.js.map",
"7576.5695ff4d.chunk.js.map": "./static/js/7576.5695ff4d.chunk.js.map",
"7576.7eab0ac3.chunk.js.map": "./static/js/7576.7eab0ac3.chunk.js.map",
"7002.4064675c.chunk.js.map": "./static/js/7002.4064675c.chunk.js.map",
"6484.3a2447c1.chunk.js.map": "./static/js/6484.3a2447c1.chunk.js.map",
"8138.45bff0ff.chunk.js.map": "./static/js/8138.45bff0ff.chunk.js.map",
"7142.4191cc91.chunk.js.map": "./static/js/7142.4191cc91.chunk.js.map",
"7923.f624f038.chunk.js.map": "./static/js/7923.f624f038.chunk.js.map",
"9785.7383f4d2.chunk.js.map": "./static/js/9785.7383f4d2.chunk.js.map",
"8735.bf97f464.chunk.js.map": "./static/js/8735.bf97f464.chunk.js.map",
"63.c9bf3400.chunk.js.map": "./static/js/63.c9bf3400.chunk.js.map",
"264.58e9bb70.chunk.js.map": "./static/js/264.58e9bb70.chunk.js.map",
"8959.f30c25e0.chunk.js.map": "./static/js/8959.f30c25e0.chunk.js.map",
"2983.689a9d39.chunk.js.map": "./static/js/2983.689a9d39.chunk.js.map",
"5289.649f8767.chunk.js.map": "./static/js/5289.649f8767.chunk.js.map",
"5026.69171baa.chunk.js.map": "./static/js/5026.69171baa.chunk.js.map"
"2983.cc2b6b9b.chunk.js.map": "./static/js/2983.cc2b6b9b.chunk.js.map",
"5289.faddab03.chunk.js.map": "./static/js/5289.faddab03.chunk.js.map",
"5026.fb284fc6.chunk.js.map": "./static/js/5026.fb284fc6.chunk.js.map"
},
"entrypoints": [
"static/css/main.90d417ae.css",
"static/js/main.efb70fdf.js"
"static/css/main.86370216.css",
"static/js/main.5dc94654.js"
]
}

View File

@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><base href="/"/><meta content="width=device-width,initial-scale=1" name="viewport"/><meta content="#081C42" media="(prefers-color-scheme: light)" name="theme-color"/><meta content="#081C42" media="(prefers-color-scheme: dark)" name="theme-color"/><meta content="MinIO Console" name="description"/><link href="./styles/root-styles.css" rel="stylesheet"/><link href="./apple-icon-180x180.png" rel="apple-touch-icon" sizes="180x180"/><link href="./favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"/><link href="./favicon-96x96.png" rel="icon" sizes="96x96" type="image/png"/><link href="./favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/><link href="./manifest.json" rel="manifest"/><link color="#3a4e54" href="./safari-pinned-tab.svg" rel="mask-icon"/><title>MinIO Console</title><script defer="defer" src="./static/js/main.efb70fdf.js"></script><link href="./static/css/main.90d417ae.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"><div id="preload"><img src="./images/background.svg"/> <img src="./images/background-wave-orig2.svg"/></div><div id="loader-block"><img src="./Loader.svg"/></div></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><base href="/"/><meta content="width=device-width,initial-scale=1" name="viewport"/><meta content="#081C42" media="(prefers-color-scheme: light)" name="theme-color"/><meta content="#081C42" media="(prefers-color-scheme: dark)" name="theme-color"/><meta content="MinIO Console" name="description"/><link href="./styles/root-styles.css" rel="stylesheet"/><link href="./apple-icon-180x180.png" rel="apple-touch-icon" sizes="180x180"/><link href="./favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"/><link href="./favicon-96x96.png" rel="icon" sizes="96x96" type="image/png"/><link href="./favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/><link href="./manifest.json" rel="manifest"/><link color="#3a4e54" href="./safari-pinned-tab.svg" rel="mask-icon"/><title>MinIO Console</title><script defer="defer" src="./static/js/main.5dc94654.js"></script><link href="./static/css/main.86370216.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"><div id="preload"><img src="./images/background.svg"/> <img src="./images/background-wave-orig2.svg"/></div><div id="loader-block"><img src="./Loader.svg"/></div></div></body></html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,2 +0,0 @@
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[1268],{92217:function(e,n,t){var o=t(1413),i=t(72791),r=t(61889),a=t(30829),c=t(20068),s=t(64554),l=t(11135),u=t(25787),d=t(84570),f=t(23814),p=t(51047),m=t(40603),x=t(78029),h=t.n(x),Z=t(85457),y=t(80184);n.Z=(0,u.Z)((function(e){return(0,l.Z)((0,o.Z)({},f.YI))}))((function(e){var n=e.value,t=e.label,o=void 0===t?"":t,l=e.tooltip,u=void 0===l?"":l,f=e.mode,x=void 0===f?"json":f,j=e.classes,b=e.onBeforeChange,v=(e.readOnly,e.editorHeight),g=void 0===v?"250px":v;return(0,y.jsxs)(i.Fragment,{children:[(0,y.jsx)(r.ZP,{item:!0,xs:12,children:(0,y.jsxs)(a.Z,{className:j.inputLabel,children:[(0,y.jsx)("span",{children:o}),""!==u&&(0,y.jsx)("div",{className:j.tooltipContainer,children:(0,y.jsx)(c.Z,{title:u,placement:"top-start",children:(0,y.jsx)("div",{className:j.tooltip,children:(0,y.jsx)(d.Z,{})})})})]})}),(0,y.jsx)(r.ZP,{item:!0,xs:12,style:{maxHeight:g,overflow:"auto"},children:(0,y.jsx)(Z.Z,{value:n,language:x,onChange:function(e){b(null,null,e.target.value)},padding:15,style:{fontSize:12,backgroundColor:"#fefefe",fontFamily:"ui-monospace,SFMono-Regular,SF Mono,Consolas,Liberation Mono,Menlo,monospace"}})}),(0,y.jsx)(r.ZP,{item:!0,xs:12,sx:{borderTop:"1px solid #eaeaea",background:"#f7f7f7"},children:(0,y.jsx)(s.Z,{sx:{display:"flex",alignItems:"center",padding:"2px",paddingRight:"5px",justifyContent:"flex-end","& button":{height:"26px",width:"26px",padding:"2px"," .min-icon":{marginLeft:"0"}}},children:(0,y.jsx)(h(),{text:n,children:(0,y.jsx)(m.Z,{tooltip:"Copy to Clipboard",onClick:function(){},text:"",icon:(0,y.jsx)(p.TIy,{}),color:"primary",variant:"outlined"})})})})]})}))},82859:function(e,n,t){t.r(n);var o=t(29439),i=t(1413),r=t(72791),a=t(60364),c=t(61889),s=t(40986),l=t(36151),u=t(11135),d=t(25787),f=t(81207),p=t(23814),m=t(92217),x=t(87995),h=t(82295),Z=t(50896),y=t(80184);n.default=(0,d.Z)((function(e){return(0,u.Z)((0,i.Z)((0,i.Z)({errorState:{color:"#b53b4b",fontSize:14,fontWeight:"bold"},codeMirrorContainer:{marginBottom:20,paddingLeft:15,"& label":{marginBottom:".5rem"},"& label + div":{display:"none"}}},p.ID),p.YI))}))((function(e){var n=e.classes,t=e.history,i=(0,a.I0)(),u=(0,a.v9)((function(e){return e.tenants.currentTenant})),d=(0,a.v9)((function(e){return e.tenants.currentNamespace})),p=(0,r.useState)(!1),j=(0,o.Z)(p,2),b=j[0],v=j[1],g=(0,r.useState)(!1),C=(0,o.Z)(g,2),S=C[0],P=C[1],k=(0,r.useState)(""),w=(0,o.Z)(k,2),O=w[0],T=w[1],I=(0,r.useState)(""),M=(0,o.Z)(I,2),_=M[0],E=M[1];(0,r.useEffect)((function(){f.Z.invoke("GET","/api/v1/namespaces/".concat(d,"/tenants/").concat(u,"/yaml")).then((function(e){P(!1),T(e.yaml)})).catch((function(e){P(!1),i((0,x.zb)(e))}))}),[u,d,i]),(0,r.useEffect)((function(){}),[]);var F=""!==O.trim();return(0,y.jsxs)(r.Fragment,{children:[b||S&&(0,y.jsx)(c.ZP,{item:!0,xs:12,children:(0,y.jsx)(s.Z,{})}),""!==_&&(0,y.jsx)("div",{className:n.errorState,children:_}),!S&&(0,y.jsx)("form",{noValidate:!0,autoComplete:"off",onSubmit:function(e){e.preventDefault(),b||(v(!0),E(""),f.Z.invoke("PUT","/api/v1/namespaces/".concat(d,"/tenants/").concat(u,"/yaml"),{yaml:O}).then((function(e){v(!1),i((0,h.v)()),E(""),t.push("/namespaces/".concat(d,"/tenants/").concat(u,"/summary"))})).catch((function(e){v(!1),E(e.errorMessage)})))},children:(0,y.jsxs)(c.ZP,{container:!0,children:[(0,y.jsx)(c.ZP,{item:!0,xs:12,children:(0,y.jsx)(Z.Z,{children:"Tenant Specification"})}),(0,y.jsx)(c.ZP,{item:!0,xs:12,style:{border:"1px solid #eaeaea"},children:(0,y.jsx)(m.Z,{value:O,mode:"yaml",onBeforeChange:function(e,n,t){T(t)},editorHeight:"550px"})}),(0,y.jsxs)(c.ZP,{item:!0,xs:12,style:{textAlign:"right",paddingTop:16},children:[(0,y.jsx)(l.Z,{type:"button",variant:"outlined",color:"primary",disabled:b,onClick:function(){t.push("/namespaces/".concat(d,"/tenants/").concat(u,"/summary"))},children:"Cancel"}),(0,y.jsx)(l.Z,{type:"submit",variant:"contained",color:"primary",disabled:b||!F,style:{marginLeft:8},children:"Save"})]})]})})]})}))},61120:function(e,n,t){function o(e){return o=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},o(e)}t.d(n,{Z:function(){return o}})},60136:function(e,n,t){t.d(n,{Z:function(){return i}});var o=t(89611);function i(e,n){if("function"!==typeof n&&null!==n)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(n&&n.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),n&&(0,o.Z)(e,n)}},82963:function(e,n,t){t.d(n,{Z:function(){return r}});var o=t(71002),i=t(97326);function r(e,n){if(n&&("object"===(0,o.Z)(n)||"function"===typeof n))return n;if(void 0!==n)throw new TypeError("Derived constructors may only return object or undefined");return(0,i.Z)(e)}}}]);
//# sourceMappingURL=1268.444486ab.chunk.js.map

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,2 @@
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[1268],{92217:function(e,n,t){var o=t(1413),i=t(72791),r=t(61889),a=t(30829),c=t(20068),s=t(64554),l=t(11135),u=t(25787),d=t(84570),f=t(23814),p=t(3923),m=t(40603),x=t(78029),h=t.n(x),Z=t(85457),j=t(80184);n.Z=(0,u.Z)((function(e){return(0,l.Z)((0,o.Z)({},f.YI))}))((function(e){var n=e.value,t=e.label,o=void 0===t?"":t,l=e.tooltip,u=void 0===l?"":l,f=e.mode,x=void 0===f?"json":f,y=e.classes,b=e.onBeforeChange,v=(e.readOnly,e.editorHeight),g=void 0===v?"250px":v;return(0,j.jsxs)(i.Fragment,{children:[(0,j.jsx)(r.ZP,{item:!0,xs:12,children:(0,j.jsxs)(a.Z,{className:y.inputLabel,children:[(0,j.jsx)("span",{children:o}),""!==u&&(0,j.jsx)("div",{className:y.tooltipContainer,children:(0,j.jsx)(c.Z,{title:u,placement:"top-start",children:(0,j.jsx)("div",{className:y.tooltip,children:(0,j.jsx)(d.Z,{})})})})]})}),(0,j.jsx)(r.ZP,{item:!0,xs:12,style:{maxHeight:g,overflow:"auto"},children:(0,j.jsx)(Z.Z,{value:n,language:x,onChange:function(e){b(null,null,e.target.value)},padding:15,style:{fontSize:12,backgroundColor:"#fefefe",fontFamily:"ui-monospace,SFMono-Regular,SF Mono,Consolas,Liberation Mono,Menlo,monospace"}})}),(0,j.jsx)(r.ZP,{item:!0,xs:12,sx:{borderTop:"1px solid #eaeaea",background:"#f7f7f7"},children:(0,j.jsx)(s.Z,{sx:{display:"flex",alignItems:"center",padding:"2px",paddingRight:"5px",justifyContent:"flex-end","& button":{height:"26px",width:"26px",padding:"2px"," .min-icon":{marginLeft:"0"}}},children:(0,j.jsx)(h(),{text:n,children:(0,j.jsx)(m.Z,{tooltip:"Copy to Clipboard",onClick:function(){},text:"",icon:(0,j.jsx)(p.TIy,{}),color:"primary",variant:"outlined"})})})})]})}))},82859:function(e,n,t){t.r(n);var o=t(29439),i=t(1413),r=t(72791),a=t(60364),c=t(16871),s=t(61889),l=t(40986),u=t(36151),d=t(11135),f=t(25787),p=t(81207),m=t(23814),x=t(92217),h=t(87995),Z=t(81551),j=t(82295),y=t(50896),b=t(80184);n.default=(0,f.Z)((function(e){return(0,d.Z)((0,i.Z)((0,i.Z)({errorState:{color:"#b53b4b",fontSize:14,fontWeight:"bold"},codeMirrorContainer:{marginBottom:20,paddingLeft:15,"& label":{marginBottom:".5rem"},"& label + div":{display:"none"}}},m.ID),m.YI))}))((function(e){var n=e.classes,t=(0,Z.TL)(),i=(0,c.s0)(),d=(0,a.v9)((function(e){return e.tenants.currentTenant})),f=(0,a.v9)((function(e){return e.tenants.currentNamespace})),m=(0,r.useState)(!1),v=(0,o.Z)(m,2),g=v[0],C=v[1],S=(0,r.useState)(!1),P=(0,o.Z)(S,2),k=P[0],w=P[1],T=(0,r.useState)(""),O=(0,o.Z)(T,2),L=O[0],M=O[1],_=(0,r.useState)(""),E=(0,o.Z)(_,2),F=E[0],I=E[1];(0,r.useEffect)((function(){p.Z.invoke("GET","/api/v1/namespaces/".concat(f,"/tenants/").concat(d,"/yaml")).then((function(e){w(!1),M(e.yaml)})).catch((function(e){w(!1),t((0,h.zb)(e))}))}),[d,f,t]),(0,r.useEffect)((function(){}),[]);var N=""!==L.trim();return(0,b.jsxs)(r.Fragment,{children:[g||k&&(0,b.jsx)(s.ZP,{item:!0,xs:12,children:(0,b.jsx)(l.Z,{})}),""!==F&&(0,b.jsx)("div",{className:n.errorState,children:F}),!k&&(0,b.jsx)("form",{noValidate:!0,autoComplete:"off",onSubmit:function(e){e.preventDefault(),g||(C(!0),I(""),p.Z.invoke("PUT","/api/v1/namespaces/".concat(f,"/tenants/").concat(d,"/yaml"),{yaml:L}).then((function(e){C(!1),t((0,j.v)()),I(""),i("/namespaces/".concat(f,"/tenants/").concat(d,"/summary"))})).catch((function(e){C(!1),I(e.errorMessage)})))},children:(0,b.jsxs)(s.ZP,{container:!0,children:[(0,b.jsx)(s.ZP,{item:!0,xs:12,children:(0,b.jsx)(y.Z,{children:"Tenant Specification"})}),(0,b.jsx)(s.ZP,{item:!0,xs:12,style:{border:"1px solid #eaeaea"},children:(0,b.jsx)(x.Z,{value:L,mode:"yaml",onBeforeChange:function(e,n,t){M(t)},editorHeight:"550px"})}),(0,b.jsxs)(s.ZP,{item:!0,xs:12,style:{textAlign:"right",paddingTop:16},children:[(0,b.jsx)(u.Z,{type:"button",variant:"outlined",color:"primary",disabled:g,onClick:function(){i("/namespaces/".concat(f,"/tenants/").concat(d,"/summary"))},children:"Cancel"}),(0,b.jsx)(u.Z,{type:"submit",variant:"contained",color:"primary",disabled:g||!N,style:{marginLeft:8},children:"Save"})]})]})})]})}))},61120:function(e,n,t){function o(e){return o=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},o(e)}t.d(n,{Z:function(){return o}})},60136:function(e,n,t){t.d(n,{Z:function(){return i}});var o=t(89611);function i(e,n){if("function"!==typeof n&&null!==n)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(n&&n.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),n&&(0,o.Z)(e,n)}},82963:function(e,n,t){t.d(n,{Z:function(){return r}});var o=t(71002),i=t(97326);function r(e,n){if(n&&("object"===(0,o.Z)(n)||"function"===typeof n))return n;if(void 0!==n)throw new TypeError("Derived constructors may only return object or undefined");return(0,i.Z)(e)}}}]);
//# sourceMappingURL=1268.d8119a92.chunk.js.map

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,2 +0,0 @@
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[1581],{1581:function(e,t,n){n.r(t);var a=n(29439),i=n(1413),s=n(72791),o=n(36151),l=n(40986),c=n(11135),r=n(25787),u=n(61889),d=n(45248),m=n(23814),f=n(37516),Z=n(21435),h=n(56028),x=n(81207),p=n(51047),j=n(56578),v=n(60364),b=n(87995),g=n(80184);t.default=(0,r.Z)((function(e){return(0,c.Z)((0,i.Z)((0,i.Z)({},m.DF),m.ID))}))((function(e){var t=e.classes,n=e.open,i=e.enabled,c=e.cfg,r=e.selectedBucket,m=e.closeModalAndRefresh,k=(0,v.I0)(),C=(0,s.useState)(!1),S=(0,a.Z)(C,2),N=S[0],P=S[1],q=(0,s.useState)(!1),y=(0,a.Z)(q,2),B=y[0],w=y[1],_=(0,s.useState)("1"),E=(0,a.Z)(_,2),M=E[0],z=E[1],D=(0,s.useState)("Ti"),I=(0,a.Z)(D,2),F=I[0],Q=I[1];(0,s.useEffect)((function(){if(i&&(w(!0),c)){var e=(0,d.Am)(c.quota,!1,!1,!0);z(e.total.toString()),Q(e.unit)}}),[i,c]);return(0,g.jsx)(h.Z,{modalOpen:n,onClose:function(){m()},title:"Enable Bucket Quota",titleIcon:(0,g.jsx)(p.Wqw,{}),children:(0,g.jsx)("form",{noValidate:!0,autoComplete:"off",onSubmit:function(e){e.preventDefault(),function(){if(!N){var e={enabled:B,amount:parseInt((0,d.Pw)(M,F,!0)),quota_type:"hard"};x.Z.invoke("PUT","/api/v1/buckets/".concat(r,"/quota"),e).then((function(){P(!1),m()})).catch((function(e){P(!1),k((0,b.zb)(e))}))}}()},children:(0,g.jsxs)(u.ZP,{container:!0,children:[(0,g.jsxs)(u.ZP,{item:!0,xs:12,className:t.formScrollable,children:[(0,g.jsx)(u.ZP,{item:!0,xs:12,className:t.formFieldRow,children:(0,g.jsx)(f.Z,{value:"bucket_quota",id:"bucket_quota",name:"bucket_quota",checked:B,onChange:function(e){w(e.target.checked)},label:"Enabled"})}),B&&(0,g.jsx)(s.Fragment,{children:(0,g.jsx)(u.ZP,{item:!0,xs:12,className:t.formFieldRow,children:(0,g.jsx)(u.ZP,{container:!0,children:(0,g.jsx)(u.ZP,{item:!0,xs:12,children:(0,g.jsx)(Z.Z,{id:"quota_size",name:"quota_size",onChange:function(e){e.target.validity.valid&&z(e.target.value)},pattern:"[0-9]*",label:"Quota",value:M,required:!0,min:"1",overlayObject:(0,g.jsx)(j.Z,{id:"quota_unit",onUnitChange:function(e){Q(e)},unitSelected:F,unitsList:(0,d.zQ)(["Ki"]),disabled:!1})})})})})})]}),(0,g.jsxs)(u.ZP,{item:!0,xs:12,className:t.modalButtonBar,children:[(0,g.jsx)(o.Z,{type:"button",variant:"outlined",color:"primary",disabled:N,onClick:function(){m()},children:"Cancel"}),(0,g.jsx)(o.Z,{type:"submit",variant:"contained",color:"primary",disabled:N,children:"Save"})]}),N&&(0,g.jsx)(u.ZP,{item:!0,xs:12,children:(0,g.jsx)(l.Z,{})})]})})})}))},56028:function(e,t,n){var a=n(29439),i=n(1413),s=n(72791),o=n(60364),l=n(13400),c=n(55646),r=n(5574),u=n(65661),d=n(39157),m=n(11135),f=n(25787),Z=n(23814),h=n(29823),x=n(28057),p=n(87995),j=n(80184);t.Z=(0,f.Z)((function(e){return(0,m.Z)((0,i.Z)((0,i.Z)({},Z.Qw),{},{content:{padding:25,paddingBottom:0},customDialogSize:{width:"100%",maxWidth:765}},Z.sN))}))((function(e){var t=e.onClose,n=e.modalOpen,m=e.title,f=e.children,Z=e.classes,v=e.wideLimit,b=void 0===v||v,g=e.noContentPadding,k=e.titleIcon,C=void 0===k?null:k,S=(0,o.I0)(),N=(0,s.useState)(!1),P=(0,a.Z)(N,2),q=P[0],y=P[1],B=(0,o.v9)((function(e){return e.system.modalSnackBar}));(0,s.useEffect)((function(){S((0,p.MK)(""))}),[S]),(0,s.useEffect)((function(){if(B){if(""===B.message)return void y(!1);"error"!==B.type&&y(!0)}}),[B]);var w=b?{classes:{paper:Z.customDialogSize}}:{maxWidth:"lg",fullWidth:!0},_="";return B&&(_=B.detailedErrorMsg,(""===B.detailedErrorMsg||B.detailedErrorMsg.length<5)&&(_=B.message)),(0,j.jsxs)(r.Z,(0,i.Z)((0,i.Z)({open:n,classes:Z},w),{},{scroll:"paper",onClose:function(e,n){"backdropClick"!==n&&t()},className:Z.root,children:[(0,j.jsxs)(u.Z,{className:Z.title,children:[(0,j.jsxs)("div",{className:Z.titleText,children:[C," ",m]}),(0,j.jsx)("div",{className:Z.closeContainer,children:(0,j.jsx)(l.Z,{"aria-label":"close",id:"close",className:Z.closeButton,onClick:t,disableRipple:!0,size:"small",children:(0,j.jsx)(h.Z,{})})})]}),(0,j.jsx)(x.Z,{isModal:!0}),(0,j.jsx)(c.Z,{open:q,className:Z.snackBarModal,onClose:function(){y(!1),S((0,p.MK)(""))},message:_,ContentProps:{className:"".concat(Z.snackBar," ").concat(B&&"error"===B.type?Z.errorSnackBar:"")},autoHideDuration:B&&"error"===B.type?1e4:5e3}),(0,j.jsx)(d.Z,{className:g?"":Z.content,children:f})]}))}))}}]);
//# sourceMappingURL=1581.b3df67cf.chunk.js.map

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,2 @@
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[1581],{1581:function(e,t,n){n.r(t);var a=n(29439),s=n(1413),i=n(72791),o=n(36151),l=n(40986),c=n(11135),r=n(25787),u=n(61889),d=n(45248),m=n(23814),f=n(37516),Z=n(21435),h=n(56028),x=n(81207),p=n(3923),j=n(56578),v=n(87995),b=n(81551),g=n(80184);t.default=(0,r.Z)((function(e){return(0,c.Z)((0,s.Z)((0,s.Z)({},m.DF),m.ID))}))((function(e){var t=e.classes,n=e.open,s=e.enabled,c=e.cfg,r=e.selectedBucket,m=e.closeModalAndRefresh,k=(0,b.TL)(),C=(0,i.useState)(!1),S=(0,a.Z)(C,2),N=S[0],P=S[1],q=(0,i.useState)(!1),y=(0,a.Z)(q,2),B=y[0],w=y[1],E=(0,i.useState)("1"),_=(0,a.Z)(E,2),M=_[0],z=_[1],D=(0,i.useState)("Ti"),T=(0,a.Z)(D,2),F=T[0],I=T[1],L=(0,i.useState)(!1),Q=(0,a.Z)(L,2),R=Q[0],W=Q[1];(0,i.useEffect)((function(){if(s&&(w(!0),c)){var e=(0,d.Am)(c.quota,!0,!1,!0);z(e.total.toString()),I(e.unit),W(!0)}}),[s,c]),(0,i.useEffect)((function(){W(!B||/^\d*(?:\.\d{1,2})?$/.test(M))}),[B,M]);return(0,g.jsx)(h.Z,{modalOpen:n,onClose:function(){m()},title:"Enable Bucket Quota",titleIcon:(0,g.jsx)(p.Wqw,{}),children:(0,g.jsx)("form",{noValidate:!0,autoComplete:"off",onSubmit:function(e){e.preventDefault(),function(){if(!N&&R){var e={enabled:B,amount:parseInt((0,d.Pw)(M,F,!0)),quota_type:"hard"};x.Z.invoke("PUT","/api/v1/buckets/".concat(r,"/quota"),e).then((function(){P(!1),m()})).catch((function(e){P(!1),k((0,v.zb)(e))}))}}()},children:(0,g.jsxs)(u.ZP,{container:!0,children:[(0,g.jsxs)(u.ZP,{item:!0,xs:12,className:t.formScrollable,children:[(0,g.jsx)(u.ZP,{item:!0,xs:12,className:t.formFieldRow,children:(0,g.jsx)(f.Z,{value:"bucket_quota",id:"bucket_quota",name:"bucket_quota",checked:B,onChange:function(e){w(e.target.checked)},label:"Enabled"})}),B&&(0,g.jsx)(i.Fragment,{children:(0,g.jsx)(u.ZP,{item:!0,xs:12,className:t.formFieldRow,children:(0,g.jsx)(u.ZP,{container:!0,children:(0,g.jsx)(u.ZP,{item:!0,xs:12,children:(0,g.jsx)(Z.Z,{id:"quota_size",name:"quota_size",onChange:function(e){z(e.target.value),e.target.validity.valid?W(!0):W(!1)},label:"Quota",value:M,required:!0,min:"1",overlayObject:(0,g.jsx)(j.Z,{id:"quota_unit",onUnitChange:function(e){I(e)},unitSelected:F,unitsList:(0,d.zQ)(["Ki"]),disabled:!1}),error:R?"":"Please enter a valid quota"})})})})})]}),(0,g.jsxs)(u.ZP,{item:!0,xs:12,className:t.modalButtonBar,children:[(0,g.jsx)(o.Z,{type:"button",variant:"outlined",color:"primary",disabled:N,onClick:function(){m()},children:"Cancel"}),(0,g.jsx)(o.Z,{type:"submit",variant:"contained",color:"primary",disabled:N||!R,children:"Save"})]}),N&&(0,g.jsx)(u.ZP,{item:!0,xs:12,children:(0,g.jsx)(l.Z,{})})]})})})}))},56028:function(e,t,n){var a=n(29439),s=n(1413),i=n(72791),o=n(60364),l=n(13400),c=n(55646),r=n(5574),u=n(65661),d=n(39157),m=n(11135),f=n(25787),Z=n(23814),h=n(81551),x=n(29823),p=n(28057),j=n(87995),v=n(80184);t.Z=(0,f.Z)((function(e){return(0,m.Z)((0,s.Z)((0,s.Z)({},Z.Qw),{},{content:{padding:25,paddingBottom:0},customDialogSize:{width:"100%",maxWidth:765}},Z.sN))}))((function(e){var t=e.onClose,n=e.modalOpen,m=e.title,f=e.children,Z=e.classes,b=e.wideLimit,g=void 0===b||b,k=e.noContentPadding,C=e.titleIcon,S=void 0===C?null:C,N=(0,h.TL)(),P=(0,i.useState)(!1),q=(0,a.Z)(P,2),y=q[0],B=q[1],w=(0,o.v9)((function(e){return e.system.modalSnackBar}));(0,i.useEffect)((function(){N((0,j.MK)(""))}),[N]),(0,i.useEffect)((function(){if(w){if(""===w.message)return void B(!1);"error"!==w.type&&B(!0)}}),[w]);var E=g?{classes:{paper:Z.customDialogSize}}:{maxWidth:"lg",fullWidth:!0},_="";return w&&(_=w.detailedErrorMsg,(""===w.detailedErrorMsg||w.detailedErrorMsg.length<5)&&(_=w.message)),(0,v.jsxs)(r.Z,(0,s.Z)((0,s.Z)({open:n,classes:Z},E),{},{scroll:"paper",onClose:function(e,n){"backdropClick"!==n&&t()},className:Z.root,children:[(0,v.jsxs)(u.Z,{className:Z.title,children:[(0,v.jsxs)("div",{className:Z.titleText,children:[S," ",m]}),(0,v.jsx)("div",{className:Z.closeContainer,children:(0,v.jsx)(l.Z,{"aria-label":"close",id:"close",className:Z.closeButton,onClick:t,disableRipple:!0,size:"small",children:(0,v.jsx)(x.Z,{})})})]}),(0,v.jsx)(p.Z,{isModal:!0}),(0,v.jsx)(c.Z,{open:y,className:Z.snackBarModal,onClose:function(){B(!1),N((0,j.MK)(""))},message:_,ContentProps:{className:"".concat(Z.snackBar," ").concat(w&&"error"===w.type?Z.errorSnackBar:"")},autoHideDuration:w&&"error"===w.type?1e4:5e3}),(0,v.jsx)(d.Z,{className:k?"":Z.content,children:f})]}))}))}}]);
//# sourceMappingURL=1581.fb295899.chunk.js.map

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,2 @@
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[1604],{1604:function(e,t,n){n.r(t);var i=n(29439),a=n(1413),o=n(72791),s=n(36151),l=n(40986),r=n(11135),c=n(25787),u=n(61889),d=n(23814),m=n(81207),f=n(56028),Z=n(83679),h=n(21435),p=n(72401),x=n(87995),v=n(81551),b=n(80184);t.default=(0,c.Z)((function(e){return(0,r.Z)((0,a.Z)((0,a.Z)((0,a.Z)((0,a.Z)({},d.bK),d.QV),d.DF),d.ID))}))((function(e){var t=e.classes,n=e.open,a=e.bucketName,r=e.closeModalAndRefresh,c=(0,v.TL)(),d=(0,o.useState)(!1),j=(0,i.Z)(d,2),g=j[0],y=j[1],C=(0,o.useState)(!0),N=(0,i.Z)(C,2),S=N[0],k=N[1],P=(0,o.useState)("compliance"),w=(0,i.Z)(P,2),M=w[0],R=w[1],B=(0,o.useState)("days"),E=(0,i.Z)(B,2),_=E[0],D=E[1],F=(0,o.useState)(1),T=(0,i.Z)(F,2),z=T[0],O=T[1],K=(0,o.useState)(!1),L=(0,i.Z)(K,2),V=L[0],W=L[1];return(0,o.useEffect)((function(){Number.isNaN(z)||z<1?W(!1):W(!0)}),[z]),(0,o.useEffect)((function(){S&&m.Z.invoke("GET","/api/v1/buckets/".concat(a,"/retention")).then((function(e){k(!1),R(e.mode),O(e.validity),D(e.unit)})).catch((function(e){k(!1)}))}),[S,a]),(0,b.jsx)(f.Z,{title:"Set Retention Configuration",modalOpen:n,onClose:function(){r()},children:S?(0,b.jsx)(p.Z,{style:{width:16,height:16}}):(0,b.jsx)("form",{noValidate:!0,autoComplete:"off",onSubmit:function(e){e.preventDefault(),g||(y(!0),m.Z.invoke("PUT","/api/v1/buckets/".concat(a,"/retention"),{mode:M,unit:_,validity:z}).then((function(){y(!1),r()})).catch((function(e){y(!1),c((0,x.zb)(e))})))},children:(0,b.jsxs)(u.ZP,{container:!0,children:[(0,b.jsxs)(u.ZP,{item:!0,xs:12,className:t.modalFormScrollable,children:[(0,b.jsx)(u.ZP,{item:!0,xs:12,className:t.formFieldRow,children:(0,b.jsx)(Z.Z,{currentSelection:M,id:"retention_mode",name:"retention_mode",label:"Retention Mode",onChange:function(e){R(e.target.value)},selectorOptions:[{value:"compliance",label:"Compliance"},{value:"governance",label:"Governance"}]})}),(0,b.jsx)(u.ZP,{item:!0,xs:12,className:t.formFieldRow,children:(0,b.jsx)(Z.Z,{currentSelection:_,id:"retention_unit",name:"retention_unit",label:"Retention Unit",onChange:function(e){D(e.target.value)},selectorOptions:[{value:"days",label:"Days"},{value:"years",label:"Years"}]})}),(0,b.jsx)(u.ZP,{item:!0,xs:12,className:t.formFieldRow,children:(0,b.jsx)(h.Z,{type:"number",id:"retention_validity",name:"retention_validity",onChange:function(e){O(e.target.valueAsNumber)},label:"Retention Validity",value:String(z),required:!0,min:"1"})})]}),(0,b.jsxs)(u.ZP,{item:!0,xs:12,className:t.modalButtonBar,children:[(0,b.jsx)(s.Z,{type:"button",variant:"outlined",color:"primary",disabled:g,onClick:function(){r()},children:"Cancel"}),(0,b.jsx)(s.Z,{type:"submit",variant:"contained",color:"primary",disabled:g||!V,children:"Set"})]}),g&&(0,b.jsx)(u.ZP,{item:!0,xs:12,children:(0,b.jsx)(l.Z,{})})]})})})}))},56028:function(e,t,n){var i=n(29439),a=n(1413),o=n(72791),s=n(60364),l=n(13400),r=n(55646),c=n(5574),u=n(65661),d=n(39157),m=n(11135),f=n(25787),Z=n(23814),h=n(81551),p=n(29823),x=n(28057),v=n(87995),b=n(80184);t.Z=(0,f.Z)((function(e){return(0,m.Z)((0,a.Z)((0,a.Z)({},Z.Qw),{},{content:{padding:25,paddingBottom:0},customDialogSize:{width:"100%",maxWidth:765}},Z.sN))}))((function(e){var t=e.onClose,n=e.modalOpen,m=e.title,f=e.children,Z=e.classes,j=e.wideLimit,g=void 0===j||j,y=e.noContentPadding,C=e.titleIcon,N=void 0===C?null:C,S=(0,h.TL)(),k=(0,o.useState)(!1),P=(0,i.Z)(k,2),w=P[0],M=P[1],R=(0,s.v9)((function(e){return e.system.modalSnackBar}));(0,o.useEffect)((function(){S((0,v.MK)(""))}),[S]),(0,o.useEffect)((function(){if(R){if(""===R.message)return void M(!1);"error"!==R.type&&M(!0)}}),[R]);var B=g?{classes:{paper:Z.customDialogSize}}:{maxWidth:"lg",fullWidth:!0},E="";return R&&(E=R.detailedErrorMsg,(""===R.detailedErrorMsg||R.detailedErrorMsg.length<5)&&(E=R.message)),(0,b.jsxs)(c.Z,(0,a.Z)((0,a.Z)({open:n,classes:Z},B),{},{scroll:"paper",onClose:function(e,n){"backdropClick"!==n&&t()},className:Z.root,children:[(0,b.jsxs)(u.Z,{className:Z.title,children:[(0,b.jsxs)("div",{className:Z.titleText,children:[N," ",m]}),(0,b.jsx)("div",{className:Z.closeContainer,children:(0,b.jsx)(l.Z,{"aria-label":"close",id:"close",className:Z.closeButton,onClick:t,disableRipple:!0,size:"small",children:(0,b.jsx)(p.Z,{})})})]}),(0,b.jsx)(x.Z,{isModal:!0}),(0,b.jsx)(r.Z,{open:w,className:Z.snackBarModal,onClose:function(){M(!1),S((0,v.MK)(""))},message:E,ContentProps:{className:"".concat(Z.snackBar," ").concat(R&&"error"===R.type?Z.errorSnackBar:"")},autoHideDuration:R&&"error"===R.type?1e4:5e3}),(0,b.jsx)(d.Z,{className:y?"":Z.content,children:f})]}))}))}}]);
//# sourceMappingURL=1604.25690eb1.chunk.js.map

File diff suppressed because one or more lines are too long

View File

@@ -1,2 +0,0 @@
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[1604],{1604:function(e,t,n){n.r(t);var i=n(29439),a=n(1413),o=n(72791),s=n(60364),l=n(36151),r=n(40986),c=n(11135),u=n(25787),d=n(61889),m=n(23814),f=n(81207),Z=n(56028),h=n(83679),p=n(21435),x=n(72401),v=n(87995),b=n(80184);t.default=(0,u.Z)((function(e){return(0,c.Z)((0,a.Z)((0,a.Z)((0,a.Z)((0,a.Z)({},m.bK),m.QV),m.DF),m.ID))}))((function(e){var t=e.classes,n=e.open,a=e.bucketName,c=e.closeModalAndRefresh,u=(0,s.I0)(),m=(0,o.useState)(!1),j=(0,i.Z)(m,2),g=j[0],y=j[1],C=(0,o.useState)(!0),N=(0,i.Z)(C,2),S=N[0],k=N[1],P=(0,o.useState)("compliance"),w=(0,i.Z)(P,2),M=w[0],R=w[1],B=(0,o.useState)("days"),E=(0,i.Z)(B,2),_=E[0],D=E[1],F=(0,o.useState)(1),z=(0,i.Z)(F,2),I=z[0],O=z[1],K=(0,o.useState)(!1),T=(0,i.Z)(K,2),V=T[0],W=T[1];return(0,o.useEffect)((function(){Number.isNaN(I)||I<1?W(!1):W(!0)}),[I]),(0,o.useEffect)((function(){S&&f.Z.invoke("GET","/api/v1/buckets/".concat(a,"/retention")).then((function(e){k(!1),R(e.mode),O(e.validity),D(e.unit)})).catch((function(e){k(!1)}))}),[S,a]),(0,b.jsx)(Z.Z,{title:"Set Retention Configuration",modalOpen:n,onClose:function(){c()},children:S?(0,b.jsx)(x.Z,{style:{width:16,height:16}}):(0,b.jsx)("form",{noValidate:!0,autoComplete:"off",onSubmit:function(e){e.preventDefault(),g||(y(!0),f.Z.invoke("PUT","/api/v1/buckets/".concat(a,"/retention"),{mode:M,unit:_,validity:I}).then((function(){y(!1),c()})).catch((function(e){y(!1),u((0,v.zb)(e))})))},children:(0,b.jsxs)(d.ZP,{container:!0,children:[(0,b.jsxs)(d.ZP,{item:!0,xs:12,className:t.modalFormScrollable,children:[(0,b.jsx)(d.ZP,{item:!0,xs:12,className:t.formFieldRow,children:(0,b.jsx)(h.Z,{currentSelection:M,id:"retention_mode",name:"retention_mode",label:"Retention Mode",onChange:function(e){R(e.target.value)},selectorOptions:[{value:"compliance",label:"Compliance"},{value:"governance",label:"Governance"}]})}),(0,b.jsx)(d.ZP,{item:!0,xs:12,className:t.formFieldRow,children:(0,b.jsx)(h.Z,{currentSelection:_,id:"retention_unit",name:"retention_unit",label:"Retention Unit",onChange:function(e){D(e.target.value)},selectorOptions:[{value:"days",label:"Days"},{value:"years",label:"Years"}]})}),(0,b.jsx)(d.ZP,{item:!0,xs:12,className:t.formFieldRow,children:(0,b.jsx)(p.Z,{type:"number",id:"retention_validity",name:"retention_validity",onChange:function(e){O(e.target.valueAsNumber)},label:"Retention Validity",value:String(I),required:!0,min:"1"})})]}),(0,b.jsxs)(d.ZP,{item:!0,xs:12,className:t.modalButtonBar,children:[(0,b.jsx)(l.Z,{type:"button",variant:"outlined",color:"primary",disabled:g,onClick:function(){c()},children:"Cancel"}),(0,b.jsx)(l.Z,{type:"submit",variant:"contained",color:"primary",disabled:g||!V,children:"Set"})]}),g&&(0,b.jsx)(d.ZP,{item:!0,xs:12,children:(0,b.jsx)(r.Z,{})})]})})})}))},56028:function(e,t,n){var i=n(29439),a=n(1413),o=n(72791),s=n(60364),l=n(13400),r=n(55646),c=n(5574),u=n(65661),d=n(39157),m=n(11135),f=n(25787),Z=n(23814),h=n(29823),p=n(28057),x=n(87995),v=n(80184);t.Z=(0,f.Z)((function(e){return(0,m.Z)((0,a.Z)((0,a.Z)({},Z.Qw),{},{content:{padding:25,paddingBottom:0},customDialogSize:{width:"100%",maxWidth:765}},Z.sN))}))((function(e){var t=e.onClose,n=e.modalOpen,m=e.title,f=e.children,Z=e.classes,b=e.wideLimit,j=void 0===b||b,g=e.noContentPadding,y=e.titleIcon,C=void 0===y?null:y,N=(0,s.I0)(),S=(0,o.useState)(!1),k=(0,i.Z)(S,2),P=k[0],w=k[1],M=(0,s.v9)((function(e){return e.system.modalSnackBar}));(0,o.useEffect)((function(){N((0,x.MK)(""))}),[N]),(0,o.useEffect)((function(){if(M){if(""===M.message)return void w(!1);"error"!==M.type&&w(!0)}}),[M]);var R=j?{classes:{paper:Z.customDialogSize}}:{maxWidth:"lg",fullWidth:!0},B="";return M&&(B=M.detailedErrorMsg,(""===M.detailedErrorMsg||M.detailedErrorMsg.length<5)&&(B=M.message)),(0,v.jsxs)(c.Z,(0,a.Z)((0,a.Z)({open:n,classes:Z},R),{},{scroll:"paper",onClose:function(e,n){"backdropClick"!==n&&t()},className:Z.root,children:[(0,v.jsxs)(u.Z,{className:Z.title,children:[(0,v.jsxs)("div",{className:Z.titleText,children:[C," ",m]}),(0,v.jsx)("div",{className:Z.closeContainer,children:(0,v.jsx)(l.Z,{"aria-label":"close",id:"close",className:Z.closeButton,onClick:t,disableRipple:!0,size:"small",children:(0,v.jsx)(h.Z,{})})})]}),(0,v.jsx)(p.Z,{isModal:!0}),(0,v.jsx)(r.Z,{open:P,className:Z.snackBarModal,onClose:function(){w(!1),N((0,x.MK)(""))},message:B,ContentProps:{className:"".concat(Z.snackBar," ").concat(M&&"error"===M.type?Z.errorSnackBar:"")},autoHideDuration:M&&"error"===M.type?1e4:5e3}),(0,v.jsx)(d.Z,{className:g?"":Z.content,children:f})]}))}))}}]);
//# sourceMappingURL=1604.c298cecf.chunk.js.map

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,2 @@
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[1705],{71705:function(e,n,t){t.r(n);var l=t(29439),s=t(72791),o=t(9505),i=t(64554),c=t(56087),a=t(38442),u=t(26181),r=t.n(u),d=t(81918),h=t(29823),f=t(42419),p=t(75578),v=t(72401),x=t(87995),Z=t(81551),T=t(80184),j=(0,p.Z)(s.lazy((function(){return t.e(247).then(t.bind(t,40247))}))),m=(0,p.Z)(s.lazy((function(){return t.e(2763).then(t.bind(t,22763))})));n.default=function(e){var n=e.bucketName,t=(0,Z.TL)(),u=(0,s.useState)(null),p=(0,l.Z)(u,2),b=p[0],k=p[1],g=(0,s.useState)(!1),G=(0,l.Z)(g,2),_=G[0],y=G[1],C=(0,s.useState)([]),A=(0,l.Z)(C,2),S=A[0],U=A[1],E=(0,s.useState)(["",""]),I=(0,l.Z)(E,2),N=I[0],z=I[1],w=(0,s.useState)(!1),F=(0,l.Z)(w,2),P=F[0],B=F[1],K=(0,o.Z)((function(e){var n,t;null!=e&&null!=(null===e||void 0===e?void 0:e.details)&&"tags"in(null===e||void 0===e?void 0:e.details)&&(k(null===e||void 0===e||null===(n=e.details)||void 0===n?void 0:n.tags),U(Object.keys(null===e||void 0===e||null===(t=e.details)||void 0===t?void 0:t.tags)))}),(function(e){t((0,x.Ih)(e))})),O=(0,l.Z)(K,2),D=O[0],H=O[1],L=function(){H("GET","/api/v1/buckets/".concat(n))};return(0,s.useEffect)((function(){L()}),[n]),(0,T.jsxs)(i.Z,{children:[D?(0,T.jsx)(v.Z,{style:{width:16,height:16}}):null,(0,T.jsx)(a.s,{scopes:[c.Ft.S3_GET_BUCKET_TAGGING],resource:n,children:(0,T.jsxs)(i.Z,{sx:{display:"flex",flexFlow:"column"},children:[(0,T.jsx)(i.Z,{children:S&&S.map((function(e,t){var l=r()(b,"".concat(e),"");return""!==l?(0,T.jsx)(a.s,{scopes:[c.Ft.S3_PUT_BUCKET_TAGGING],resource:n,matchAll:!0,errorProps:{deleteIcon:null,onDelete:null},children:(0,T.jsx)(d.Z,{style:{textTransform:"none",marginRight:"5px"},size:"small",label:"".concat(e," : ").concat(l),color:"primary",deleteIcon:(0,T.jsx)(h.Z,{}),onDelete:function(){!function(e,n){z([e,n]),B(!0)}(e,l)}})},"chip-".concat(t)):null}))}),(0,T.jsx)(a.s,{scopes:[c.Ft.S3_PUT_BUCKET_TAGGING],resource:n,errorProps:{disabled:!0,onClick:null},children:(0,T.jsx)(d.Z,{style:{maxWidth:80,marginTop:"10px"},icon:(0,T.jsx)(f.Z,{}),clickable:!0,size:"small",label:"Add tag",color:"primary",variant:"outlined",onClick:function(){y(!0)}})})]})}),_&&(0,T.jsx)(j,{modalOpen:_,currentTags:b,bucketName:n,onCloseAndUpdate:function(e){y(!1),e&&L()}}),P&&(0,T.jsx)(m,{deleteOpen:P,currentTags:b,bucketName:n,onCloseAndUpdate:function(e){B(!1),e&&L()},selectedTag:N})]})}},42419:function(e,n,t){var l=t(95318);n.Z=void 0;var s=l(t(45649)),o=t(80184),i=(0,s.default)((0,o.jsx)("path",{d:"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"}),"Add");n.Z=i}}]);
//# sourceMappingURL=1705.32ce00fc.chunk.js.map

File diff suppressed because one or more lines are too long

View File

@@ -1,2 +0,0 @@
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[1705],{71705:function(e,n,t){t.r(n);var l=t(29439),s=t(72791),o=t(9505),i=t(64554),c=t(56087),a=t(38442),u=t(26181),r=t.n(u),d=t(81918),h=t(29823),f=t(42419),p=t(75578),v=t(72401),x=t(60364),Z=t(87995),j=t(80184),m=(0,p.Z)(s.lazy((function(){return t.e(247).then(t.bind(t,40247))}))),T=(0,p.Z)(s.lazy((function(){return t.e(2763).then(t.bind(t,22763))})));n.default=function(e){var n=e.bucketName,t=(0,x.I0)(),u=(0,s.useState)(null),p=(0,l.Z)(u,2),b=p[0],k=p[1],g=(0,s.useState)(!1),G=(0,l.Z)(g,2),_=G[0],y=G[1],C=(0,s.useState)([]),A=(0,l.Z)(C,2),S=A[0],I=A[1],U=(0,s.useState)(["",""]),E=(0,l.Z)(U,2),N=E[0],z=E[1],w=(0,s.useState)(!1),F=(0,l.Z)(w,2),P=F[0],B=F[1],K=(0,o.Z)((function(e){var n,t;null!=e&&null!=(null===e||void 0===e?void 0:e.details)&&"tags"in(null===e||void 0===e?void 0:e.details)&&(k(null===e||void 0===e||null===(n=e.details)||void 0===n?void 0:n.tags),I(Object.keys(null===e||void 0===e||null===(t=e.details)||void 0===t?void 0:t.tags)))}),(function(e){t((0,Z.Ih)(e))})),O=(0,l.Z)(K,2),D=O[0],H=O[1],M=function(){H("GET","/api/v1/buckets/".concat(n))};return(0,s.useEffect)((function(){M()}),[n]),(0,j.jsxs)(i.Z,{children:[D?(0,j.jsx)(v.Z,{style:{width:16,height:16}}):null,(0,j.jsx)(a.s,{scopes:[c.Ft.S3_GET_BUCKET_TAGGING],resource:n,children:(0,j.jsxs)(i.Z,{sx:{display:"flex",flexFlow:"column"},children:[(0,j.jsx)(i.Z,{children:S&&S.map((function(e,t){var l=r()(b,"".concat(e),"");return""!==l?(0,j.jsx)(a.s,{scopes:[c.Ft.S3_PUT_BUCKET_TAGGING],resource:n,matchAll:!0,errorProps:{deleteIcon:null,onDelete:null},children:(0,j.jsx)(d.Z,{style:{textTransform:"none",marginRight:"5px"},size:"small",label:"".concat(e," : ").concat(l),color:"primary",deleteIcon:(0,j.jsx)(h.Z,{}),onDelete:function(){!function(e,n){z([e,n]),B(!0)}(e,l)}})},"chip-".concat(t)):null}))}),(0,j.jsx)(a.s,{scopes:[c.Ft.S3_PUT_BUCKET_TAGGING],resource:n,errorProps:{disabled:!0,onClick:null},children:(0,j.jsx)(d.Z,{style:{maxWidth:80,marginTop:"10px"},icon:(0,j.jsx)(f.Z,{}),clickable:!0,size:"small",label:"Add tag",color:"primary",variant:"outlined",onClick:function(){y(!0)}})})]})}),_&&(0,j.jsx)(m,{modalOpen:_,currentTags:b,bucketName:n,onCloseAndUpdate:function(e){y(!1),e&&M()}}),P&&(0,j.jsx)(T,{deleteOpen:P,currentTags:b,bucketName:n,onCloseAndUpdate:function(e){B(!1),e&&M()},selectedTag:N})]})}},42419:function(e,n,t){var l=t(95318);n.Z=void 0;var s=l(t(45649)),o=t(80184),i=(0,s.default)((0,o.jsx)("path",{d:"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"}),"Add");n.Z=i}}]);
//# sourceMappingURL=1705.58e59f26.chunk.js.map

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,2 @@
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[2112],{32112:function(e,n,t){t.r(n);var a=t(29439),o=t(72791),r=t(51691),i=t(21435),c=t(61889),s=t(9505),l=t(2148),u=t(3923),p=t(87995),f=t(81551),d=t(80184);n.default=function(e){var n=e.deleteOpen,t=e.selectedPVC,m=e.closeDeleteModalAndRefresh,h=(0,f.TL)(),C=(0,o.useState)(""),x=(0,a.Z)(C,2),v=x[0],P=x[1],Z=(0,s.Z)((function(){return m(!0)}),(function(e){return h((0,p.Ih)(e))})),b=(0,a.Z)(Z,2),j=b[0],T=b[1];return(0,d.jsx)(l.Z,{title:"Delete PVC",confirmText:"Delete",isOpen:n,titleIcon:(0,d.jsx)(u.NvT,{}),isLoading:j,onConfirm:function(){v===t.name?T("DELETE","/api/v1/namespaces/".concat(t.namespace,"/tenants/").concat(t.tenant,"/pvc/").concat(t.name)):h((0,p.Ih)({errorMessage:"PVC name is incorrect",detailedError:""}))},onClose:function(){return m(!1)},confirmButtonProps:{disabled:v!==t.name||j},confirmationContent:(0,d.jsxs)(r.Z,{children:["To continue please type ",(0,d.jsx)("b",{children:t.name})," in the box.",(0,d.jsx)(c.ZP,{item:!0,xs:12,children:(0,d.jsx)(i.Z,{id:"retype-PVC",name:"retype-PVC",onChange:function(e){P(e.target.value)},label:"",value:v})})]})})}}}]);
//# sourceMappingURL=2112.10f63a9c.chunk.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"static/js/2112.10f63a9c.chunk.js","mappings":"8OAkGA,UA/DkB,SAAC,GAIA,IAHjBA,EAGgB,EAHhBA,WACAC,EAEgB,EAFhBA,YACAC,EACgB,EADhBA,2BAEMC,GAAWC,EAAAA,EAAAA,MACjB,GAAkCC,EAAAA,EAAAA,UAAS,IAA3C,eAAOC,EAAP,KAAkBC,EAAlB,KAOA,GAAyCC,EAAAA,EAAAA,IALpB,kBAAMN,GAA2B,MACnC,SAACO,GAAD,OACjBN,GAASO,EAAAA,EAAAA,IAAqBD,OAGhC,eAAOE,EAAP,KAAsBC,EAAtB,KAkBA,OACE,SAAC,IAAD,CACEC,MAAK,aACLC,YAAa,SACbC,OAAQf,EACRgB,WAAW,SAAC,MAAD,IACXC,UAAWN,EACXO,UAvBoB,WAClBZ,IAAcL,EAAYkB,KAS9BP,EACE,SADa,6BAESX,EAAYmB,UAFrB,oBAE0CnB,EAAYoB,OAFtD,gBAEoEpB,EAAYkB,OAV7FhB,GACEO,EAAAA,EAAAA,IAAqB,CACnBY,aAAc,wBACdC,cAAe,OAmBnBC,QA5BY,kBAAMtB,GAA2B,IA6B7CuB,mBAAoB,CAClBC,SAAUpB,IAAcL,EAAYkB,MAAQR,GAE9CgB,qBACE,UAAC,IAAD,uCAC0B,uBAAI1B,EAAYkB,OAD1C,gBAEE,SAAC,KAAD,CAAMS,MAAI,EAACC,GAAI,GAAf,UACE,SAAC,IAAD,CACEC,GAAG,aACHX,KAAK,aACLY,SAAU,SAACC,GACTzB,EAAayB,EAAMC,OAAOC,QAE5BC,MAAM,GACND,MAAO5B","sources":["screens/Console/Tenants/TenantDetails/DeletePVC.tsx"],"sourcesContent":["// This file is part of MinIO Console Server\n// Copyright (c) 2022 MinIO, Inc.\n//\n// This program is free software: you can redistribute it and/or modify\n// it under the terms of the GNU Affero General Public License as published by\n// the Free Software Foundation, either version 3 of the License, or\n// (at your option) any later version.\n//\n// This program is distributed in the hope that it will be useful,\n// but WITHOUT ANY WARRANTY; without even the implied warranty of\n// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n// GNU Affero General Public License for more details.\n//\n// You should have received a copy of the GNU Affero General Public License\n// along with this program. If not, see <http://www.gnu.org/licenses/>.\n\nimport React, { useState } from \"react\";\nimport { DialogContentText } from \"@mui/material\";\nimport InputBoxWrapper from \"../../Common/FormComponents/InputBoxWrapper/InputBoxWrapper\";\nimport Grid from \"@mui/material/Grid\";\n\nimport { ErrorResponseHandler } from \"../../../../common/types\";\nimport useApi from \"../../Common/Hooks/useApi\";\nimport ConfirmDialog from \"../../Common/ModalWrapper/ConfirmDialog\";\nimport { ConfirmDeleteIcon } from \"../../../../icons\";\nimport { IStoragePVCs } from \"../../Storage/types\";\nimport { setErrorSnackMessage } from \"../../../../systemSlice\";\nimport { useAppDispatch } from \"../../../../store\";\n\ninterface IDeletePVC {\n deleteOpen: boolean;\n selectedPVC: IStoragePVCs;\n closeDeleteModalAndRefresh: (refreshList: boolean) => any;\n}\n\nconst DeletePVC = ({\n deleteOpen,\n selectedPVC,\n closeDeleteModalAndRefresh,\n}: IDeletePVC) => {\n const dispatch = useAppDispatch();\n const [retypePVC, setRetypePVC] = useState(\"\");\n\n const onDelSuccess = () => closeDeleteModalAndRefresh(true);\n const onDelError = (err: ErrorResponseHandler) =>\n dispatch(setErrorSnackMessage(err));\n const onClose = () => closeDeleteModalAndRefresh(false);\n\n const [deleteLoading, invokeDeleteApi] = useApi(onDelSuccess, onDelError);\n\n const onConfirmDelete = () => {\n if (retypePVC !== selectedPVC.name) {\n dispatch(\n setErrorSnackMessage({\n errorMessage: \"PVC name is incorrect\",\n detailedError: \"\",\n })\n );\n return;\n }\n invokeDeleteApi(\n \"DELETE\",\n `/api/v1/namespaces/${selectedPVC.namespace}/tenants/${selectedPVC.tenant}/pvc/${selectedPVC.name}`\n );\n };\n\n return (\n <ConfirmDialog\n title={`Delete PVC`}\n confirmText={\"Delete\"}\n isOpen={deleteOpen}\n titleIcon={<ConfirmDeleteIcon />}\n isLoading={deleteLoading}\n onConfirm={onConfirmDelete}\n onClose={onClose}\n confirmButtonProps={{\n disabled: retypePVC !== selectedPVC.name || deleteLoading,\n }}\n confirmationContent={\n <DialogContentText>\n To continue please type <b>{selectedPVC.name}</b> in the box.\n <Grid item xs={12}>\n <InputBoxWrapper\n id=\"retype-PVC\"\n name=\"retype-PVC\"\n onChange={(event: React.ChangeEvent<HTMLInputElement>) => {\n setRetypePVC(event.target.value);\n }}\n label=\"\"\n value={retypePVC}\n />\n </Grid>\n </DialogContentText>\n }\n />\n );\n};\n\nexport default DeletePVC;\n"],"names":["deleteOpen","selectedPVC","closeDeleteModalAndRefresh","dispatch","useAppDispatch","useState","retypePVC","setRetypePVC","useApi","err","setErrorSnackMessage","deleteLoading","invokeDeleteApi","title","confirmText","isOpen","titleIcon","isLoading","onConfirm","name","namespace","tenant","errorMessage","detailedError","onClose","confirmButtonProps","disabled","confirmationContent","item","xs","id","onChange","event","target","value","label"],"sourceRoot":""}

View File

@@ -1,2 +0,0 @@
"use strict";(self.webpackChunkportal_ui=self.webpackChunkportal_ui||[]).push([[2112],{32112:function(e,n,t){t.r(n);var a=t(29439),o=t(72791),r=t(51691),i=t(21435),c=t(61889),s=t(60364),l=t(9505),u=t(2148),p=t(51047),f=t(87995),d=t(80184);n.default=function(e){var n=e.deleteOpen,t=e.selectedPVC,m=e.closeDeleteModalAndRefresh,h=(0,s.I0)(),C=(0,o.useState)(""),x=(0,a.Z)(C,2),v=x[0],P=x[1],Z=(0,l.Z)((function(){return m(!0)}),(function(e){return h((0,f.Ih)(e))})),b=(0,a.Z)(Z,2),j=b[0],V=b[1];return(0,d.jsx)(u.Z,{title:"Delete PVC",confirmText:"Delete",isOpen:n,titleIcon:(0,d.jsx)(p.NvT,{}),isLoading:j,onConfirm:function(){v===t.name?V("DELETE","/api/v1/namespaces/".concat(t.namespace,"/tenants/").concat(t.tenant,"/pvc/").concat(t.name)):h((0,f.Ih)({errorMessage:"PVC name is incorrect",detailedError:""}))},onClose:function(){return m(!1)},confirmButtonProps:{disabled:v!==t.name||j},confirmationContent:(0,d.jsxs)(r.Z,{children:["To continue please type ",(0,d.jsx)("b",{children:t.name})," in the box.",(0,d.jsx)(c.ZP,{item:!0,xs:12,children:(0,d.jsx)(i.Z,{id:"retype-PVC",name:"retype-PVC",onChange:function(e){P(e.target.value)},label:"",value:v})})]})})}}}]);
//# sourceMappingURL=2112.d99282a3.chunk.js.map

Some files were not shown because too many files have changed in this diff Show More