This commit is contained in:
Jai A 2020-10-02 21:05:43 -07:00
parent d85a063db8
commit f561de200d
No known key found for this signature in database
GPG Key ID: E8B7DFB8C62797AC
6 changed files with 59 additions and 8 deletions

View File

@ -87,8 +87,8 @@
</nuxt-link>
</section>
<h3>Dashboard</h3>
<section>
<h3 v-if="this.$auth.loggedIn">Dashboard</h3>
<section v-if="this.$auth.loggedIn">
<nuxt-link to="/dashboard/projects">
<svg
viewBox="0 0 24 24"
@ -128,11 +128,20 @@
</span>
</div>
<section class="user-actions">
<div class="avatar">
<img src="~/assets/images/avatar.jpg" />
<span> falseresync </span>
<a
v-if="!this.$auth.loggedIn"
:href="
'https://api.modrinth.com/api/v1/auth/init?url=http://localhost:3000' +
this.$route.path
"
class="log-in-button"
>Log In</a
>
<div v-if="this.$auth.loggedIn" class="avatar">
<img :src="this.$auth.user.avatar_url" />
<span> {{ this.$auth.user.username }} </span>
</div>
<div class="notifications">
<div v-if="this.$auth.loggedIn" class="notifications">
<svg
viewBox="0 0 24 24"
fill="none"
@ -211,6 +220,12 @@ export default {
theme: 'light',
}
},
created() {
if (this.$route.query.code) {
this.$auth.setUserToken(this.$route.query.code)
console.log(this.$auth.user)
}
},
beforeMount() {
const theme = localStorage.getItem('data-theme')
? localStorage.getItem('data-theme')
@ -276,7 +291,7 @@ export default {
}
.name {
font-family: 'Montserrat Alternates';
font-family: 'Montserrat Alternates', serif;
margin-left: 0.4rem;
font-size: 1.3rem;
}
@ -406,6 +421,15 @@ export default {
width: 2rem;
}
}
.log-in-button {
text-align: center;
padding: 8px 40px;
border-radius: 5px;
color: var(--color-grey-5);
background-color: var(--color-grey-1);
margin-left: 2.5rem;
}
}
}

View File

@ -45,6 +45,9 @@ export default {
},
],
},
router: {
middleware: ['auth'],
},
/*
** Global CSS
*/
@ -72,7 +75,22 @@ export default {
modules: [
// Doc: https://axios.nuxtjs.org/usage
'@nuxtjs/axios',
'@nuxtjs/auth',
],
auth: {
strategies: {
local: {
endpoints: {
user: {
url: 'https://api.modrinth.com/api/v1/user',
method: 'get',
propertyName: false,
},
},
tokenType: false,
},
},
},
/*
** Axios module configuration
** See https://axios.nuxtjs.org/options

View File

@ -195,6 +195,7 @@
<script>
export default {
auth: false,
layout: 'none',
data() {
return {

View File

@ -33,6 +33,12 @@
</div>
</template>
<script>
export default {
auth: false,
}
</script>
<style lang="scss">
#search-pagination {
align-items: center;

View File

@ -68,7 +68,7 @@
:author-url="result.author_url"
:page-url="result.page_url"
:categories="result.categories"
:is-ad="index % 5"
:is-ad="index === -1"
/>
</div>
<section v-if="pages.length > 1" class="search-bottom">
@ -418,6 +418,7 @@ const config = {
}
export default {
auth: false,
components: {
SearchResult,
Pagination,

1
store/index.js Normal file
View File

@ -0,0 +1 @@
export const state = () => ({})