forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSavedSearchForm.tsx
186 lines (176 loc) · 8.03 KB
/
SavedSearchForm.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
import * as H from 'history'
import * as React from 'react'
import { RouteComponentProps } from 'react-router'
import { Omit } from 'utility-types'
import * as GQL from '../../../shared/src/graphql/schema'
import { Form } from '../components/Form'
import { NamespaceProps } from '../namespaces'
import { ErrorAlert } from '../components/alerts'
export interface SavedQueryFields {
id: GQL.ID
description: string
query: string
notify: boolean
notifySlack: boolean
slackWebhookURL: string | null
}
interface Props extends RouteComponentProps<{}>, NamespaceProps {
location: H.Location
history: H.History
authenticatedUser: GQL.IUser | null
defaultValues?: Partial<SavedQueryFields>
title?: string
submitLabel: string
onSubmit: (fields: Omit<SavedQueryFields, 'id'>) => void
loading: boolean
error?: any
}
interface State {
values: Omit<SavedQueryFields, 'id'>
}
export class SavedSearchForm extends React.Component<Props, State> {
constructor(props: Props) {
super(props)
const { description = '', query = '', notify = false, notifySlack = false, slackWebhookURL = '' } =
props.defaultValues || {}
this.state = {
values: {
description,
query,
notify,
notifySlack,
slackWebhookURL,
},
}
}
/**
* Returns an input change handler that updates the SavedQueryFields in the component's state
*
* @param key The key of saved query fields that a change of this input should update
*/
private createInputChangeHandler(key: keyof SavedQueryFields): React.FormEventHandler<HTMLInputElement> {
return event => {
const { value, checked, type } = event.currentTarget
this.setState(state => ({
values: {
...state.values,
[key]: type === 'checkbox' ? checked : value,
},
}))
}
}
private handleSubmit = (event: React.FormEvent<HTMLFormElement>): void => {
event.preventDefault()
this.props.onSubmit(this.state.values)
}
public render(): JSX.Element | null {
const {
values: { query, description, notify, notifySlack, slackWebhookURL },
} = this.state
return (
<div className="saved-search-form">
<div className="saved-search-form__header">
<h2>{this.props.title}</h2>
<div>Get notifications when there are new results for specific search queries</div>
</div>
<Form onSubmit={this.handleSubmit}>
<div className="saved-search-form__input">
<label className="saved-search-form__label">Description:</label>
<input
type="text"
name="description"
className="form-control e2e-saved-search-form-input-description"
placeholder="Description"
required={true}
value={description}
onChange={this.createInputChangeHandler('description')}
/>
</div>
<div className="saved-search-form__input">
<label className="saved-search-form__label">Query:</label>
<input
type="text"
name="query"
className="form-control e2e-saved-search-form-input-query"
placeholder="Query"
required={true}
value={query}
onChange={this.createInputChangeHandler('query')}
/>
</div>
<div className="saved-search-form__input">
<label className="saved-search-form__label">Email notifications:</label>
<div>
<label>
<input
type="checkbox"
name="Notify owner"
className="saved-search-form__checkbox"
defaultChecked={notify}
onChange={this.createInputChangeHandler('notify')}
/>{' '}
<span>
{this.props.namespace.__typename === 'Org'
? 'Send email notifications to all members of this organization'
: this.props.namespace.__typename === 'User'
? 'Send email notifications to my email'
: 'Email notifications'}
</span>
</label>
</div>
</div>
{notifySlack && slackWebhookURL && (
<div className="saved-search-form__input">
<label className="saved-search-form__label">Slack notifications:</label>
<label>
<input
type="text"
name="Slack webhook URL"
className="form-control"
value={slackWebhookURL}
disabled={true}
onChange={this.createInputChangeHandler('slackWebhookURL')}
/>
</label>
<label className="small">
Slack webhooks are deprecated and will be removed in a future Sourcegraph version.
</label>
</div>
)}
{this.isUnsupportedNotifyQuery(this.state.values) && (
<div className="alert alert-warning mb-3">
<strong>Warning:</strong> non-commit searches do not currently support notifications.
Consider adding <code>type:diff</code> or <code>type:commit</code> to your query.
</div>
)}
{notify && !window.context.emailEnabled && !this.isUnsupportedNotifyQuery(this.state.values) && (
<div className="alert alert-warning mb-3">
<strong>Warning:</strong> Sending emails is not currently configured on this Sourcegraph
server.{' '}
{this.props.authenticatedUser && this.props.authenticatedUser.siteAdmin
? 'Use the email.smtp site configuration setting to enable sending emails.'
: 'Contact your server admin for more information.'}
</div>
)}
<button
type="submit"
disabled={this.props.loading}
className="btn btn-primary saved-search-form__submit-button e2e-saved-search-form-submit-button"
>
{this.props.submitLabel}
</button>
{this.props.error && !this.props.loading && (
<ErrorAlert className="mb-3" error={this.props.error} />
)}
</Form>
</div>
)
}
/**
* Tells if the query is unsupported for sending notifications.
*/
private isUnsupportedNotifyQuery(v: Omit<SavedQueryFields, 'id'>): boolean {
const notifying = v.notify || v.notifySlack
return notifying && !v.query.includes('type:diff') && !v.query.includes('type:commit')
}
}