mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
142 lines
4.6 KiB
142 lines
4.6 KiB
import dayjs from 'dayjs' |
|
import duration from 'dayjs/plugin/duration' |
|
|
|
dayjs.extend(duration) |
|
|
|
export default async({ store, redirect, $axios, $toast, $api, route }) => { |
|
// if (!route.path || !route.path.startsWith('/nc/')) { await store.dispatch('plugins/pluginPostInstall', 'Branding') } |
|
if (window.location.search && |
|
/\bscope=|\bstate=/.test(window.location.search) && |
|
/\bcode=/.test(window.location.search)) { |
|
try { |
|
const tokenData = await $axios.create({ |
|
baseURL: $axios.defaults.baseURL |
|
}).post(`/auth/${window.location.search.includes('state=github') ? 'github' : 'google'}/genTokenByCode${window.location.search}`) |
|
|
|
store.commit('users/MutSetToken', tokenData.data.token) |
|
await store.dispatch('users/ActGetUserDetails') |
|
} catch (e) { |
|
if (e.response && e.response.data && e.response.data.msg) { |
|
$toast.error(e.response.data.msg).goAway(3000) |
|
} |
|
} |
|
const newURL = window.location.href.split('?')[0] |
|
window.history.pushState('object', document.title, newURL) |
|
} |
|
|
|
const icons = { |
|
success: { |
|
message: ' successful', |
|
class: 'success', |
|
icon: 'check_circle' |
|
}, |
|
error: { |
|
message: ' failed', |
|
class: 'error', |
|
icon: 'error' |
|
} |
|
} |
|
|
|
store.watch( |
|
(state) => { |
|
return state.notification.list && state.notification.list[0] && state.notification.list[0].status |
|
}, |
|
() => { |
|
// console.log(store.state.notification.list) |
|
const n = store.state.notification.list.length && store.state.notification.list[0] |
|
if (n && n.status !== 'pending' && n.type !== 'List') { |
|
const msg = `${n.type} ${n.module} ${icons[n.status].message}` |
|
$toast[n.status](msg, { |
|
duration: 2000, |
|
icon: icons[n.status].icon |
|
}) |
|
} |
|
} |
|
) |
|
|
|
try { |
|
await store.dispatch('project/ActLoadProjectInfo') |
|
if (!store.state.project.appInfo.projectHasDb) { |
|
redirect('/') |
|
} else if (store.state.project.appInfo.projectHasAdmin === false) { |
|
redirect('/') |
|
} |
|
} catch (e) { |
|
console.log(e) |
|
} |
|
|
|
// fetch latest release info |
|
const fetchReleaseInfo = async() => { |
|
try { |
|
const versionInfo = await $api.utils.appVersion() |
|
if (versionInfo && |
|
versionInfo.releaseVersion && |
|
versionInfo.currentVersion && |
|
!(/[^0-9.]/.test(versionInfo.currentVersion))) { |
|
store.commit('app/MutCurrentVersion', versionInfo.currentVersion) |
|
store.commit('app/MutLatestRelease', versionInfo.releaseVersion) |
|
} else { |
|
store.commit('app/MutCurrentVersion', null) |
|
store.commit('app/MutLatestRelease', null) |
|
} |
|
} catch (e) { |
|
// ignore |
|
} |
|
} |
|
|
|
fetchReleaseInfo() |
|
setInterval(fetchReleaseInfo, 10 * 60 * 1000) |
|
handleFeedbackForm({ store, $axios }) |
|
} |
|
|
|
const handleFeedbackForm = async({ store, $axios }) => { |
|
const fetchFeedbackForm = async(now) => { |
|
try { |
|
const { data: feedbackForm } = await $axios.get('/api/v1/feedback_form') |
|
const currentFeedbackForm = store.state.settings.feedbackForm |
|
|
|
const isFetchedFormDuplicate = currentFeedbackForm.url === feedbackForm.url |
|
|
|
store.commit('settings/MutFeedbackForm', { |
|
url: feedbackForm.url, |
|
lastFormPollDate: now.toISOString(), |
|
createdAt: feedbackForm.created_at, |
|
isHidden: isFetchedFormDuplicate ? currentFeedbackForm.isHidden : false |
|
}) |
|
} catch (e) { |
|
// ignore |
|
} |
|
} |
|
|
|
const isFirstTimePolling = !store.state.settings.feedbackForm.lastFormPollDate |
|
|
|
const now = dayjs() |
|
const lastFormPolledDate = dayjs(store.state.settings.feedbackForm.lastFormPollDate) |
|
|
|
if (isFirstTimePolling || (dayjs.duration(now.diff(lastFormPolledDate)).days() > 0)) { |
|
fetchFeedbackForm(now) |
|
} |
|
} |
|
/** |
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd |
|
* |
|
* @author Naveen MR <oof1lab@gmail.com> |
|
* @author Pranav C Balan <pranavxc@gmail.com> |
|
* @author Wing-Kam Wong <wingkwong.code@gmail.com> |
|
* |
|
* @license GNU AGPL version 3 or any later version |
|
* |
|
* This program is free software: you can redistribute it and/or modify |
|
* it under the terms of the GNU Affero General Public License as |
|
* published by the Free Software Foundation, either version 3 of the |
|
* License, or (at your option) any later version. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU Affero General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU Affero General Public License |
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
* |
|
*/
|
|
|