chore: fix tracking with no auth, trackit url
This commit is contained in:
parent
3812b947df
commit
39b6367992
@ -16,6 +16,7 @@ URLS:
|
|||||||
#data: /assets/data
|
#data: /assets/data
|
||||||
# DATA_URL: ${DATA_PATH}/dist/info.json
|
# DATA_URL: ${DATA_PATH}/dist/info.json
|
||||||
data: /getdata
|
data: /getdata
|
||||||
|
trackit: /trackit
|
||||||
send: /info
|
send: /info
|
||||||
htmlAttrs:
|
htmlAttrs:
|
||||||
bold: #itm-title
|
bold: #itm-title
|
||||||
|
@ -2,16 +2,19 @@ import useState from '~/hooks/useState'
|
|||||||
import { MessageType, TrackActionType } from '~/typs'
|
import { MessageType, TrackActionType } from '~/typs'
|
||||||
import { show_message,send_data} from '~/hooks/utils'
|
import { show_message,send_data} from '~/hooks/utils'
|
||||||
|
|
||||||
export const track_action = async(e: any, src?: {ref: string,text?: string}, act = 'click') => {
|
export const track_action = async(e: any, src?: {ref: string,text?: string,lng?: string}, routeKy?: string, act = 'click') => {
|
||||||
const url = useState().CONFURLS.value.tracking || ''
|
const url = useState().CONFURLS.value.trackit || ''
|
||||||
if (url.length == 0) {
|
if (url.length == 0) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
const routeKey = routeKy.length > 0 ? routeKy : 'public'
|
||||||
let href=''
|
let href=''
|
||||||
let text=''
|
let text=''
|
||||||
|
let lang=''
|
||||||
if (src && src.ref && src.ref.length > 0 ) {
|
if (src && src.ref && src.ref.length > 0 ) {
|
||||||
href=src.ref
|
href=src.ref
|
||||||
text=src.text ? src.text : src.ref
|
text=src.text ? src.text : src.ref
|
||||||
|
lang=src.lng ? src.lng : navigator.language
|
||||||
} else if (e && e.target) {
|
} else if (e && e.target) {
|
||||||
switch(e.target.tagName) {
|
switch(e.target.tagName) {
|
||||||
case 'IMG':
|
case 'IMG':
|
||||||
@ -32,12 +35,12 @@ export const track_action = async(e: any, src?: {ref: string,text?: string}, act
|
|||||||
}
|
}
|
||||||
const trackAction: TrackActionType = {
|
const trackAction: TrackActionType = {
|
||||||
when: Date.now().toString(),
|
when: Date.now().toString(),
|
||||||
where: `${useState().APPNAME.value}>${text}: ${href}`,
|
where: `app=${useState().APPNAME.value}|ref=${href}|target=${text}`,
|
||||||
what: act,
|
what: act,
|
||||||
context: navigator.userAgent,
|
context: `lng=${lang}|nvlng=${navigator.language}|ag=${navigator.userAgent}`,
|
||||||
data: useState().userID.value,
|
data: useState().userID.value.length > 0 ? useState().userID.value.length : routeKey,
|
||||||
}
|
}
|
||||||
const [_res,err] = await send_data(url, trackAction, true, true)
|
const [_res,err] = await send_data(url, trackAction, false, true)
|
||||||
if (err && err.length > 0 ) {
|
if (err && err.length > 0 ) {
|
||||||
show_message(MessageType.Error, `Error: ${err}`,2000)
|
show_message(MessageType.Error, `Error: ${err}`,2000)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user