Skip to content

Commit 19ac073

Browse files
committedJul 22, 2024··
fix: color mode
1 parent d50efa7 commit 19ac073

9 files changed

+15
-9
lines changed
 

‎packages/devtools/client/app.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ setupClientRPC()
3434
3535
const client = useClient()
3636
const route = useRoute()
37-
const colorMode = useColorMode()
37+
const colorMode = getColorMode()
3838
const isUtilityView = computed(() => route.path.startsWith('/__') || route.path === '/')
3939
const waiting = computed(() => !client.value && !showConnectionWarning.value)
4040

‎packages/devtools/client/components/ComponentsGraph.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const props = defineProps<{
1111
1212
const container = ref<HTMLElement>()
1313
const navbar = ref<HTMLElement>()
14-
const colorMode = useColorMode()
14+
const colorMode = getColorMode()
1515
1616
const selected = ref<{
1717
id: string

‎packages/devtools/client/components/IframeView.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const props = defineProps<{
1010
tab: ModuleCustomTab
1111
}>()
1212
13-
const colorMode = useColorMode()
13+
const colorMode = getColorMode()
1414
const anchor = ref<HTMLDivElement>()
1515
const key = computed(() => props.tab.name)
1616
const iframeEl = ref<HTMLIFrameElement>()

‎packages/devtools/client/components/ServerRouteDetails.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const emit = defineEmits<{
1414
1515
const [DefineDefaultInputs, UseDefaultInputs] = createReusableTemplate()
1616
17-
const colorMode = useColorMode()
17+
const colorMode = getColorMode()
1818
const config = useServerConfig()
1919
const client = useClient()
2020

‎packages/devtools/client/components/ServerTaskDetails.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const routeInputBodyJSON = ref<any>({ payload: {} })
1616
const { inputDefaults } = useDevToolsOptions('serverRoutes')
1717
const [DefineDefaultInputs, UseDefaultInputs] = createReusableTemplate()
1818
19-
const colorMode = useColorMode()
19+
const colorMode = getColorMode()
2020
const config = useServerConfig()
2121
2222
const response = reactive({

‎packages/devtools/client/components/StateEditor.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const emit = defineEmits<{
1414
}>()
1515
1616
const isOpen = useVModel(props, 'open', emit, { passive: true })
17-
const colorMode = useColorMode()
17+
const colorMode = getColorMode()
1818
const proxy = shallowRef()
1919
const error = shallowRef()
2020

‎packages/devtools/client/components/StorageDetails.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang="ts">
22
import JsonEditorVue from 'json-editor-vue'
33
4-
const colorMode = useColorMode()
4+
const colorMode = getColorMode()
55
const nuxtApp = useNuxtApp()
66
const router = useRouter()
77
const searchString = ref('')

‎packages/devtools/client/components/TimelineArgumentView.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const OnSetup = defineComponent({
2626
},
2727
})
2828
29-
const colorMode = useColorMode()
29+
const colorMode = getColorMode()
3030
const copy = useCopy()
3131
</script>
3232

‎packages/devtools/client/composables/client.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,15 @@ export const showConnectionWarning = computed(() => {
3636
return connectionTimeout.value && !useClient().value
3737
})
3838

39+
export function getColorMode() {
40+
return useColorMode({
41+
storageKey: 'nuxt-devtools-color-mode',
42+
})
43+
}
44+
3945
export function useInjectionClient(): ComputedRef<NuxtDevtoolsIframeClient> {
4046
const client = useClient()
41-
const mode = useColorMode()
47+
const mode = getColorMode()
4248

4349
return computed(() => ({
4450
host: client.value,

0 commit comments

Comments
 (0)
Please sign in to comment.