123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- import React, {useRef} from 'react';
- import Editor from '@monaco-editor/react';
- import {
- addErrorMessage,
- addLoadingMessage,
- addSuccessMessage,
- } from 'sentry/actionCreators/indicator';
- import Feature from 'sentry/components/acl/feature';
- import AsyncComponent from 'sentry/components/asyncComponent';
- import Form from 'sentry/components/forms/form';
- import JsonForm from 'sentry/components/forms/jsonForm';
- import FormModel from 'sentry/components/forms/model';
- import {Field} from 'sentry/components/forms/type';
- import {Panel, PanelBody, PanelHeader} from 'sentry/components/panels';
- import {t} from 'sentry/locale';
- type Props = WrapperProps;
- const formFields: Field[] = [
- {
- name: 'name',
- type: 'string',
- required: true,
- placeholder: 'e.g. My Sentry Function',
- label: 'Name',
- help: 'Human readable name of your Sentry Function',
- },
- {
- name: 'author',
- type: 'string',
- placeholder: 'e.g. Acme Software',
- label: 'Author',
- help: 'The company or person who built and maintains this Sentry Function.',
- },
- {
- name: 'overview',
- type: 'string',
- placeholder: 'e.g. This Sentry Function does something useful',
- label: 'Overview',
- help: 'A short description of your Sentry Function.',
- },
- ];
- function SentryFunctionDetails(props: Props) {
- const form = useRef(new FormModel());
- const {orgId, functionSlug} = props.params;
- const method = functionSlug ? 'PUT' : 'POST';
- const endpoint = `/organizations/${orgId}/functions/`;
- const handleSubmitError = err => {
- let errorMessage = t('Unknown Error');
- if (err.status >= 400 && err.status < 500) {
- errorMessage = err?.responseJSON.detail ?? errorMessage;
- }
- addErrorMessage(errorMessage);
- };
- const handleSubmitSuccess = data => {
- addSuccessMessage(t('Sentry Function successfully saved.', data.name));
- };
- function handleEditorChange(value, _event) {
- form.current.setValue('code', value);
- }
- const defaultCode = `exports.yourFunction = (req, res) => {
- let message = req.query.message || req.body.message || 'Hello World!';
- console.log('Query: ' + req.query);
- console.log('Body: ' + req.body);
- res.status(200).send(message);
- };`;
- return (
- <div>
- <Feature features={['organizations:sentry-functions']}>
- <h1>{t('Sentry Function Details')}</h1>
- <h2>{props.params.orgId}</h2>
- <Form
- apiMethod={method}
- apiEndpoint={endpoint}
- model={form.current}
- onPreSubmit={() => {
- addLoadingMessage(t('Saving changes..'));
- }}
- onSubmitError={handleSubmitError}
- onSubmitSuccess={handleSubmitSuccess}
- >
- <JsonForm forms={[{title: t('Sentry Function Details'), fields: formFields}]} />
- <Panel>
- <PanelHeader>Write your Code Below</PanelHeader>
- <PanelBody>
- <Editor
- height="40vh"
- theme="light"
- defaultLanguage="javascript"
- defaultValue={defaultCode}
- onChange={handleEditorChange}
- options={{
- minimap: {
- enabled: false,
- },
- scrollBeyondLastLine: false,
- }}
- />
- </PanelBody>
- </Panel>
- </Form>
- </Feature>
- </div>
- );
- }
- type WrapperState = {} & AsyncComponent['state'];
- type WrapperProps = {
- params: {orgId: string; functionSlug?: string};
- } & AsyncComponent['props'];
- class SentryFunctionsWrapper extends AsyncComponent<WrapperProps, WrapperState> {
- renderBody() {
- return <SentryFunctionDetails {...this.props} />;
- }
- }
- export default SentryFunctionsWrapper;
|