aboutsummaryrefslogtreecommitdiff
path: root/modern/src/common/attributes/usePositionProperties.js
blob: a31700d626b0f47c7470269820042215a89bae59 (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
import { useMemo } from 'react';

export default (t) => useMemo(() => ({
  id: {
    name: t('deviceIdentifier'),
    type: 'number',
  },
  latitude: {
    name: t('positionLatitude'),
    type: 'number',
  },
  longitude: {
    name: t('positionLongitude'),
    type: 'number',
  },
  speed: {
    name: t('positionSpeed'),
    type: 'number',
  },
  course: {
    name: t('positionCourse'),
    type: 'number',
  },
  altitude: {
    name: t('positionAltitude'),
    type: 'number',
  },
  accuracy: {
    name: t('positionAccuracy'),
    type: 'number',
  },
  valid: {
    name: t('positionValid'),
    type: 'boolean',
  },
  protocol: {
    name: t('positionProtocol'),
    type: 'string',
  },
  address: {
    name: t('positionAddress'),
    type: 'string',
  },
  deviceTime: {
    name: t('positionDeviceTime'),
    type: 'string',
  },
  fixTime: {
    name: t('positionFixTime'),
    type: 'string',
  },
  serverTime: {
    name: t('positionServerTime'),
    type: 'string',
  },
}), [t]);