2020-10-15 15:06:50 +00:00
|
|
|
// (C) Copyright 2015 Moodle Pty Ltd.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// Based on https://medium.com/madewithply/ionic-4-long-press-gestures-96cf1e44098b
|
|
|
|
|
|
|
|
import { Directive, ElementRef, OnInit, OnDestroy, Output, EventEmitter } from '@angular/core';
|
|
|
|
import { Gesture } from '@ionic/angular';
|
2020-11-24 08:31:11 +00:00
|
|
|
import { GestureController } from '@singletons';
|
2020-10-15 15:06:50 +00:00
|
|
|
/**
|
|
|
|
* Directive to add long press actions to html elements.
|
|
|
|
*/
|
|
|
|
@Directive({
|
|
|
|
selector: '[longPress]',
|
|
|
|
})
|
|
|
|
export class CoreLongPressDirective implements OnInit, OnDestroy {
|
|
|
|
|
2021-06-21 10:28:31 +00:00
|
|
|
readonly HOLD_DURATION = 500;
|
|
|
|
|
2020-10-15 15:06:50 +00:00
|
|
|
element: HTMLElement;
|
2020-10-20 12:20:51 +00:00
|
|
|
pressGesture?: Gesture;
|
2022-08-10 12:42:11 +00:00
|
|
|
timeout?: number;
|
2020-10-15 15:06:50 +00:00
|
|
|
|
|
|
|
@Output() longPress = new EventEmitter();
|
|
|
|
|
|
|
|
constructor(el: ElementRef) {
|
|
|
|
this.element = el.nativeElement;
|
|
|
|
this.element.setAttribute('tappable', '');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize gesture listening.
|
|
|
|
*/
|
|
|
|
ngOnInit(): void {
|
2021-03-02 10:41:04 +00:00
|
|
|
this.pressGesture = GestureController.create({
|
2020-10-15 15:06:50 +00:00
|
|
|
el: this.element,
|
|
|
|
threshold: 0,
|
2021-05-25 07:56:18 +00:00
|
|
|
disableScroll: true,
|
2020-10-15 15:06:50 +00:00
|
|
|
gestureName: 'longpress',
|
2021-06-21 10:28:31 +00:00
|
|
|
onStart: (event) => {
|
2022-08-10 12:42:11 +00:00
|
|
|
this.timeout = window.setTimeout(() => {
|
2021-06-21 10:28:31 +00:00
|
|
|
this.longPress.emit(event);
|
|
|
|
|
|
|
|
delete this.timeout;
|
|
|
|
}, this.HOLD_DURATION);
|
|
|
|
},
|
|
|
|
onMove: () => this.clearTimeout(),
|
|
|
|
onEnd: () => this.clearTimeout(),
|
2020-10-15 15:06:50 +00:00
|
|
|
}, true);
|
|
|
|
|
|
|
|
this.pressGesture.enable();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroy gesture listening.
|
|
|
|
*/
|
|
|
|
ngOnDestroy(): void {
|
2020-10-20 12:20:51 +00:00
|
|
|
this.pressGesture?.destroy();
|
2021-06-21 10:28:31 +00:00
|
|
|
this.clearTimeout();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected clearTimeout(): void {
|
|
|
|
if (!this.timeout) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
clearTimeout(this.timeout);
|
|
|
|
delete this.timeout;
|
2020-10-15 15:06:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|