summaryrefslogtreecommitdiff
path: root/web/src/containers/job/Nodeset.jsx
blob: e0f035ca615437de5856e3853e562b9bf47cc894 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
// Copyright 2018 Red Hat, Inc
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.

import * as React from 'react'
import PropTypes from 'prop-types'
import {
  List,
  ListItem,
  TreeView
} from '@patternfly/react-core'

import {
  ServerIcon,
  TagIcon
} from '@patternfly/react-icons'

class Nodeset extends React.Component {
  static propTypes = {
    nodeset: PropTypes.object.isRequired
  }

  constructor(props) {
    super(props)

    this.state = { activeItems: {} }

    // eslint-disable-next-line no-unused-vars
    this.onSelect = (event, treeViewItem) => {
      this.setState({
        /* NOTE(ianw) 2021-08-13 : override this
         * from standard [treeViewItem] as we don't want
         * anything selectable.
         */
        activeItems: {}
      })
    }
  }

  render () {
    const { nodeset } = this.props

    const { activeItems } = this.state

    const nodes = []
    nodeset.nodes.forEach((node) => {
      nodes.push(
        {
          name: (
            <List isPlain>
              <ListItem icon={<TagIcon />}>{node.name}</ListItem>
              <ListItem icon={<ServerIcon />}>{node.label}</ListItem>
            </List>),
          id: node.name + node.label,
        }
      )
    })
    const groups = []
    nodeset.groups.forEach((group) => {
      let group_children = []
      group.nodes.forEach((child_node) => {
        group_children.push(
          {
            name: (
              <List isPlain>
                <ListItem icon={<TagIcon />}>{child_node}</ListItem>
              </List>
            ),
            id: child_node
          }
        )})
      groups.push(
        {
          name: group.name,
          id: group.name,
          children: group_children
        }
      )
    })
    const options = [
      {
        name: 'Nodeset ' + nodeset.name,
        id: 'nodes',
        children: nodes
      },
      {
        name: 'Node Groups',
        id: 'groups',
        children: groups
      }
    ]

    return (
      <React.Fragment>
        <TreeView data={options} activeItems={activeItems} onSelect={this.onSelect} />
      </React.Fragment>
    )
  }
}

export default Nodeset