Skip to content

Commit

Permalink
Vue 3 in Laravel 10
Browse files Browse the repository at this point in the history
  • Loading branch information
atomjoy authored May 12, 2023
1 parent 8bf5df8 commit bea181d
Show file tree
Hide file tree
Showing 4 changed files with 100 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/resources/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,12 @@ app.use(router)

/*
// Glogal provide/inject composition api
app.provide('globalStore', {
// Glogal variable provide/inject composition api
app.provide('globalVariable', {
user: null,
isLogged: false,
async getUser(id = 1) {
let res = await axios.get(`https://jsonplaceholder.typicode.com/users/${id}`)
console.log('App global store', res.data)
return res.data ?? null
},
})
Expand Down
79 changes: 79 additions & 0 deletions app/resources/js/components/ChangeTheme.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<script setup>
import { useThemeStore } from '@/stores/theme.js'
import { onMounted } from 'vue';
let theme = useThemeStore()
onMounted(() => {
theme.update()
})
</script>

<template>
<div @click="theme.toggle()" :class="{ 'toggle-theme': true, 'toggle-theme-dark': theme.getColor == 'dark'}" >
<div class="theme-switch-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="theme-switch-sun"><path d="M12,18c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S15.3,18,12,18zM12,8c-2.2,0-4,1.8-4,4c0,2.2,1.8,4,4,4c2.2,0,4-1.8,4-4C16,9.8,14.2,8,12,8z"></path><path d="M12,4c-0.6,0-1-0.4-1-1V1c0-0.6,0.4-1,1-1s1,0.4,1,1v2C13,3.6,12.6,4,12,4z"></path><path d="M12,24c-0.6,0-1-0.4-1-1v-2c0-0.6,0.4-1,1-1s1,0.4,1,1v2C13,23.6,12.6,24,12,24z"></path><path d="M5.6,6.6c-0.3,0-0.5-0.1-0.7-0.3L3.5,4.9c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l1.4,1.4c0.4,0.4,0.4,1,0,1.4C6.2,6.5,5.9,6.6,5.6,6.6z"></path><path d="M19.8,20.8c-0.3,0-0.5-0.1-0.7-0.3l-1.4-1.4c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l1.4,1.4c0.4,0.4,0.4,1,0,1.4C20.3,20.7,20,20.8,19.8,20.8z"></path><path d="M3,13H1c-0.6,0-1-0.4-1-1s0.4-1,1-1h2c0.6,0,1,0.4,1,1S3.6,13,3,13z"></path><path d="M23,13h-2c-0.6,0-1-0.4-1-1s0.4-1,1-1h2c0.6,0,1,0.4,1,1S23.6,13,23,13z"></path><path d="M4.2,20.8c-0.3,0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1,0-1.4l1.4-1.4c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4l-1.4,1.4C4.7,20.7,4.5,20.8,4.2,20.8z"></path><path d="M18.4,6.6c-0.3,0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1,0-1.4l1.4-1.4c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4l-1.4,1.4C18.9,6.5,18.6,6.6,18.4,6.6z"></path></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="theme-switch-moon"><path d="M12.1,22c-0.3,0-0.6,0-0.9,0c-5.5-0.5-9.5-5.4-9-10.9c0.4-4.8,4.2-8.6,9-9c0.4,0,0.8,0.2,1,0.5c0.2,0.3,0.2,0.8-0.1,1.1c-2,2.7-1.4,6.4,1.3,8.4c2.1,1.6,5,1.6,7.1,0c0.3-0.2,0.7-0.3,1.1-0.1c0.3,0.2,0.5,0.6,0.5,1c-0.2,2.7-1.5,5.1-3.6,6.8C16.6,21.2,14.4,22,12.1,22zM9.3,4.4c-2.9,1-5,3.6-5.2,6.8c-0.4,4.4,2.8,8.3,7.2,8.7c2.1,0.2,4.2-0.4,5.8-1.8c1.1-0.9,1.9-2.1,2.4-3.4c-2.5,0.9-5.3,0.5-7.5-1.1C9.2,11.4,8.1,7.7,9.3,4.4z"></path></svg>
</div>
</div>
</template>

<style scoped>
.toggle-theme {
float: right;
padding: 3px;
margin: 5px;
border: 1px solid #cfcfcf;
border-radius: 20px;
width: 45px;
height: 25px;
text-align: left;
cursor: pointer;
}
.toggle-theme-dark {
border: 1px solid #fff;
}
.theme-switch-icon {
position: relative;
float: left;
width: 17px;
height: 17px;
padding: 2px;
border-radius: 50%;
box-sizing: border-box;
}
.theme-switch-icon svg {
position: absolute;
top:0;
left: 0;
width: 16px;
height: 16px;
}
.toggle-theme-dark .theme-switch-icon {
float: right !important;
}
.toggle-theme-dark .theme-switch-icon svg {
fill: #fff !important;
}
.toggle-theme .theme-switch-icon svg.theme-switch-sun {
display: inherit;
}
.toggle-theme .theme-switch-icon svg.theme-switch-moon {
display: none;
}
.toggle-theme-dark .theme-switch-icon svg.theme-switch-sun {
display: none;
}
.toggle-theme-dark .theme-switch-icon svg.theme-switch-moon {
display: inherit;
}
</style>
3 changes: 3 additions & 0 deletions app/resources/js/components/TopBar.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<script setup>
import { RouterLink } from 'vue-router'
import ChangeTheme from '@/components/ChangeTheme.vue';
import ChangeLocale from '@/components/ChangeLocale.vue'
</script>

Expand All @@ -8,6 +9,8 @@ import ChangeLocale from '@/components/ChangeLocale.vue'
<RouterLink to="/" class="menu-link">{{ $t('page.Home') }}</RouterLink>
<RouterLink to="/about" class="menu-link">{{ $t('page.About') }}</RouterLink>
<RouterLink to="/error404" class="menu-link">404</RouterLink>

<ChangeLocale />
<ChangeTheme />
</nav>
</template>
16 changes: 16 additions & 0 deletions app/resources/js/stores/theme.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { ref, computed } from 'vue'
import { defineStore } from 'pinia'

export const useThemeStore = defineStore('theme', () => {
const color = ref('light')
const getColor = computed(() => color.value )
function toggle() {
color.value = color.value == 'light' ? 'dark' : 'light'
update()
}
function update() {
document.querySelector('body').setAttribute('color-scheme', color.value)
}

return { color, getColor, toggle, update }
})

0 comments on commit bea181d

Please sign in to comment.