Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(darkModeSwitcher.vue): simplify darkmode switcher code #9

Merged
merged 1 commit into from
Jul 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions components/modules/darkModeSwitcher.vue
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
<template>
<!-- darkmode switcher -->
<span v-if="colorMode.value == 'light'" @click="toggle" class="group relative flex h-9 w-9 rounded-full transition duration-500 hover:bg-blue-950/5 dark:hover:bg-white/10">
<svg viewBox="0 0 24 24" fill="none" class="w-6 h-6 cursor-pointer m-auto fill-gray-500 group-hover:fill-gray-950 dark:fill-white/70 dark:group-hover:fill-white">
<!-- darkmode switcher -->
<span @click="toggle" class="group relative flex h-9 w-9 rounded-full transition duration-500 hover:bg-blue-950/5 dark:hover:bg-white/10">
<svg v-if="colorMode.value == 'light'" viewBox="0 0 24 24" fill="none" class="w-6 h-6 cursor-pointer m-auto fill-gray-500 group-hover:fill-gray-950 dark:fill-white/70 dark:group-hover:fill-white">
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.715 15.15A6.5 6.5 0 0 1 9 6.035C6.106 6.922 4 9.645 4 12.867c0 3.94 3.153 7.136 7.042 7.136 3.101 0 5.734-2.032 6.673-4.853Z" class="fill-transparent"></path>
<path d="m17.715 15.15.95.316a1 1 0 0 0-1.445-1.185l.495.869ZM9 6.035l.846.534a1 1 0 0 0-1.14-1.49L9 6.035Zm8.221 8.246a5.47 5.47 0 0 1-2.72.718v2a7.47 7.47 0 0 0 3.71-.98l-.99-1.738Zm-2.72.718A5.5 5.5 0 0 1 9 9.5H7a7.5 7.5 0 0 0 7.5 7.5v-2ZM9 9.5c0-1.079.31-2.082.845-2.93L8.153 5.5A7.47 7.47 0 0 0 7 9.5h2Zm-4 3.368C5 10.089 6.815 7.75 9.292 6.99L8.706 5.08C5.397 6.094 3 9.201 3 12.867h2Zm6.042 6.136C7.718 19.003 5 16.268 5 12.867H3c0 4.48 3.588 8.136 8.042 8.136v-2Zm5.725-4.17c-.81 2.433-3.074 4.17-5.725 4.17v2c3.552 0 6.553-2.327 7.622-5.537l-1.897-.632Z" class="fill-slate-400 dark:fill-slate-500"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17 3a1 1 0 0 1 1 1 2 2 0 0 0 2 2 1 1 0 1 1 0 2 2 2 0 0 0-2 2 1 1 0 1 1-2 0 2 2 0 0 0-2-2 1 1 0 1 1 0-2 2 2 0 0 0 2-2 1 1 0 0 1 1-1Z" class="fill-slate-400 dark:fill-slate-500"></path>
</svg>
</span>
<span v-else @click="toggle" class="group relative flex h-9 w-9 rounded-full transition duration-500 hover:bg-blue-950/5 dark:hover:bg-white/10">
<svg viewBox="0 0 24 24" fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 cursor-pointer m-auto">
<svg v-else-if="colorMode.value == 'dark'" viewBox="0 0 24 24" fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6 cursor-pointer m-auto">
<path d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" class="stroke-slate-400 dark:stroke-slate-500"></path>
<path d="M12 4v1M17.66 6.344l-.828.828M20.005 12.004h-1M17.66 17.664l-.828-.828M12 20.01V19M6.34 17.664l.835-.836M3.995 12.004h1.01M6 6l.835.836" class="stroke-slate-400 dark:stroke-slate-500"></path>
</svg>
</span>
</span>

<!-- darkmode switcher -->
</template>
Expand All @@ -23,3 +21,4 @@ function toggle() {
colorMode.preference = colorMode.value == "light" ? "dark" : "light";
}
</script>