You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-12 22:57:38 +02:00
Improved back button handling when note has been modified
This commit is contained in:
43
ReactNativeClient/lib/services/back-button.js
Normal file
43
ReactNativeClient/lib/services/back-button.js
Normal file
@ -0,0 +1,43 @@
|
||||
import { BackHandler } from 'react-native';
|
||||
|
||||
class BackButtonService {
|
||||
|
||||
static initialize(defaultHandler) {
|
||||
this.defaultHandler_ = defaultHandler;
|
||||
|
||||
BackHandler.addEventListener('hardwareBackPress', async () => {
|
||||
return this.back();
|
||||
});
|
||||
}
|
||||
|
||||
static async back() {
|
||||
if (this.handlers_.length) {
|
||||
let r = await this.handlers_[this.handlers_.length - 1]();
|
||||
if (r) return r;
|
||||
}
|
||||
|
||||
return await this.defaultHandler_();
|
||||
}
|
||||
|
||||
static addHandler(handler) {
|
||||
for (let i = this.handlers_.length - 1; i >= 0; i--) {
|
||||
const h = this.handlers_[i];
|
||||
if (h === handler) return;
|
||||
}
|
||||
|
||||
return this.handlers_.push(handler);
|
||||
}
|
||||
|
||||
static removeHandler(hanlder) {
|
||||
for (let i = this.handlers_.length - 1; i >= 0; i--) {
|
||||
const h = this.handlers_[i];
|
||||
if (h === hanlder) this.handlers_.splice(i, 1);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
BackButtonService.defaultHandler_ = null;
|
||||
BackButtonService.handlers_ = [];
|
||||
|
||||
export { BackButtonService };
|
Reference in New Issue
Block a user