我正在尝试apply this pattern for adding "add to home screen" functionality to a progressive web app主要是为桌面使用而构建的,我想知道使用React如何实现这一目标。
我阅读了以下使用添加到主屏幕的条件:
Promise.reject()
但是我放入Meets a user engagement heuristic (currently, the user has interacted with the domain for at least 30 seconds)
事件的事件处理程序的console.log可能最多在加载应用程序时被触发了5秒,所以我想知道如何根据建议使用这种启发式方法并对其进行控制只有我保存一个事件供以后使用。如果没有这种东西,而我必须以网站建议的方式手动保存并使用该事件,我想知道我是否已经在使用Redux,是否可以存储此deferredPrompt事件的最佳位置。谢谢!