Move gr-copy-clipboard to typescript
Change-Id: Ic47badf477459fd5220943aef2190988dd180fe5
This commit is contained in:
		| @@ -14,55 +14,66 @@ | |||||||
|  * See the License for the specific language governing permissions and |  * See the License for the specific language governing permissions and | ||||||
|  * limitations under the License. |  * limitations under the License. | ||||||
|  */ |  */ | ||||||
| import '@polymer/iron-input/iron-input.js'; | import '@polymer/iron-input/iron-input'; | ||||||
| import '../../../styles/shared-styles.js'; | import '../../../styles/shared-styles'; | ||||||
| import '../gr-button/gr-button.js'; | import '../gr-button/gr-button'; | ||||||
| import '../gr-icons/gr-icons.js'; | import '../gr-icons/gr-icons'; | ||||||
| import {dom} from '@polymer/polymer/lib/legacy/polymer.dom.js'; | import {dom, EventApi} from '@polymer/polymer/lib/legacy/polymer.dom'; | ||||||
| import {GestureEventListeners} from '@polymer/polymer/lib/mixins/gesture-event-listeners.js'; | import {GestureEventListeners} from '@polymer/polymer/lib/mixins/gesture-event-listeners'; | ||||||
| import {LegacyElementMixin} from '@polymer/polymer/lib/legacy/legacy-element-mixin.js'; | import {LegacyElementMixin} from '@polymer/polymer/lib/legacy/legacy-element-mixin'; | ||||||
| import {PolymerElement} from '@polymer/polymer/polymer-element.js'; | import {PolymerElement} from '@polymer/polymer/polymer-element'; | ||||||
| import {htmlTemplate} from './gr-copy-clipboard_html.js'; | import {htmlTemplate} from './gr-copy-clipboard_html'; | ||||||
|  | import {GrButton} from '../gr-button/gr-button'; | ||||||
|  | import {customElement, property} from '@polymer/decorators'; | ||||||
|  | import {IronIconElement} from '@polymer/iron-icon'; | ||||||
|  |  | ||||||
| const COPY_TIMEOUT_MS = 1000; | const COPY_TIMEOUT_MS = 1000; | ||||||
|  |  | ||||||
| /** @extends PolymerElement */ | declare global { | ||||||
| class GrCopyClipboard extends GestureEventListeners( |   interface HTMLElementTagNameMap { | ||||||
|     LegacyElementMixin( |     'gr-copy-clipboard': GrCopyClipboard; | ||||||
|         PolymerElement)) { |  | ||||||
|   static get template() { return htmlTemplate; } |  | ||||||
|  |  | ||||||
|   static get is() { return 'gr-copy-clipboard'; } |  | ||||||
|  |  | ||||||
|   static get properties() { |  | ||||||
|     return { |  | ||||||
|       text: String, |  | ||||||
|       buttonTitle: String, |  | ||||||
|       hasTooltip: { |  | ||||||
|         type: Boolean, |  | ||||||
|         value: false, |  | ||||||
|       }, |  | ||||||
|       hideInput: { |  | ||||||
|         type: Boolean, |  | ||||||
|         value: false, |  | ||||||
|       }, |  | ||||||
|     }; |  | ||||||
|   } |   } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | export interface GrCopyClipboard { | ||||||
|  |   $: {button: GrButton; icon: IronIconElement; input: HTMLInputElement}; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** @extends PolymerElement */ | ||||||
|  | @customElement('gr-copy-clipboard') | ||||||
|  | export class GrCopyClipboard extends GestureEventListeners( | ||||||
|  |   LegacyElementMixin(PolymerElement) | ||||||
|  | ) { | ||||||
|  |   static get template() { | ||||||
|  |     return htmlTemplate; | ||||||
|  |   } | ||||||
|  |  | ||||||
|  |   @property({type: String}) | ||||||
|  |   text: string | undefined; | ||||||
|  |  | ||||||
|  |   @property({type: String}) | ||||||
|  |   buttonTitle: string | undefined; | ||||||
|  |  | ||||||
|  |   @property({type: Boolean}) | ||||||
|  |   hasTooltip = false; | ||||||
|  |  | ||||||
|  |   @property({type: Boolean}) | ||||||
|  |   hideInput = false; | ||||||
|  |  | ||||||
|   focusOnCopy() { |   focusOnCopy() { | ||||||
|     this.$.button.focus(); |     this.$.button.focus(); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   _computeInputClass(hideInput) { |   _computeInputClass(hideInput: boolean) { | ||||||
|     return hideInput ? 'hideInput' : ''; |     return hideInput ? 'hideInput' : ''; | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   _handleInputClick(e) { |   _handleInputClick(e: MouseEvent) { | ||||||
|     e.preventDefault(); |     e.preventDefault(); | ||||||
|     dom(e).rootTarget.select(); |     ((dom(e) as EventApi).rootTarget as HTMLInputElement).select(); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   _copyToClipboard(e) { |   _copyToClipboard(e: MouseEvent) { | ||||||
|     e.preventDefault(); |     e.preventDefault(); | ||||||
|     e.stopPropagation(); |     e.stopPropagation(); | ||||||
|  |  | ||||||
| @@ -77,9 +88,8 @@ class GrCopyClipboard extends GestureEventListeners( | |||||||
|     } |     } | ||||||
|     this.$.icon.icon = 'gr-icons:check'; |     this.$.icon.icon = 'gr-icons:check'; | ||||||
|     this.async( |     this.async( | ||||||
|         () => this.$.icon.icon = 'gr-icons:content-copy', |       () => (this.$.icon.icon = 'gr-icons:content-copy'), | ||||||
|         COPY_TIMEOUT_MS); |       COPY_TIMEOUT_MS | ||||||
|  |     ); | ||||||
|   } |   } | ||||||
| } | } | ||||||
|  |  | ||||||
| customElements.define(GrCopyClipboard.is, GrCopyClipboard); |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Milutin Kristofic
					Milutin Kristofic