forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRepositoryCompareOverviewPage.tsx
180 lines (169 loc) · 7.38 KB
/
RepositoryCompareOverviewPage.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
import { Hoverifier } from '@sourcegraph/codeintellify'
import { LoadingSpinner } from '@sourcegraph/react-loading-spinner'
import * as React from 'react'
import { RouteComponentProps } from 'react-router'
import { merge, Observable, of, Subject, Subscription } from 'rxjs'
import { catchError, distinctUntilChanged, map, switchMap } from 'rxjs/operators'
import { ActionItemAction } from '../../../../shared/src/actions/ActionItem'
import { HoverMerged } from '../../../../shared/src/api/client/types/hover'
import { ExtensionsControllerProps } from '../../../../shared/src/extensions/controller'
import { gql } from '../../../../shared/src/graphql/graphql'
import * as GQL from '../../../../shared/src/graphql/schema'
import { PlatformContextProps } from '../../../../shared/src/platform/context'
import { asError, createAggregateError, ErrorLike, isErrorLike } from '../../../../shared/src/util/errors'
import { FileSpec, RepoSpec, ResolvedRevSpec, RevSpec } from '../../../../shared/src/util/url'
import { queryGraphQL } from '../../backend/graphql'
import { PageTitle } from '../../components/PageTitle'
import { eventLogger } from '../../tracking/eventLogger'
import { RepositoryCompareAreaPageProps } from './RepositoryCompareArea'
import { RepositoryCompareCommitsPage } from './RepositoryCompareCommitsPage'
import { RepositoryCompareDiffPage } from './RepositoryCompareDiffPage'
import { ThemeProps } from '../../../../shared/src/theme'
import { ErrorAlert } from '../../components/alerts'
function queryRepositoryComparison(args: {
repo: GQL.ID
base: string | null
head: string | null
}): Observable<GQL.IGitRevisionRange> {
return queryGraphQL(
gql`
query RepositoryComparison($repo: ID!, $base: String, $head: String) {
node(id: $repo) {
... on Repository {
comparison(base: $base, head: $head) {
range {
expr
baseRevSpec {
object {
oid
}
}
headRevSpec {
object {
oid
}
}
}
}
}
}
}
`,
args
).pipe(
map(({ data, errors }) => {
if (!data || !data.node) {
throw createAggregateError(errors)
}
const repo = data.node as GQL.IRepository
if (
!repo.comparison ||
!repo.comparison.range ||
!repo.comparison.range.baseRevSpec ||
!repo.comparison.range.baseRevSpec.object ||
!repo.comparison.range.headRevSpec ||
!repo.comparison.range.headRevSpec.object ||
errors
) {
throw createAggregateError(errors)
}
eventLogger.log('RepositoryComparisonFetched')
return repo.comparison.range
})
)
}
interface Props
extends RepositoryCompareAreaPageProps,
RouteComponentProps<{}>,
PlatformContextProps,
ExtensionsControllerProps,
ThemeProps {
/** The base of the comparison. */
base: { repoName: string; repoID: GQL.ID; rev?: string | null }
/** The head of the comparison. */
head: { repoName: string; repoID: GQL.ID; rev?: string | null }
hoverifier: Hoverifier<RepoSpec & RevSpec & FileSpec & ResolvedRevSpec, HoverMerged, ActionItemAction>
}
interface State {
/** The comparison's range, null when no comparison is requested, undefined while loading, or an error. */
rangeOrError?: null | GQL.IGitRevisionRange | ErrorLike
}
/** A page with an overview of the comparison. */
export class RepositoryCompareOverviewPage extends React.PureComponent<Props, State> {
public state: State = {}
private componentUpdates = new Subject<Props>()
private subscriptions = new Subscription()
public componentDidMount(): void {
eventLogger.logViewEvent('RepositoryCompareOverview')
this.subscriptions.add(
this.componentUpdates
.pipe(
distinctUntilChanged(
(a, b) => a.repo.id === b.repo.id && a.base.rev === b.base.rev && a.head.rev === b.head.rev
),
switchMap(({ repo, base, head }) => {
if (!base.rev && !head.rev) {
return of({ rangeOrError: null })
}
return merge(
of({ rangeOrError: undefined }),
queryRepositoryComparison({
repo: repo.id,
base: base.rev || null,
head: head.rev || null,
}).pipe(
catchError(error => [asError(error)]),
map((rangeOrError): Pick<State, 'rangeOrError'> => ({ rangeOrError }))
)
)
})
)
.subscribe(
stateUpdate => this.setState(stateUpdate),
error => console.error(error)
)
)
this.componentUpdates.next(this.props)
}
public componentDidUpdate(): void {
this.componentUpdates.next(this.props)
}
public componentWillUnmount(): void {
this.subscriptions.unsubscribe()
}
public render(): JSX.Element | null {
return (
<div className="repository-compare-page">
<PageTitle title="Compare" />
{this.state.rangeOrError === null ? (
<p>Enter two Git revspecs to compare.</p>
) : this.state.rangeOrError === undefined ? (
<LoadingSpinner className="icon-inline" />
) : isErrorLike(this.state.rangeOrError) ? (
<ErrorAlert className="mt-2" error={this.state.rangeOrError} />
) : (
<>
<RepositoryCompareCommitsPage {...this.props} />
<div className="mb-3" />
<RepositoryCompareDiffPage
{...this.props}
base={{
repoName: this.props.base.repoName,
repoID: this.props.base.repoID,
rev: this.props.base.rev || null,
commitID: this.state.rangeOrError.baseRevSpec.object!.oid,
}}
head={{
repoName: this.props.head.repoName,
repoID: this.props.head.repoID,
rev: this.props.head.rev || null,
commitID: this.state.rangeOrError.headRevSpec.object!.oid,
}}
extensionsController={this.props.extensionsController}
/>
</>
)}
</div>
)
}
}