blob: 1c2f22839c49b2269ed17df22c4c7d7545839957 [file] [log] [blame]
/**
* @license
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {htmlTemplate} from './gr-imagare-list-item_html.js';
class GrImagareListItem extends Polymer.GestureEventListeners(
Polymer.LegacyElementMixin(
Polymer.Element)) {
/** @returns {?} template for this component */
static get template() { return htmlTemplate; }
/** @returns {string} name of the component */
static get is() { return 'gr-imagare-list-item'; }
/**
* Defines properties of the component
*
* @returns {?}
*/
static get properties() {
return {
imageUrl: {
type: String,
reflectToAttribute: true,
},
imageName: {
type: String,
reflectToAttribute: true,
},
imageData: {
type: String,
reflectToAttribute: true,
},
uploaded: {
type: Boolean,
observer: '_uploadedChanged',
reflectToAttribute: true,
},
_originalImageName: String,
_editing: {
type: Boolean,
value: false,
},
_imageSrc: String,
};
}
attached() {
super.attached();
this._originalImageName = this.imageName;
this._setImage();
}
_handleCancelRenameName() {
this.imageName = this._originalImageName;
this._editing = false;
}
_handleClearImage() {
this.fire('clear');
}
_handleDeleteImage() {
this.fire('delete');
}
_handleEditImage() {
this._editing = true;
}
_handleSaveName() {
this._editing = false;
if (this._originalImageName === this.imageName) {
return;
}
const oldFileType = this._originalImageName.split('.').pop();
const newFileType = this.imageName.split('.').pop();
if (oldFileType !== newFileType) {
this.imageName += `.${oldFileType}`;
}
this.fire(
'editName',
{oldName: this._originalImageName, newName: this.imageName});
}
_handleUploadImage() {
this.fire('upload');
}
_openDeleteDialog() {
this.$.deleteOverlay.open();
}
_setImage() {
if (this.uploaded) {
this.$.thumbnail.setAttribute('src', this.imageUrl);
} else {
this.$.thumbnail.setAttribute('src', this.imageData);
}
}
_uploadedChanged(uploaded) {
this.$.uploading.hidden = !uploaded;
this.$.staging.hidden = uploaded;
this._setImage();
}
}
customElements.define(GrImagareListItem.is, GrImagareListItem);