mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-23 15:17:09 +00:00
Giscus (#209)
* Test giscus on homepage * Use @giscus/react and support light theme * Track prefers color scheme * Create a discussion tab for each version
This commit is contained in:
@@ -7,6 +7,7 @@ export namespace Analytics {
|
||||
const DIM_LANGUAGE = 4
|
||||
const DIM_PREVIEW = 5
|
||||
const DIM_GENERATOR = 6
|
||||
const DIM_PREFERS_COLOR_SCHEME = 7
|
||||
|
||||
function event(category: string, action: string, label?: string) {
|
||||
ga('send', 'event', category, action, label)
|
||||
@@ -45,6 +46,10 @@ export namespace Analytics {
|
||||
dimension(DIM_GENERATOR, generator)
|
||||
}
|
||||
|
||||
export function setPrefersColorScheme(colorScheme: string) {
|
||||
dimension(DIM_PREFERS_COLOR_SCHEME, colorScheme)
|
||||
}
|
||||
|
||||
export function generatorEvent(action: string, label?: string) {
|
||||
event(ID_GENERATOR, action, label)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user