Compare commits

..

No commits in common. "3900052adbfb98c33b44690f2a3b2a720dddf75c" and "66715d05a5d035aee1e2ec788cdd32e9bbe4a1ee" have entirely different histories.

4 changed files with 20 additions and 12 deletions

View File

@ -70,25 +70,25 @@ Available to download for free from [here](https://github.com/tiny-craft/tiny-rd
* Node.js >= 16
* NPM >= 9
### Install Wails
### Install wails
```bash
go install github.com/wailsapp/wails/v2/cmd/wails@latest
```
### Pull the Code
### Clone the code
```bash
git clone https://github.com/tiny-craft/tiny-rdm --depth=1
```
### Build Frontend
### Build frontend
```bash
npm install --prefix ./frontend
```
### Compile and Run
### Compile and run
```bash
wails dev

View File

@ -14,7 +14,7 @@ import useConnectionStore from './stores/connections.js'
import { useI18n } from 'vue-i18n'
import { darkTheme, NButton, NSpace } from 'naive-ui'
import KeyFilterDialog from './components/dialogs/KeyFilterDialog.vue'
import { Environment, WindowSetDarkTheme, WindowSetLightTheme } from 'wailsjs/runtime/runtime.js'
import { WindowSetDarkTheme, WindowSetLightTheme } from 'wailsjs/runtime/runtime.js'
import { darkThemeOverrides, themeOverrides } from '@/utils/theme.js'
import AboutDialog from '@/components/dialogs/AboutDialog.vue'
import FlushDbDialog from '@/components/dialogs/FlushDbDialog.vue'
@ -22,7 +22,8 @@ import ExportKeyDialog from '@/components/dialogs/ExportKeyDialog.vue'
import ImportKeyDialog from '@/components/dialogs/ImportKeyDialog.vue'
import { Info } from 'wailsjs/go/services/systemService.js'
import DecoderDialog from '@/components/dialogs/DecoderDialog.vue'
import { loadModule, trackEvent } from '@/utils/analytics.js'
import { enableTrack, loadModule, trackEvent } from '@/utils/analytics.js'
import { endsWith } from 'lodash'
const prefStore = usePreferencesStore()
const connectionStore = useConnectionStore()
@ -37,10 +38,13 @@ onMounted(async () => {
if (prefStore.autoCheckUpdate) {
prefStore.checkForUpdate()
}
const env = await Environment()
loadModule(env.buildType !== 'dev' && prefStore.general.allowTrack !== false).then(() => {
loadModule(prefStore.general.allowTrack !== false).then(() => {
Info().then(({ data }) => {
trackEvent('startup', data, true)
if (endsWith(data.version, 'dev')) {
enableTrack(false)
} else {
trackEvent('startup', data, true)
}
})
})

View File

@ -427,7 +427,6 @@ const networkRate = shallowRef({
const chartOption = computed(() => {
return {
animation: false,
responsive: true,
maintainAspectRatio: false,
events: [],
@ -465,7 +464,6 @@ const chartOption = computed(() => {
const byteChartOption = computed(() => {
return {
animation: false,
responsive: true,
maintainAspectRatio: false,
events: [],

View File

@ -1,4 +1,5 @@
let inited = false
let allow = false
/**
* load umami analytics module
@ -6,6 +7,7 @@ let inited = false
* @return {Promise<void>}
*/
export const loadModule = async (allowTrack = true) => {
allow = allowTrack !== false
await new Promise((resolve, reject) => {
const script = document.createElement('script')
script.setAttribute('src', 'https://analytics.tinycraft.cc/script.js')
@ -25,7 +27,11 @@ export const loadModule = async (allowTrack = true) => {
}
const enable = () => {
return inited && umami
return inited && allow && umami
}
export const enableTrack = (enable) => {
allow = enable
}
export const trackEvent = async (event, data) => {