mapcomplete/UI/ImageUploadFlow.ts

127 lines
4.3 KiB
TypeScript
Raw Normal View History

import {UIElement} from "./UIElement";
import {UIEventSource} from "./UIEventSource";
import $ from "jquery"
import {Imgur} from "../Logic/Imgur";
import {UserDetails} from "../Logic/OsmConnection";
2020-07-20 13:54:50 +00:00
import {DropDown} from "./Input/DropDown";
2020-06-29 01:16:34 +00:00
import {VariableUiElement} from "./Base/VariableUIElement";
2020-07-20 22:07:04 +00:00
import Translations from "./i18n/Translations";
export class ImageUploadFlow extends UIElement {
private _licensePicker: UIElement;
private _selectedLicence: UIEventSource<string>;
private _isUploading: UIEventSource<number> = new UIEventSource<number>(0)
private _uploadOptions: (license: string) => { title: string; description: string; handleURL: (url: string) => void; allDone: (() => void) };
private _userdetails: UIEventSource<UserDetails>;
constructor(
userInfo: UIEventSource<UserDetails>,
preferedLicense : UIEventSource<string>,
uploadOptions: ((license: string) =>
{
title: string,
description: string,
handleURL: ((url: string) => void),
allDone: (() => void)
})
) {
super(undefined);
this._userdetails = userInfo;
this.ListenTo(userInfo);
this._uploadOptions = uploadOptions;
this.ListenTo(this._isUploading);
2020-07-20 22:38:03 +00:00
const licensePicker = new DropDown(
Translations.general.picture.licenseIntro,
[
2020-07-20 22:38:03 +00:00
{value: "CC0", shown: Translations.general.picture.publicDomain},
{value: "CC-BY-SA 4.0", shown:Translations.general.picture.ccbysa},
{value: "CC-BY 4.0", shown:Translations.general.picture.ccby}
],
preferedLicense
);
this._licensePicker = licensePicker;
2020-07-20 19:39:07 +00:00
this._selectedLicence = licensePicker.GetValue();
}
2020-07-20 19:39:07 +00:00
InnerRender(): string {
if (!this._userdetails.data.loggedIn) {
2020-07-20 15:30:02 +00:00
return "<div class='activate-osm-authentication'>Please log in to add a picture</div>";
}
2020-07-20 15:30:02 +00:00
let uploadingMessage = "";
if (this._isUploading.data == 1) {
2020-07-20 15:30:02 +00:00
uploadingMessage = "<b>Uploading a picture...</b>"
}
if (this._isUploading.data > 0) {
2020-07-20 15:30:02 +00:00
uploadingMessage = "<b>Uploading multiple pictures, " + this._isUploading.data + " left...</b>"
}
return "" +
"<div class='imageflow'>" +
2020-07-20 15:30:02 +00:00
"<label for='fileselector-" + this.id + "'>" +
2020-07-20 15:30:02 +00:00
"<div class='imageflow-file-input-wrapper'>" +
"<img src='./assets/camera-plus.svg' alt='upload image'/> " +
2020-07-20 22:38:03 +00:00
"<span class='imageflow-add-picture'>"+Translations.general.picture.uploadAPicture.R()+"</span>" +
2020-07-20 15:30:02 +00:00
"<div class='break'></div>" +
"</div>" +
2020-07-20 15:30:02 +00:00
this._licensePicker.Render() + "<br/>" +
uploadingMessage +
"</label>" +
"<input id='fileselector-" + this.id + "' " +
"type='file' " +
"class='imageflow-file-input' " +
"accept='image/*' name='picField' size='24' multiple='multiple' alt=''" +
"/>" +
"</div>"
;
}
InnerUpdate(htmlElement: HTMLElement) {
super.InnerUpdate(htmlElement);
const user = this._userdetails.data;
htmlElement.onclick = function () {
if (!user.loggedIn) {
user.osmConnection.AttemptLogin();
}
}
this._licensePicker.Update();
const selector = document.getElementById('fileselector-' + this.id);
const self = this;
if (selector != null) {
selector.onchange = function () {
const files = $(this).get(0).files;
self._isUploading.setData(files.length);
const opts = self._uploadOptions(self._selectedLicence.data);
Imgur.uploadMultiple(opts.title, opts.description, files,
function (url) {
console.log("File saved at", url);
self._isUploading.setData(self._isUploading.data - 1);
opts.handleURL(url);
},
function () {
console.log("All uploads completed")
opts.allDone();
}
)
}
}
}
}