TrialCount.tsx 5.22 KB
Newer Older
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import * as React from 'react';
import { Stack, TooltipHost, ProgressIndicator } from '@fluentui/react';
import { EXPERIMENT, TRIALS } from '../../../static/datamodel';
import { CONTROLTYPE } from '../../../static/const';
import { EditExperimentParam } from './EditExperimentParam';
import { EditExpeParamContext } from './context';
import { ExpDurationContext } from './ExpDurationContext';

const itemStyles: React.CSSProperties = {
    width: '62%'
};

const itemStyle2: React.CSSProperties = {
    width: '63%',
    textAlign: 'right'
};

const itemStyle1: React.CSSProperties = {
    width: '30%',
    height: 50
};
const itemRunning: React.CSSProperties = {
    width: '42%',
    height: 56
};

export const TrialCount = (): any => {
    const count = TRIALS.countStatus();
    // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
    const stoppedCount = count.get('USER_CANCELED')! + count.get('SYS_CANCELED')! + count.get('EARLY_STOPPED')!;
    // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
    const bar2 = count.get('RUNNING')! + count.get('SUCCEEDED')! + count.get('FAILED')! + stoppedCount;
    // support type [0, 1], not 98%
    const bar2Percent = bar2 / EXPERIMENT.profile.params.maxTrialNum;
    return (
        <ExpDurationContext.Consumer>
            {(value): React.ReactNode => {
                const { updateOverviewPage } = value;
                return (
                    <React.Fragment>
                        <Stack horizontal horizontalAlign='space-between' className='ExpDuration'>
                            <div style={itemStyles}>
                                <TooltipHost content={bar2.toString()}>
                                    <ProgressIndicator percentComplete={bar2Percent} barHeight={15} />
                                </TooltipHost>
                                <Stack horizontal className='mess'>
                                    <div style={itemRunning} className='basic'>
                                        <p>Running</p>
                                        <div>{count.get('RUNNING')}</div>
                                    </div>
                                    <div style={itemStyle1} className='basic'>
                                        <p>Failed</p>
                                        <div>{count.get('FAILED')}</div>
                                    </div>
                                    <div style={itemStyle1} className='basic'>
                                        <p>Stopped</p>
                                        <div>{stoppedCount}</div>
                                    </div>
                                </Stack>
                                <Stack horizontal horizontalAlign='space-between' className='mess'>
                                    <div style={itemStyle1} className='basic'>
                                        <p>Succeeded</p>
                                        <div>{count.get('SUCCEEDED')}</div>
                                    </div>

                                    <div style={itemStyle1} className='basic'>
                                        <p>Waiting</p>
                                        <div>{count.get('WAITING')}</div>
                                    </div>
                                </Stack>
                            </div>
                            <div style={itemStyle2}>
                                <EditExpeParamContext.Provider
                                    value={{
                                        title: 'Max trial numbers',
                                        field: 'maxTrialNum',
                                        editType: CONTROLTYPE[1],
                                        maxExecDuration: '',
                                        maxTrialNum: EXPERIMENT.profile.params.maxTrialNum,
                                        trialConcurrency: EXPERIMENT.profile.params.trialConcurrency,
                                        updateOverviewPage
                                    }}
                                >
                                    <EditExperimentParam />
                                </EditExpeParamContext.Provider>
                                <EditExpeParamContext.Provider
                                    value={{
                                        title: 'Concurrency',
                                        field: 'trialConcurrency',
                                        editType: CONTROLTYPE[2],
                                        // maxExecDuration: EXPERIMENT.profile.params.maxExecDuration,
                                        maxExecDuration: '',
                                        maxTrialNum: EXPERIMENT.profile.params.maxTrialNum,
                                        trialConcurrency: EXPERIMENT.profile.params.trialConcurrency,
                                        updateOverviewPage
                                    }}
                                >
                                    <EditExperimentParam />
                                </EditExpeParamContext.Provider>
                            </div>
                        </Stack>
                    </React.Fragment>
                );
            }}
        </ExpDurationContext.Consumer>
    );
};