- Instead of opening a popup for every single error that occurs, combine them into an unique one - Increase the maximum width, make those tracebacks readable
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			QML
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			QML
		
	
	
	
	
	
| // Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
 | |
| // SPDX-License-Identifier: LGPL-3.0-or-later
 | |
| 
 | |
| import QtQuick 2.12
 | |
| import io.thp.pyotherside 1.5
 | |
| import CppUtils 0.1
 | |
| import "."
 | |
| 
 | |
| Python {
 | |
|     id: py
 | |
| 
 | |
|     readonly property var pendingCoroutines: Globals.pendingCoroutines
 | |
| 
 | |
|     function setattr(obj, attr, value, callback=null) {
 | |
|         py.call(py.getattr(obj, "__setattr__"), [attr, value], callback)
 | |
|     }
 | |
| 
 | |
|     function callCoro(name, args=[], onSuccess=null, onError=null) {
 | |
|         const uuid = name + "." + CppUtils.uuid()
 | |
| 
 | |
|         Globals.pendingCoroutines[uuid] = {onSuccess, onError}
 | |
|         Globals.pendingCoroutinesChanged()
 | |
| 
 | |
|         call("BRIDGE.call_backend_coro", [name, uuid, args])
 | |
|         return uuid
 | |
|     }
 | |
| 
 | |
|     function callClientCoro(
 | |
|         accountId, name, args=[], onSuccess=null, onError=null
 | |
|     ) {
 | |
|         const uuid = accountId + "." + name + "." + CppUtils.uuid()
 | |
| 
 | |
|         Globals.pendingCoroutines[uuid] = {onSuccess, onError}
 | |
|         Globals.pendingCoroutinesChanged()
 | |
| 
 | |
|         // Ensure the client exists or wait for it to exist
 | |
|         callCoro("get_client", [accountId, [name, args]], () => {
 | |
|             // Now that we're sure it won't error, run that client's function
 | |
|             call("BRIDGE.call_client_coro", [accountId, name, uuid, args])
 | |
|         })
 | |
| 
 | |
|         return uuid
 | |
|     }
 | |
| 
 | |
|     function cancelCoro(uuid) {
 | |
|         delete Globals.pendingCoroutines[uuid]
 | |
|         call("BRIDGE.cancel_coro", [uuid])
 | |
|     }
 | |
| 
 | |
|     function saveConfig(backend_attribute, data) {
 | |
|         if (! py.ready) { return }  // config not done loading yet
 | |
|         callCoro(backend_attribute + ".set_data", [data])
 | |
|     }
 | |
| 
 | |
|     function showError(type, traceback, sourceIndication="", message="") {
 | |
|         console.error(`python: ${sourceIndication}\n${traceback}`)
 | |
| 
 | |
|         if (Globals.hideErrorTypes.has(type)) {
 | |
|             console.info("Not showing popup for ignored error type " + type)
 | |
|             return
 | |
|         }
 | |
| 
 | |
|         const popup = window.mainUI.unexpectedErrorPopup
 | |
|         popup.errors.unshift({type, message, traceback})
 | |
|         popup.errorsChanged()
 | |
|     }
 | |
| }
 | 
