mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-31 02:26:50 +10:00
103 lines
2.9 KiB
JavaScript
103 lines
2.9 KiB
JavaScript
import React, { Component } from 'react';
|
|
import { array, bool, func, object, string } from 'prop-types';
|
|
import { FormattedMessage } from '../../util/reactIntl';
|
|
import classNames from 'classnames';
|
|
import { LISTING_STATE_DRAFT } from '../../util/types';
|
|
import { EditListingPhotosForm } from '../../forms';
|
|
import { ensureOwnListing } from '../../util/data';
|
|
import { ListingLink } from '../../components';
|
|
|
|
import css from './EditListingPhotosPanel.css';
|
|
|
|
class EditListingPhotosPanel extends Component {
|
|
render() {
|
|
const {
|
|
className,
|
|
rootClassName,
|
|
errors,
|
|
fetchInProgress,
|
|
newListingPublished,
|
|
images,
|
|
listing,
|
|
onImageUpload,
|
|
onUpdateImageOrder,
|
|
submitButtonText,
|
|
panelUpdated,
|
|
updateInProgress,
|
|
onChange,
|
|
onSubmit,
|
|
onRemoveImage,
|
|
} = this.props;
|
|
|
|
const rootClass = rootClassName || css.root;
|
|
const classes = classNames(rootClass, className);
|
|
const currentListing = ensureOwnListing(listing);
|
|
|
|
const isPublished =
|
|
currentListing.id && currentListing.attributes.state !== LISTING_STATE_DRAFT;
|
|
const panelTitle = isPublished ? (
|
|
<FormattedMessage
|
|
id="EditListingPhotosPanel.title"
|
|
values={{ listingTitle: <ListingLink listing={listing} /> }}
|
|
/>
|
|
) : (
|
|
<FormattedMessage id="EditListingPhotosPanel.createListingTitle" />
|
|
);
|
|
|
|
return (
|
|
<div className={classes}>
|
|
<h1 className={css.title}>{panelTitle}</h1>
|
|
<EditListingPhotosForm
|
|
className={css.form}
|
|
disabled={fetchInProgress}
|
|
ready={newListingPublished}
|
|
fetchErrors={errors}
|
|
initialValues={{ images }}
|
|
images={images}
|
|
onImageUpload={onImageUpload}
|
|
onSubmit={values => {
|
|
const { addImage, ...updateValues } = values;
|
|
onSubmit(updateValues);
|
|
}}
|
|
onChange={onChange}
|
|
onUpdateImageOrder={onUpdateImageOrder}
|
|
onRemoveImage={onRemoveImage}
|
|
saveActionMsg={submitButtonText}
|
|
updated={panelUpdated}
|
|
updateInProgress={updateInProgress}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
EditListingPhotosPanel.defaultProps = {
|
|
className: null,
|
|
rootClassName: null,
|
|
errors: null,
|
|
images: [],
|
|
listing: null,
|
|
};
|
|
|
|
EditListingPhotosPanel.propTypes = {
|
|
className: string,
|
|
rootClassName: string,
|
|
errors: object,
|
|
fetchInProgress: bool.isRequired,
|
|
newListingPublished: bool.isRequired,
|
|
images: array,
|
|
|
|
// We cannot use propTypes.listing since the listing might be a draft.
|
|
listing: object,
|
|
|
|
onImageUpload: func.isRequired,
|
|
onUpdateImageOrder: func.isRequired,
|
|
onSubmit: func.isRequired,
|
|
onChange: func.isRequired,
|
|
submitButtonText: string.isRequired,
|
|
panelUpdated: bool.isRequired,
|
|
updateInProgress: bool.isRequired,
|
|
onRemoveImage: func.isRequired,
|
|
};
|
|
|
|
export default EditListingPhotosPanel;
|