Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tracing_list_filtered_search.vue « components « tracing « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d086f2d03ff561aeaca72ca2abde6d4527851293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<script>
import { GlFilteredSearch, GlFilteredSearchToken } from '@gitlab/ui';
import { s__ } from '~/locale';
import {
  OPERATORS_IS,
  OPERATORS_IS_NOT,
} from '~/vue_shared/components/filtered_search_bar/constants';
import {
  PERIOD_FILTER_TOKEN_TYPE,
  SERVICE_NAME_FILTER_TOKEN_TYPE,
  OPERATION_FILTER_TOKEN_TYPE,
  TRACE_ID_FILTER_TOKEN_TYPE,
  DURATION_MS_FILTER_TOKEN_TYPE,
} from '../filters';

export default {
  availableTokens: [
    {
      title: s__('Tracing|Period'),
      icon: 'clock',
      type: PERIOD_FILTER_TOKEN_TYPE,
      token: GlFilteredSearchToken,
      operators: OPERATORS_IS,
      unique: true,
      options: [
        { value: '1m', title: s__('Tracing|Last 1 minute') },
        { value: '15m', title: s__('Tracing|Last 15 minutes') },
        { value: '30m', title: s__('Tracing|Last 30 minutes') },
        { value: '1h', title: s__('Tracing|Last 1 hour') },
        { value: '24h', title: s__('Tracing|Last 24 hours') },
        { value: '7d', title: s__('Tracing|Last 7 days') },
        { value: '14d', title: s__('Tracing|Last 14 days') },
        { value: '30d', title: s__('Tracing|Last 30 days') },
      ],
    },
    {
      title: s__('Tracing|Service'),
      type: SERVICE_NAME_FILTER_TOKEN_TYPE,
      token: GlFilteredSearchToken,
      operators: OPERATORS_IS_NOT,
    },
    {
      title: s__('Tracing|Operation'),
      type: OPERATION_FILTER_TOKEN_TYPE,
      token: GlFilteredSearchToken,
      operators: OPERATORS_IS_NOT,
    },
    {
      title: s__('Tracing|Trace ID'),
      type: TRACE_ID_FILTER_TOKEN_TYPE,
      token: GlFilteredSearchToken,
      operators: OPERATORS_IS_NOT,
    },
    {
      title: s__('Tracing|Duration (ms)'),
      type: DURATION_MS_FILTER_TOKEN_TYPE,
      token: GlFilteredSearchToken,
      operators: [
        { value: '>', description: s__('Tracing|longer than') },
        { value: '<', description: s__('Tracing|shorter than') },
      ],
    },
  ],
  components: {
    GlFilteredSearch,
  },
  props: {
    initialFilters: {
      type: Array,
      required: false,
      default: () => [],
    },
  },
};
</script>

<template>
  <div class="vue-filtered-search-bar-container row-content-block gl-border-t-none">
    <gl-filtered-search
      :value="initialFilters"
      terms-as-tokens
      :placeholder="s__('Tracing|Filter Traces')"
      :available-tokens="$options.availableTokens"
      @submit="$emit('submit', $event)"
    />
  </div>
</template>