fix: eslint errors

This commit is contained in:
2020-04-06 10:52:55 +02:00
parent cc9968bd06
commit b4191d1416
9 changed files with 145 additions and 118 deletions
+6 -1
View File
@@ -70,7 +70,12 @@
>{{ event.danceHall.state }}</v-flex
>
</v-layout>
<v-layout row wrap v-for="distance in event.distances" :key="distance.origin">
<v-layout
row
wrap
v-for="distance in event.distances"
:key="distance.origin"
>
<v-flex xs12 sm6>
<v-icon>mdi-home</v-icon>
<span
+4 -4
View File
@@ -61,7 +61,7 @@
</v-flex>
</v-layout>
<list
:events="events || []"
:events="events || []"
:has-user="isAuthenticated"
:toggleIgnore="toggleIgnore"
/>
@@ -79,7 +79,7 @@
<script>
import { useRouter, useMutations } from '@u3u/vue-hooks'
import { computed, ref, watch } from '@vue/composition-api'
import { useAuth } from '../../../plugins/auth'
import useAuth from '../../../plugins/auth'
import List from './List'
import { useLazyQuery, useMutation, useResult } from '../../../plugins/apollo'
@@ -110,8 +110,8 @@ export default {
set: value => router.push(`/?range=${value}`)
})
const [query, { data }] = useLazyQuery(findEvents)
const events = useResult(data, [], data => data.events)
const origins = useResult(data, [], data => data.origins)
const events = useResult(data, [], result => result.events)
const origins = useResult(data, [], result => result.origins)
watch(
() => range.value,
r => {
+6 -6
View File
@@ -70,7 +70,7 @@ import {
import List from './List'
import { useMutation, useQuery, useResult } from '../../../plugins/apollo'
import { useAuth } from '../../../plugins/auth'
import useAuth from '../../../plugins/auth'
import { useTranslation } from '../../../plugins/i18n'
export default {
@@ -83,11 +83,11 @@ export default {
setTitle(t('app.links.filters'))
const { isAuthenticated } = useAuth()
const { data, loading, refetch } = useQuery(fetchFilters)
const bands = useResult(data, [], data => data.bands)
const cities = useResult(data, [], data => data.cities)
const danceHalls = useResult(data, [], data => data.danceHalls)
const municipalities = useResult(data, [], data => data.municipalities)
const states = useResult(data, [], data => data.states)
const bands = useResult(data, [], result => result.bands)
const cities = useResult(data, [], result => result.cities)
const danceHalls = useResult(data, [], result => result.danceHalls)
const municipalities = useResult(data, [], result => result.municipalities)
const states = useResult(data, [], result => result.states)
const snackbar = ref({ active: false, color: 'success', text: '' })
const [doToggleIgnoreBand] = useMutation(toggleIgnoreBand)
const [doToggleIgnoreDanceHall] = useMutation(toggleIgnoreDanceHall)
+7 -2
View File
@@ -65,8 +65,13 @@ import {
removeOrigin,
saveOrigin
} from '../../../utils/graph-client'
import { useLazyQuery, useMutation, useQuery, useResult } from '../../../plugins/apollo'
import { useAuth } from '../../../plugins/auth'
import {
useLazyQuery,
useMutation,
useQuery,
useResult
} from '../../../plugins/apollo'
import useAuth from '../../../plugins/auth'
import { useTranslation } from '../../../plugins/i18n'
export default {
+1 -1
View File
@@ -100,7 +100,7 @@ import dayjs from 'dayjs'
import sv from 'dayjs/locale/sv'
import { setDarkMode } from '../utils/localStorage'
import Themed from './components/themed'
import { useAuth } from '../plugins/auth'
import useAuth from '../plugins/auth'
export default {
components: {
+2 -2
View File
@@ -1,6 +1,6 @@
import { useAuth } from '../plugins/auth'
import useAuth from '../plugins/auth'
export default async ({app: { router }}) => {
export default async ({ app: { router } }) => {
const onRedirectCallback = appState => {
router.push(
appState && appState.targetUrl
+3 -5
View File
@@ -106,15 +106,13 @@ export default {
'~/plugins/vue-numeral-filter.js'
],
router: {
middleware: [
'auth'
],
middleware: ['auth']
},
sentry: {
dsn: 'https://da2e8d42185a4013909d49955432a116@sentry.io/5187660',
config: {}, // Additional config
config: {} // Additional config
},
vuetify: {
optionsPath: './vuetify.options.js'
},
}
}
+69 -56
View File
@@ -1,9 +1,13 @@
/* eslint no-shadow: ["error", { "allow": ["options"] }] */
import { ApolloClient } from 'apollo-client'
import { InMemoryCache, IntrospectionFragmentMatcher } from 'apollo-cache-inmemory'
import {
InMemoryCache,
IntrospectionFragmentMatcher
} from 'apollo-cache-inmemory'
import { createHttpLink } from 'apollo-link-http'
import { setContext } from 'apollo-link-context'
import { useAuth } from './auth'
import { computed, reactive, toRefs } from '@vue/composition-api'
import useAuth from './auth'
import introspectionQueryResultData from '../fragmentTypes.json'
const fragmentMatcher = new IntrospectionFragmentMatcher({
@@ -20,7 +24,7 @@ const httpLink = createHttpLink({
uri: apiUrl
})
const getToken = async (options) => {
const getToken = async options => {
const { getTokenSilently } = useAuth()
return getTokenSilently.value(options)
}
@@ -47,60 +51,72 @@ instance = new ApolloClient({
const merge = (target, ...source) => {
const sources = source instanceof Array ? source : [source]
return sources.reduce((acc, source) => {
for (const key of Object.keys(source)) {
if (source[key] instanceof Object) Object.assign(source[key], merge(acc[key], source[key]))
}
return Object.assign(acc, source)
return sources.reduce((acc, src) => {
Object.keys(src).forEach(key => {
if (src[key] instanceof Object)
Object.assign(src[key], merge(acc[key], src[key]))
})
return Object.assign(acc, src)
}, target || {})
}
export const useMutation = (mutation, options) => {
const opts = options
const doMutate = options => new Promise((resolve, reject) => {
out.loading = true
instance.mutate({
mutation,
...opts,
...options
})
.then(result => {
out.loading = false
out.data = result.data
resolve(result)
})
.catch(e => {
out.loading = false
out.error = e
reject(e)
})
})
const out = reactive({
data: {},
error: null,
loading: false
})
const doMutate = options =>
new Promise((resolve, reject) => {
out.loading = true
instance
.mutate({
mutation,
...opts,
...options
})
.then(result => {
out.loading = false
out.data = result.data
resolve(result)
})
.catch(e => {
out.loading = false
out.error = e
reject(e)
})
})
return [doMutate, toRefs(out)]
}
export const useLazyQuery = (query, options) => {
const opts = options
let watchedQuery = null
const doQuery = options => new Promise((resolve, reject) => {
out.loading = true
const effectiveOptions = merge({ query }, opts || {}, options || {})
watchedQuery = instance.watchQuery(effectiveOptions)
watchedQuery.subscribe(({ loading, data }) => {
out.loading = loading
out.data = data || {}
out.error = null
resolve(data)
}, error => {
out.loading = false
out.error = error
reject(error)
})
const out = reactive({
data: {},
error: null,
loading: false
})
const doQuery = options =>
new Promise((resolve, reject) => {
out.loading = true
const effectiveOptions = merge({ query }, opts || {}, options || {})
watchedQuery = instance.watchQuery(effectiveOptions)
watchedQuery.subscribe(
({ loading, data }) => {
out.loading = loading
out.data = data || {}
out.error = null
resolve(data)
},
error => {
out.loading = false
out.error = error
reject(error)
}
)
})
const refetch = variables => {
doQuery({
variables: {
@@ -114,17 +130,15 @@ export const useLazyQuery = (query, options) => {
watchedQuery.stopPolling()
}
}
const out = reactive({
data: {},
error: null,
loading: false
})
return [doQuery, {
...toRefs(out),
refetch,
startPolling,
stopPolling
}]
return [
doQuery,
{
...toRefs(out),
refetch,
startPolling,
stopPolling
}
]
}
export const useQuery = (query, options) => {
@@ -135,24 +149,23 @@ export const useQuery = (query, options) => {
export const useResult = (result, defaultValue, pick) => {
return computed(() => {
const value = result.value
const { value } = result
if (value) {
if (pick) {
try {
return pick(value)
} catch (e) {
// Silent error
return defaultValue
}
} else {
const keys = Object.keys(value)
if (keys.length === 1) {
// Automatically take the only key in result data
return value[keys[0]]
} else {
// Return entire result data
return value
}
// Return entire result data
return value
}
} else {
return defaultValue
+47 -41
View File
@@ -7,10 +7,10 @@ const DEFAULT_REDIRECT_CALLBACK = () =>
let instance
const params = (new URL(window.location)).searchParams
const params = new URL(window.location).searchParams
const domain = params.get('domain') || 'unbound.eu.auth0.com'
export const useAuth = (onRedirectCallback = DEFAULT_REDIRECT_CALLBACK) => {
export default (onRedirectCallback = DEFAULT_REDIRECT_CALLBACK) => {
if (instance) {
return toRefs(instance)
}
@@ -42,15 +42,21 @@ export const useAuth = (onRedirectCallback = DEFAULT_REDIRECT_CALLBACK) => {
instance.popupOpen = false
}
instance.user = await instance.auth0Client.then(client => client.getUser())
instance.user = await instance.auth0Client.then(client =>
client.getUser()
)
instance.isAuthenticated = true
},
/** Handles the callback when logging in using a redirect */
handleRedirectCallback: async () => {
instance.loading = true
try {
await instance.auth0Client.then(client => client.handleRedirectCallback())
instance.user = await instance.auth0Client.then(client => client.getUser())
await instance.auth0Client.then(client =>
client.handleRedirectCallback()
)
instance.user = await instance.auth0Client.then(client =>
client.getUser()
)
instance.isAuthenticated = true
} catch (e) {
instance.error = e
@@ -87,46 +93,46 @@ export const useAuth = (onRedirectCallback = DEFAULT_REDIRECT_CALLBACK) => {
.then(client => client.isAuthenticated())
.then(a => {
instance.isAuthenticated = a
instance.auth0Client
.then(client => client.getUser()
.then(u => {
instance.user = u
instance.loading = false
}))
instance.auth0Client.then(client =>
client.getUser().then(u => {
instance.user = u
instance.loading = false
})
)
})
}
// Create a new instance of the SDK client using members of the given options object
// Create a new instance of the SDK client using members of the given options object
instance.auth0Client = createAuth0Client(options)
instance.auth0Client
.then(client => {
instance.loading = true
// instance.auth0Client = client
try {
// If the user is returning to the app after authentication..
if (
window.location.search.includes('code=') &&
window.location.search.includes('state=')
) {
console.log('location search', window.location.search)
// handle the redirect and retrieve tokens
client.handleRedirectCallback()
.then(appState => {
// Notify subscribers that the redirect callback has happened, passing the appState
// (useful for retrieving any pre-authentication state)
onRedirectCallback(appState)
// Initialize our internal authentication state
fetchUser()
})
.catch(e => console.error('error handling redirect callback', e))
} else {
fetchUser()
}
} catch (e) {
instance.error = e
} finally {
instance.loading = false
instance.auth0Client.then(client => {
instance.loading = true
// instance.auth0Client = client
try {
// If the user is returning to the app after authentication..
if (
window.location.search.includes('code=') &&
window.location.search.includes('state=')
) {
console.log('location search', window.location.search)
// handle the redirect and retrieve tokens
client
.handleRedirectCallback()
.then(appState => {
// Notify subscribers that the redirect callback has happened, passing the appState
// (useful for retrieving any pre-authentication state)
onRedirectCallback(appState)
// Initialize our internal authentication state
fetchUser()
})
.catch(e => console.error('error handling redirect callback', e))
} else {
fetchUser()
}
})
} catch (e) {
instance.error = e
} finally {
instance.loading = false
}
})
return toRefs(instance)
}