2018-01-20 09:32:37 +09:00
|
|
|
import { changeSetting, saveSettings } from './settings';
|
2020-10-13 07:37:21 +09:00
|
|
|
import { requestBrowserPermission } from './notifications';
|
2018-01-20 09:32:37 +09:00
|
|
|
|
2018-12-17 19:07:17 +09:00
|
|
|
export const INTRODUCTION_VERSION = 20181216044202;
|
2018-01-20 09:32:37 +09:00
|
|
|
|
2018-12-17 19:07:17 +09:00
|
|
|
export const closeOnboarding = () => dispatch => {
|
|
|
|
dispatch(changeSetting(['introductionVersion'], INTRODUCTION_VERSION));
|
|
|
|
dispatch(saveSettings());
|
2020-10-13 07:37:21 +09:00
|
|
|
|
|
|
|
dispatch(requestBrowserPermission((permission) => {
|
|
|
|
if (permission === 'granted') {
|
|
|
|
dispatch(changeSetting(['notifications', 'alerts', 'follow'], true));
|
|
|
|
dispatch(changeSetting(['notifications', 'alerts', 'favourite'], true));
|
|
|
|
dispatch(changeSetting(['notifications', 'alerts', 'reblog'], true));
|
|
|
|
dispatch(changeSetting(['notifications', 'alerts', 'mention'], true));
|
|
|
|
dispatch(changeSetting(['notifications', 'alerts', 'poll'], true));
|
2020-10-15 23:24:47 +09:00
|
|
|
dispatch(changeSetting(['notifications', 'alerts', 'status'], true));
|
2020-10-13 07:37:21 +09:00
|
|
|
dispatch(saveSettings());
|
|
|
|
}
|
|
|
|
}));
|
2018-01-20 09:32:37 +09:00
|
|
|
};
|