@ant-design/icons#AuditOutlined JavaScript Examples

The following examples show how to use @ant-design/icons#AuditOutlined. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: router.js    From credit with Apache License 2.0 6 votes vote down vote up
userRoutes = [
    {
        path: "/admin/userdashboard",
        component: UserDashboard,
        isShow: true,
        title: "个人信息",
        icon: AreaChartOutlined
    },
    {
        path: "/admin/dataUpload",
        component: dataUpload,
        isShow: true,
        title: "信息录入",
        icon: CloudUploadOutlined
    },
    {
        path: "/admin/creditgrant",
        component: creditGrant,
        isShow: true,
        title: "信用数据授权",
        icon: AuditOutlined
    },
    {
        path: "/admin/certificateDownload",
        component: certificateDownload,
        isShow: true,
        title: "证书下载",
        icon: DownloadOutlined
    },
    {
        path: "/admin/bingli",
        component: bingli,
        isShow: true,
        title: "病例",
        icon: DownloadOutlined
    }
]
Example #2
Source File: App.js    From next-terminal with GNU Affero General Public License v3.0 4 votes vote down vote up
render() {

        const menu = (
            <Menu>

                <Menu.Item>
                    <Link to={'/info'}>
                        <SolutionOutlined/> 个人中心
                    </Link>
                </Menu.Item>
                <Menu.Divider/>

                <Menu.Item>

                    <Popconfirm
                        key='login-btn-pop'
                        title="您确定要退出登录吗?"
                        onConfirm={this.confirm}
                        okText="确定"
                        cancelText="取消"
                        placement="left"
                    >
                        <LogoutOutlined/> 退出登录
                    </Popconfirm>
                </Menu.Item>

            </Menu>
        );

        return (

            <Switch>
                <Route path="/access" component={Access}/>
                <Route path="/term" component={Term}/>
                <Route path="/login"><Login updateUser={this.updateUser}/></Route>

                <Route path="/">
                    <Layout className="layout" style={{minHeight: '100vh'}}>

                        {
                            isAdmin() ?
                                <>
                                    <Sider collapsible collapsed={this.state.collapsed} trigger={null}>
                                        <div className="logo">
                                            <img src={this.state.logo} alt='logo' width={this.state.logoWidth}/>
                                        </div>

                                        <Menu
                                            onClick={(e) => this.setCurrent(e.key)}
                                            selectedKeys={[this.state.current]}
                                            onOpenChange={this.subMenuChange}
                                            defaultOpenKeys={this.state.openKeys}
                                            theme="dark" mode="inline" defaultSelectedKeys={['dashboard']}
                                            inlineCollapsed={this.state.collapsed}
                                            style={{lineHeight: '64px'}}>

                                            <Menu.Item key="dashboard" icon={<DashboardOutlined/>}>
                                                <Link to={'/'}>
                                                    控制面板
                                                </Link>
                                            </Menu.Item>

                                            <SubMenu key='resource' title='资源管理' icon={<CloudServerOutlined/>}>
                                                <Menu.Item key="asset" icon={<DesktopOutlined/>}>
                                                    <Link to={'/asset'}>
                                                        资产列表
                                                    </Link>
                                                </Menu.Item>
                                                <Menu.Item key="credential" icon={<IdcardOutlined/>}>
                                                    <Link to={'/credential'}>
                                                        授权凭证
                                                    </Link>
                                                </Menu.Item>
                                                <Menu.Item key="dynamic-command" icon={<CodeOutlined/>}>
                                                    <Link to={'/dynamic-command'}>
                                                        动态指令
                                                    </Link>
                                                </Menu.Item>
                                                <Menu.Item key="access-gateway" icon={<ApiOutlined/>}>
                                                    <Link to={'/access-gateway'}>
                                                        接入网关
                                                    </Link>
                                                </Menu.Item>
                                            </SubMenu>

                                            <SubMenu key='audit' title='会话审计' icon={<AuditOutlined/>}>
                                                <Menu.Item key="online-session" icon={<LinkOutlined/>}>
                                                    <Link to={'/online-session'}>
                                                        在线会话
                                                    </Link>
                                                </Menu.Item>

                                                <Menu.Item key="offline-session" icon={<DisconnectOutlined/>}>
                                                    <Link to={'/offline-session'}>
                                                        历史会话
                                                    </Link>
                                                </Menu.Item>
                                            </SubMenu>
                                            <SubMenu key='ops' title='系统运维' icon={<ControlOutlined/>}>
                                                <Menu.Item key="login-log" icon={<LoginOutlined/>}>
                                                    <Link to={'/login-log'}>
                                                        登录日志
                                                    </Link>
                                                </Menu.Item>

                                                <Menu.Item key="job" icon={<BlockOutlined/>}>
                                                    <Link to={'/job'}>
                                                        计划任务
                                                    </Link>
                                                </Menu.Item>

                                                <Menu.Item key="access-security" icon={<SafetyCertificateOutlined/>}>
                                                    <Link to={'/access-security'}>
                                                        访问安全
                                                    </Link>
                                                </Menu.Item>
                                                <Menu.Item key="storage" icon={<HddOutlined/>}>
                                                    <Link to={'/storage'}>
                                                        磁盘空间
                                                    </Link>
                                                </Menu.Item>
                                            </SubMenu>

                                            <SubMenu key='user-manage' title='用户管理' icon={<UserSwitchOutlined/>}>
                                                <Menu.Item key="user" icon={<UserOutlined/>}>
                                                    <Link to={'/user'}>
                                                        用户管理
                                                    </Link>
                                                </Menu.Item>
                                                <Menu.Item key="user-group" icon={<TeamOutlined/>}>
                                                    <Link to={'/user-group'}>
                                                        用户组管理
                                                    </Link>
                                                </Menu.Item>
                                                <Menu.Item key="strategy" icon={<InsuranceOutlined/>}>
                                                    <Link to={'/strategy'}>
                                                        授权策略
                                                    </Link>
                                                </Menu.Item>
                                            </SubMenu>
                                            <Menu.Item key="my-file" icon={<FolderOutlined/>}>
                                                <Link to={'/my-file'}>
                                                    我的文件
                                                </Link>
                                            </Menu.Item>
                                            <Menu.Item key="info" icon={<SolutionOutlined/>}>
                                                <Link to={'/info'}>
                                                    个人中心
                                                </Link>
                                            </Menu.Item>
                                            <Menu.Item key="setting" icon={<SettingOutlined/>}>
                                                <Link to={'/setting'}>
                                                    系统设置
                                                </Link>
                                            </Menu.Item>
                                        </Menu>
                                    </Sider>

                                    <Layout className="site-layout">
                                        <Header className="site-layout-background"
                                                style={{padding: 0, height: headerHeight, zIndex: 20}}>
                                            <div className='layout-header'>
                                                <div className='layout-header-left'>
                                                    {React.createElement(this.state.collapsed ? MenuUnfoldOutlined : MenuFoldOutlined, {
                                                        className: 'trigger',
                                                        onClick: this.onCollapse,
                                                    })}
                                                </div>

                                                <div className='layout-header-right'>
                                                    <div className={'layout-header-right-item'}>
                                                        <a style={{color: 'black'}} target='_blank'
                                                           href='https://github.com/dushixiang/next-terminal'
                                                           rel='noreferrer noopener'>
                                                            <GithubOutlined/>
                                                        </a>
                                                    </div>
                                                </div>

                                                <div className='layout-header-right'>
                                                    <Dropdown overlay={menu}>
                                                        <div className='nickname layout-header-right-item'>
                                                            {getCurrentUser()['nickname']} &nbsp;<DownOutlined/>
                                                        </div>
                                                    </Dropdown>
                                                </div>
                                            </div>
                                        </Header>

                                        <Route path="/" exact component={Dashboard}/>
                                        <Route path="/user" component={User}/>
                                        <Route path="/user-group" component={UserGroup}/>
                                        <Route path="/asset" component={Asset}/>
                                        <Route path="/credential" component={Credential}/>
                                        <Route path="/dynamic-command" component={DynamicCommand}/>
                                        <Route path="/batch-command" component={BatchCommand}/>
                                        <Route path="/online-session" component={OnlineSession}/>
                                        <Route path="/offline-session" component={OfflineSession}/>
                                        <Route path="/login-log" component={LoginLog}/>
                                        <Route path="/info" component={Info}/>
                                        <Route path="/setting" component={Setting}/>
                                        <Route path="/job" component={Job}/>
                                        <Route path="/access-security" component={Security}/>
                                        <Route path="/access-gateway" component={AccessGateway}/>
                                        <Route path="/my-file" component={MyFile}/>
                                        <Route path="/storage" component={Storage}/>
                                        <Route path="/strategy" component={Strategy}/>

                                        <Footer style={{textAlign: 'center'}}>
                                            Copyright © 2020-2022 dushixiang, All Rights Reserved.
                                            Version:{this.state.package['version']}
                                        </Footer>
                                    </Layout>
                                </> :
                                <>
                                    <Header style={{padding: 0}}>
                                        <div className='km-header'>
                                            <div style={{flex: '1 1 0%'}}>
                                                <Link to={'/'}>
                                                    <img src={this.state.logo} alt='logo' width={120}/>
                                                </Link>

                                                <Link to={'/my-file'}>
                                                    <Button type="text" style={{color: 'white'}}
                                                            icon={<FolderOutlined/>}>
                                                        文件
                                                    </Button>
                                                </Link>

                                                <Link to={'/dynamic-command'}>
                                                    <Button type="text" style={{color: 'white'}}
                                                            icon={<CodeOutlined/>}>
                                                        指令
                                                    </Button>
                                                </Link>
                                            </div>
                                            <div className='km-header-right'>
                                                <Dropdown overlay={menu}>
                                                <span className={'km-header-right-item'}>
                                                    {getCurrentUser()['nickname']}
                                                </span>
                                                </Dropdown>
                                            </div>
                                        </div>
                                    </Header>
                                    <Content className='km-container'>
                                        <Layout>
                                            <Route path="/" exact component={MyAsset}/>
                                            <Content className={'kd-content'}>
                                                <Route path="/info" component={Info}/>
                                                <Route path="/my-file" component={MyFile}/>
                                                <Route path="/dynamic-command" component={DynamicCommand}/>
                                            </Content>
                                        </Layout>
                                    </Content>
                                    <Footer style={{textAlign: 'center'}}>
                                        Copyright © 2020-2022 dushixiang, All Rights Reserved.
                                        Version:{this.state.package['version']}
                                    </Footer>
                                </>
                        }


                    </Layout>
                </Route>
            </Switch>

        );
    }
Example #3
Source File: release_branch_detail_card.js    From art-dashboard-ui with Apache License 2.0 4 votes vote down vote up
render() {

        const qa_complete = this.state.data["advisory_details"][0]["qa_complete"]
        const doc_complete = this.state.data["advisory_details"][0]["doc_complete"]
        const security_approved = this.state.data["advisory_details"][0]["security_approved"]


        let qa_step = this.get_step_number(qa_complete)
        let doc_step = this.get_step_number(doc_complete)
        let security_step = this.get_step_number(security_approved)

        return (
            <div style={{padding: "40px"}}>
                <Card hoverable={true}
                      extra={this.state.data["advisory_details"][0]["synopsis"]}
                      title={this.state.data.type[0].toUpperCase() + this.state.data.type.slice(1)}
                      actions={[
                          <a href={"https://errata.devel.redhat.com/advisory/" + this.state.data["advisory_details"][0]["id"]} target="_blank" rel="noopener noreferrer"><Tooltip title={"Errata Advisory Link"}><DesktopOutlined/></Tooltip></a>,
                          <Link to={`/release/advisory/overview/${this.state.data["advisory_details"][0]["id"]}`}>
                              <Tooltip title={"Advisory Overview"}>
                                  <AuditOutlined/>
                              </Tooltip>
                          </Link>
                      ]}>

                    <Row className={"center"}>
                        <Col span={8}>
                            <p>Errata Id</p>
                            <Tag color={"red"}>{this.state.data["advisory_details"][0]["id"]}</Tag>
                        </Col>
                        <Col span={8}>
                            <p>Advisory Status</p>
                            <Tag color="geekblue">{this.state.data["advisory_details"][0]["status"]}</Tag>
                        </Col>
                        <Col span={8}>
                            <p>Release Date</p>
                            <Tag color="green">{this.state.data["advisory_details"][0]["release_date"]}</Tag>
                        </Col>
                    </Row>
                    <br/>
                    <Row className={"center"}>
                        <Col span={8}>
                            <p>QE Status</p>
                            <Approval_status_tag result={qa_step} result_for={"QE Approval"}/>
                        </Col>
                        <Col span={8}>
                            <p>Doc Status</p>
                            <Approval_status_tag result={doc_step} result_for={"Doc Approval"}/>
                        </Col>
                        <Col span={8}>
                            <p>Security Status</p>
                            <Approval_status_tag result={security_step} result_for={"Security Approval"}/>
                        </Col>
                    </Row>
                    <br/>
                    <Row className={"center"}>
                        <Col span={8}>
                            <p>QE Reviewer</p>
                            {this.state.data.advisory_details[0].qe_reviewer_id === null && <Tag color={"red"}>Not Available</Tag>}
                            {this.state.data.advisory_details[0].qe_reviewer_id !== null && <Tag color={"green"}><a href={"https://errata.devel.redhat.com/user/" + this.state.data.advisory_details[0].qe_reviewer_id} target="_blank" rel="noopener noreferrer">{this.state.data.advisory_details[0].qe_reviewer_id}</a></Tag>}
                        </Col>
                        <Col span={8}>
                            <p>Doc Reviewer</p>
                            {this.state.data.advisory_details[0].doc_reviewer_id === null && <Tag color={"red"}>Not Available</Tag>}
                            {this.state.data.advisory_details[0].doc_reviewer_id !== null && <Tag color={"green"}><a href={"https://errata.devel.redhat.com/user/" + this.state.data.advisory_details[0].doc_reviewer_id} target="_blank" rel="noopener noreferrer">{this.state.data.advisory_details[0].doc_reviewer_id}</a></Tag>}
                        </Col>
                        <Col span={8}>
                            <p>Security Reviewer</p>
                            {this.state.data.advisory_details[0].product_security_reviewer_id === null && <Tag color={"red"}>Not Available</Tag>}
                            {this.state.data.advisory_details[0].product_security_reviewer_id !== null && <Tag color={"green"}><a href={"https://errata.devel.redhat.com/user/" + this.state.data.advisory_details[0].product_security_reviewer_id} target="_blank" rel="noopener noreferrer">{this.state.data.advisory_details[0].product_security_reviewer_id}</a></Tag>}
                        </Col>
                    </Row>
                    <br/>
                    <br/>
                    <Row>
                        <Col span={24}>
                            <Release_branch_detail_card_bug_summary_table data={this.state.data.bug_summary}/>
                        </Col>
                    </Row>
                </Card>
            </div>
        );
    }