20 lines
399 B
TypeScript
20 lines
399 B
TypeScript
|
import { Analytics } from '@segment/analytics-node'
|
||
|
import { v4 as uuidv4 } from 'uuid'
|
||
|
|
||
|
const Store = require('electron-store')
|
||
|
const store = new Store()
|
||
|
|
||
|
export const analytics = new Analytics({ writeKey: process.env.TELEMETRY_WRITE_KEY })
|
||
|
|
||
|
export function id(): string {
|
||
|
const id = store.get('id')
|
||
|
|
||
|
if (id) {
|
||
|
return id
|
||
|
}
|
||
|
|
||
|
const uuid = uuidv4()
|
||
|
store.set('id', uuid)
|
||
|
return uuid
|
||
|
}
|