TrialCount.tsx 6.6 KB
Newer Older
1
import * as React from 'react';
2
import { Stack, TooltipHost, ProgressIndicator, DirectionalHint } from '@fluentui/react';
3
import { EXPERIMENT, TRIALS } from '../../../static/datamodel';
4
import { CONTROLTYPE, TOOLTIP_BACKGROUND_COLOR, MAX_TRIAL_NUMBERS } from '../../../static/const';
5
6
7
import { EditExperimentParam } from './EditExperimentParam';
import { EditExpeParamContext } from './context';
import { ExpDurationContext } from './ExpDurationContext';
8
import { leftProgress, rightEidtParam, progressHeight } from './commonStyle';
9
10
11
12
13
14
15

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;
16
    const maxTrialNum = EXPERIMENT.profile.params.maxTrialNum;
17
    // support type [0, 1], not 98%
18
    const bar2Percent = bar2 / maxTrialNum;
19
20
21
22
23
24
    return (
        <ExpDurationContext.Consumer>
            {(value): React.ReactNode => {
                const { updateOverviewPage } = value;
                return (
                    <React.Fragment>
25
                        <Stack horizontal className='ExpDuration'>
Lijiaoa's avatar
Lijiaoa committed
26
                            <div style={leftProgress}>
27
                                <TooltipHost
Lijiaoa's avatar
Lijiaoa committed
28
                                    content={`${bar2.toString()} trials`}
29
30
31
32
33
34
35
36
37
38
39
40
41
42
                                    directionalHint={DirectionalHint.bottomCenter}
                                    tooltipProps={{
                                        calloutProps: {
                                            styles: {
                                                beak: { background: TOOLTIP_BACKGROUND_COLOR },
                                                beakCurtain: { background: TOOLTIP_BACKGROUND_COLOR },
                                                calloutMain: { background: TOOLTIP_BACKGROUND_COLOR }
                                            }
                                        }
                                    }}
                                >
                                    <ProgressIndicator
                                        className={EXPERIMENT.status}
                                        percentComplete={bar2Percent}
Lijiaoa's avatar
Lijiaoa committed
43
                                        barHeight={progressHeight}
44
                                    />
45
                                </TooltipHost>
46
47
48
49
50
                                <div className='exp-progress'>
                                    <span className={`${EXPERIMENT.status} bold`}>{bar2}</span>
                                    <span className='joiner'>/</span>
                                    <span>{maxTrialNum}</span>
                                </div>
51
                            </div>
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
                        </Stack>
                        <Stack horizontal className='marginTop'>
                            <div style={leftProgress}>
                                <Stack horizontal className='status-count' gap={60}>
                                    <div>
                                        <span>Running</span>
                                        <p>{count.get('RUNNING')}</p>
                                    </div>
                                    <div>
                                        <span>Succeeded</span>
                                        <p>{count.get('SUCCEEDED')}</p>
                                    </div>
                                    <div>
                                        <span>Stopped</span>
                                        <p>{stoppedCount}</p>
                                    </div>
                                </Stack>
                                <Stack horizontal className='status-count marginTop' gap={80}>
                                    <div>
                                        <span>Failed</span>
                                        <p>{count.get('FAILED')}</p>
                                    </div>
                                    <div>
                                        <span>Waiting</span>
                                        <p>{count.get('WAITING')}</p>
                                    </div>
                                </Stack>
                            </div>

                            <div style={rightEidtParam}>
82
83
                                <EditExpeParamContext.Provider
                                    value={{
84
                                        title: MAX_TRIAL_NUMBERS,
85
86
87
88
89
90
91
92
                                        field: 'maxTrialNum',
                                        editType: CONTROLTYPE[1],
                                        maxExecDuration: '',
                                        maxTrialNum: EXPERIMENT.profile.params.maxTrialNum,
                                        trialConcurrency: EXPERIMENT.profile.params.trialConcurrency,
                                        updateOverviewPage
                                    }}
                                >
93
94
95
                                    <div className='maxTrialNum'>
                                        <EditExperimentParam />
                                    </div>
96
                                </EditExpeParamContext.Provider>
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
                                <div className='concurrency'>
                                    <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>
113
114
                            </div>
                        </Stack>
115
116
117
118
119
120
                    </React.Fragment>
                );
            }}
        </ExpDurationContext.Consumer>
    );
};