123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- import {Fragment} from 'react';
- import {RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import {
- addErrorMessage,
- addLoadingMessage,
- addSuccessMessage,
- } from 'sentry/actionCreators/indicator';
- import Access from 'sentry/components/acl/access';
- import Button from 'sentry/components/button';
- import ButtonBar from 'sentry/components/buttonBar';
- import Confirm from 'sentry/components/confirm';
- import Pagination from 'sentry/components/pagination';
- import {PanelTable} from 'sentry/components/panels';
- import SearchBar from 'sentry/components/searchBar';
- import TextOverflow from 'sentry/components/textOverflow';
- import Tooltip from 'sentry/components/tooltip';
- import Version from 'sentry/components/version';
- import {IconDelete} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import space from 'sentry/styles/space';
- import {Artifact, Organization, Project} from 'sentry/types';
- import {formatVersion} from 'sentry/utils/formatters';
- import {decodeScalar} from 'sentry/utils/queryString';
- import routeTitleGen from 'sentry/utils/routeTitle';
- import AsyncView from 'sentry/views/asyncView';
- import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader';
- import SourceMapsArtifactRow from './sourceMapsArtifactRow';
- type RouteParams = {name: string; orgId: string; projectId: string};
- type Props = RouteComponentProps<RouteParams, {}> & {
- organization: Organization;
- project: Project;
- };
- type State = AsyncView['state'] & {
- artifacts: Artifact[];
- };
- class ProjectSourceMapsDetail extends AsyncView<Props, State> {
- getTitle() {
- const {projectId, name} = this.props.params;
- return routeTitleGen(t('Archive %s', formatVersion(name)), projectId, false);
- }
- getDefaultState(): State {
- return {
- ...super.getDefaultState(),
- artifacts: [],
- };
- }
- getEndpoints(): ReturnType<AsyncView['getEndpoints']> {
- return [['artifacts', this.getArtifactsUrl(), {query: {query: this.getQuery()}}]];
- }
- getArtifactsUrl() {
- const {orgId, projectId, name} = this.props.params;
- return `/projects/${orgId}/${projectId}/releases/${encodeURIComponent(name)}/files/`;
- }
- handleSearch = (query: string) => {
- const {location, router} = this.props;
- router.push({
- ...location,
- query: {...location.query, cursor: undefined, query},
- });
- };
- handleArtifactDelete = async (id: string) => {
- addLoadingMessage(t('Removing artifact\u2026'));
- try {
- await this.api.requestPromise(`${this.getArtifactsUrl()}${id}/`, {
- method: 'DELETE',
- });
- this.fetchData();
- addSuccessMessage(t('Artifact removed.'));
- } catch {
- addErrorMessage(t('Unable to remove artifact. Please try again.'));
- }
- };
- handleArchiveDelete = async () => {
- const {orgId, projectId, name} = this.props.params;
- addLoadingMessage(t('Removing artifacts\u2026'));
- try {
- await this.api.requestPromise(
- `/projects/${orgId}/${projectId}/files/source-maps/`,
- {
- method: 'DELETE',
- query: {name},
- }
- );
- this.fetchData();
- addSuccessMessage(t('Artifacts removed.'));
- } catch {
- addErrorMessage(t('Unable to remove artifacts. Please try again.'));
- }
- };
- getQuery() {
- const {query} = this.props.location.query;
- return decodeScalar(query);
- }
- getEmptyMessage() {
- if (this.getQuery()) {
- return t('There are no artifacts that match your search.');
- }
- return t('There are no artifacts in this archive.');
- }
- renderLoading() {
- return this.renderBody();
- }
- renderArtifacts() {
- const {organization} = this.props;
- const {artifacts} = this.state;
- const artifactApiUrl = this.api.baseUrl + this.getArtifactsUrl();
- if (!artifacts.length) {
- return null;
- }
- return artifacts.map(artifact => {
- return (
- <SourceMapsArtifactRow
- key={artifact.id}
- artifact={artifact}
- onDelete={this.handleArtifactDelete}
- downloadUrl={`${artifactApiUrl}${artifact.id}/?download=1`}
- downloadRole={organization.debugFilesRole}
- orgSlug={organization.slug}
- />
- );
- });
- }
- renderBody() {
- const {loading, artifacts, artifactsPageLinks} = this.state;
- const {name, orgId} = this.props.params;
- const {project} = this.props;
- return (
- <Fragment>
- <StyledSettingsPageHeader
- title={
- <Title>
- {t('Archive')}
- <TextOverflow>
- <Version version={name} tooltipRawVersion anchor={false} truncate />
- </TextOverflow>
- </Title>
- }
- action={
- <StyledButtonBar gap={1}>
- <ReleaseButton
- to={`/organizations/${orgId}/releases/${encodeURIComponent(
- name
- )}/?project=${project.id}`}
- >
- {t('Go to Release')}
- </ReleaseButton>
- <Access access={['project:releases']}>
- {({hasAccess}) => (
- <Tooltip
- disabled={hasAccess}
- title={t('You do not have permission to delete artifacts.')}
- >
- <Confirm
- message={t(
- 'Are you sure you want to remove all artifacts in this archive?'
- )}
- onConfirm={this.handleArchiveDelete}
- disabled={!hasAccess}
- >
- <Button
- icon={<IconDelete size="sm" />}
- title={t('Remove All Artifacts')}
- aria-label={t('Remove All Artifacts')}
- disabled={!hasAccess}
- />
- </Confirm>
- </Tooltip>
- )}
- </Access>
- <SearchBar
- placeholder={t('Filter artifacts')}
- onSearch={this.handleSearch}
- query={this.getQuery()}
- />
- </StyledButtonBar>
- }
- />
- <StyledPanelTable
- headers={[
- t('Artifact'),
- <SizeColumn key="size">{t('File Size')}</SizeColumn>,
- '',
- ]}
- emptyMessage={this.getEmptyMessage()}
- isEmpty={artifacts.length === 0}
- isLoading={loading}
- >
- {this.renderArtifacts()}
- </StyledPanelTable>
- <Pagination pageLinks={artifactsPageLinks} />
- </Fragment>
- );
- }
- }
- const StyledSettingsPageHeader = styled(SettingsPageHeader)`
- /*
- ugly selector to make header work on mobile
- we can refactor this once we start making other settings more responsive
- */
- > div {
- @media (max-width: ${p => p.theme.breakpoints.large}) {
- display: block;
- }
- > div {
- min-width: 0;
- @media (max-width: ${p => p.theme.breakpoints.large}) {
- margin-bottom: ${space(2)};
- }
- }
- }
- `;
- const Title = styled('div')`
- display: flex;
- align-items: center;
- `;
- const StyledButtonBar = styled(ButtonBar)`
- justify-content: flex-start;
- `;
- const StyledPanelTable = styled(PanelTable)`
- grid-template-columns: minmax(220px, 1fr) max-content 120px;
- `;
- const ReleaseButton = styled(Button)`
- white-space: nowrap;
- `;
- const SizeColumn = styled('div')`
- text-align: right;
- `;
- export default ProjectSourceMapsDetail;
|