2020-09-06 16:15:25 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
2020-09-11 03:19:43 +00:00
|
|
|
import { pictrsUri } from '../env';
|
2020-09-06 16:15:25 +00:00
|
|
|
import { UserService } from '../services';
|
|
|
|
import { toast, randomStr } from '../utils';
|
|
|
|
|
|
|
|
interface ImageUploadFormProps {
|
|
|
|
uploadTitle: string;
|
|
|
|
imageSrc: string;
|
|
|
|
onUpload(url: string): any;
|
|
|
|
onRemove(): any;
|
|
|
|
rounded?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ImageUploadFormState {
|
|
|
|
loading: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class ImageUploadForm extends Component<
|
|
|
|
ImageUploadFormProps,
|
|
|
|
ImageUploadFormState
|
|
|
|
> {
|
|
|
|
private id = `image-upload-form-${randomStr()}`;
|
|
|
|
private emptyState: ImageUploadFormState = {
|
|
|
|
loading: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
this.state = this.emptyState;
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<form class="d-inline">
|
|
|
|
<label
|
|
|
|
htmlFor={this.id}
|
|
|
|
class="pointer ml-4 text-muted small font-weight-bold"
|
|
|
|
>
|
|
|
|
{!this.props.imageSrc ? (
|
|
|
|
<span class="btn btn-secondary">{this.props.uploadTitle}</span>
|
|
|
|
) : (
|
|
|
|
<span class="d-inline-block position-relative">
|
|
|
|
<img
|
|
|
|
src={this.props.imageSrc}
|
|
|
|
height={this.props.rounded ? 60 : ''}
|
|
|
|
width={this.props.rounded ? 60 : ''}
|
|
|
|
className={`img-fluid ${
|
|
|
|
this.props.rounded ? 'rounded-circle' : ''
|
|
|
|
}`}
|
|
|
|
/>
|
|
|
|
<a onClick={linkEvent(this, this.handleRemoveImage)}>
|
|
|
|
<svg class="icon mini-overlay">
|
|
|
|
<use xlinkHref="#icon-x"></use>
|
|
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
)}
|
|
|
|
</label>
|
|
|
|
<input
|
|
|
|
id={this.id}
|
|
|
|
type="file"
|
|
|
|
accept="image/*,video/*"
|
|
|
|
name={this.id}
|
|
|
|
class="d-none"
|
|
|
|
disabled={!UserService.Instance.user}
|
|
|
|
onChange={linkEvent(this, this.handleImageUpload)}
|
|
|
|
/>
|
|
|
|
</form>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleImageUpload(i: ImageUploadForm, event: any) {
|
|
|
|
event.preventDefault();
|
|
|
|
let file = event.target.files[0];
|
|
|
|
const formData = new FormData();
|
|
|
|
formData.append('images[]', file);
|
|
|
|
|
|
|
|
i.state.loading = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
|
2020-09-11 03:19:43 +00:00
|
|
|
fetch(pictrsUri, {
|
2020-09-06 16:15:25 +00:00
|
|
|
method: 'POST',
|
|
|
|
body: formData,
|
|
|
|
})
|
|
|
|
.then(res => res.json())
|
|
|
|
.then(res => {
|
|
|
|
console.log('pictrs upload:');
|
|
|
|
console.log(res);
|
|
|
|
if (res.msg == 'ok') {
|
|
|
|
let hash = res.files[0].file;
|
2020-09-11 03:19:43 +00:00
|
|
|
let url = `${pictrsUri}/${hash}`;
|
2020-09-06 16:15:25 +00:00
|
|
|
i.state.loading = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.props.onUpload(url);
|
|
|
|
} else {
|
|
|
|
i.state.loading = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
toast(JSON.stringify(res), 'danger');
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
i.state.loading = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
toast(error, 'danger');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
handleRemoveImage(i: ImageUploadForm, event: any) {
|
|
|
|
event.preventDefault();
|
|
|
|
i.state.loading = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.props.onRemove();
|
|
|
|
}
|
|
|
|
}
|