60 lines
2.3 KiB
Python
60 lines
2.3 KiB
Python
from typing import List
|
|
|
|
import schemas
|
|
from chalicelib.core.metrics.modules import significance
|
|
from chalicelib.utils import helper
|
|
from chalicelib.utils import sql_helper as sh
|
|
|
|
|
|
def filter_stages(stages: List[schemas.SessionSearchEventSchema]):
|
|
ALLOW_TYPES = [schemas.EventType.CLICK, schemas.EventType.INPUT,
|
|
schemas.EventType.LOCATION, schemas.EventType.CUSTOM,
|
|
schemas.EventType.CLICK_MOBILE, schemas.EventType.INPUT_MOBILE,
|
|
schemas.EventType.VIEW_MOBILE, schemas.EventType.CUSTOM_MOBILE, ]
|
|
return [s for s in stages if s.type in ALLOW_TYPES and s.value is not None]
|
|
|
|
|
|
def __parse_events(f_events: List[dict]):
|
|
return [schemas.SessionSearchEventSchema.parse_obj(e) for e in f_events]
|
|
|
|
|
|
def __fix_stages(f_events: List[schemas.SessionSearchEventSchema]):
|
|
if f_events is None:
|
|
return
|
|
events = []
|
|
for e in f_events:
|
|
if e.operator is None:
|
|
e.operator = schemas.SearchEventOperator.IS
|
|
|
|
if not isinstance(e.value, list):
|
|
e.value = [e.value]
|
|
is_any = sh.isAny_opreator(e.operator)
|
|
if not is_any and isinstance(e.value, list) and len(e.value) == 0:
|
|
continue
|
|
events.append(e)
|
|
return events
|
|
|
|
|
|
def get_issues_on_the_fly_widget(project_id, data: schemas.CardSeriesFilterSchema):
|
|
data.events = filter_stages(data.events)
|
|
data.events = __fix_stages(data.events)
|
|
if len(data.events) < 0:
|
|
return {"issues": []}
|
|
|
|
return {
|
|
"issues": helper.dict_to_camel_case(
|
|
significance.get_issues_list(filter_d=data, project_id=project_id, first_stage=1,
|
|
last_stage=len(data.events)))}
|
|
|
|
|
|
def get_simple_funnel(project: schemas.ProjectContext, data: schemas.CardSeriesFilterSchema,
|
|
metric_format: schemas.MetricExtendedFormatType):
|
|
data.events = filter_stages(__parse_events(data.events))
|
|
data.events = __fix_stages(data.events)
|
|
if len(data.events) == 0:
|
|
return {"stages": [], "totalDropDueToIssues": 0}
|
|
insights = significance.get_simple_funnel(filter_d=data,
|
|
project=project,
|
|
metric_format=metric_format)
|
|
|
|
return {"stages": insights}
|