| @@ -4,7 +4,7 @@ import CIcon from '@coreui/icons-react' | |||
| const _nav = [ | |||
| { | |||
| _tag: 'CSidebarNavItem', | |||
| name: 'Show number rows', | |||
| name: 'Print view', | |||
| to: '/DemoComponent1', | |||
| // icon: <CIcon name="cil-speedometer" customClasses="c-sidebar-nav-icon"/>, | |||
| badge: { | |||
| @@ -14,7 +14,7 @@ const _nav = [ | |||
| }, | |||
| { | |||
| _tag: 'CSidebarNavItem', | |||
| name: 'DemoComponent2', | |||
| name: 'Initiate export', | |||
| to: '/DemoComponent2', | |||
| // icon: <CIcon name="cil-speedometer" customClasses="c-sidebar-nav-icon"/>, | |||
| badge: { | |||
| @@ -24,7 +24,7 @@ const _nav = [ | |||
| }, | |||
| { | |||
| _tag: 'CSidebarNavItem', | |||
| name: 'DemoComponent3', | |||
| name: 'Hide table buttons', | |||
| to: '/DemoComponent3', | |||
| // icon: <CIcon name="cil-speedometer" customClasses="c-sidebar-nav-icon"/>, | |||
| badge: { | |||
| @@ -34,7 +34,7 @@ const _nav = [ | |||
| }, | |||
| { | |||
| _tag: 'CSidebarNavItem', | |||
| name: 'DemoComponent4', | |||
| name: 'Remove table style', | |||
| to: '/DemoComponent4', | |||
| // icon: <CIcon name="cil-speedometer" customClasses="c-sidebar-nav-icon"/>, | |||
| badge: { | |||
| @@ -44,7 +44,7 @@ const _nav = [ | |||
| }, | |||
| { | |||
| _tag: 'CSidebarNavItem', | |||
| name: 'DemoComponent5', | |||
| name: 'Remove table row', | |||
| to: '/DemoComponent5', | |||
| // icon: <CIcon name="cil-speedometer" customClasses="c-sidebar-nav-icon"/>, | |||
| badge: { | |||
| @@ -52,6 +52,16 @@ const _nav = [ | |||
| text: '', | |||
| } | |||
| }, | |||
| { | |||
| _tag: 'CSidebarNavItem', | |||
| name: 'Remove table column', | |||
| to: '/DemoComponent11', | |||
| // icon: <CIcon name="cil-speedometer" customClasses="c-sidebar-nav-icon"/>, | |||
| badge: { | |||
| color: 'info', | |||
| text: '', | |||
| } | |||
| }, | |||
| { | |||
| _tag: 'CSidebarNavItem', | |||
| name: 'Table header on every page', | |||
| @@ -102,6 +112,16 @@ const _nav = [ | |||
| text: '', | |||
| } | |||
| }, | |||
| { | |||
| _tag: 'CSidebarNavItem', | |||
| name: 'Show number rows', | |||
| to: '/DemoComponent11', | |||
| // icon: <CIcon name="cil-speedometer" customClasses="c-sidebar-nav-icon"/>, | |||
| badge: { | |||
| color: 'info', | |||
| text: '', | |||
| } | |||
| }, | |||
| { | |||
| _tag: 'CSidebarNavItem', | |||
| name: 'Dashboard', | |||
| @@ -37,6 +37,8 @@ const DemoComponent7 = React.lazy(() => import('./views/demoComponent/DemoCompon | |||
| const DemoComponent8 = React.lazy(() => import('./views/demoComponent/DemoComponent8')); | |||
| const DemoComponent9 = React.lazy(() => import('./views/demoComponent/DemoComponent9')); | |||
| const DemoComponent10 = React.lazy(() => import('./views/demoComponent/DemoComponent10')); | |||
| const DemoComponent11 = React.lazy(() => import('./views/demoComponent/DemoComponent11')); | |||
| const DemoComponent12 = React.lazy(() => import('./views/demoComponent/DemoComponent12')); | |||
| const CoreUIIcons = React.lazy(() => import('./views/icons/coreui-icons/CoreUIIcons')); | |||
| const Flags = React.lazy(() => import('./views/icons/flags/Flags')); | |||
| @@ -64,6 +66,8 @@ const routes = [ | |||
| { path: '/DemoComponent8', name: 'DemoComponent', component: DemoComponent8 }, | |||
| { path: '/DemoComponent9', name: 'DemoComponent', component: DemoComponent9 }, | |||
| { path: '/DemoComponent10', name: 'DemoComponent', component: DemoComponent10 }, | |||
| { path: '/DemoComponent11', name: 'DemoComponent', component: DemoComponent11 }, | |||
| { path: '/DemoComponent12', name: 'DemoComponent', component: DemoComponent12 }, | |||
| { path: '/theme', name: 'Theme', component: Colors, exact: true }, | |||
| { path: '/theme/colors', name: 'Colors', component: Colors }, | |||
| @@ -13,23 +13,56 @@ import { | |||
| CCallout | |||
| } from '@coreui/react'; | |||
| import CIcon from '@coreui/icons-react'; | |||
| import PDFEngine from 'PDFEngine'; | |||
| //import PDFEngine from 'PDFEngine'; | |||
| import MainChartExample from '../charts/MainChartExample.js'; | |||
| const WidgetsDropdown = lazy(() => import('../widgets/WidgetsDropdown.js')) | |||
| const DemoComponent1 = () => { | |||
| const apiCall = () => { | |||
| const url = encodeURIComponent("http://localhost:3000/#/DemoComponent2"); | |||
| fetch('https://localhost:7285/api/PDFGenerator/' + url) | |||
| .then(async res => ({ | |||
| filename: "donwload.pdf", | |||
| blob: await res.blob() | |||
| })) | |||
| .then(resObj => { | |||
| // It is necessary to create a new blob object with mime-type explicitly set for all browsers except Chrome, but it works for Chrome too. | |||
| const newBlob = new Blob([resObj.blob], { type: 'application/pdf' }); | |||
| //const bytes = new Uint8Array(newBlob); | |||
| //console.log(bytes); | |||
| //modifyPdf(bytes); | |||
| // MS Edge and IE don't allow using a blob object directly as link href, instead it is necessary to use msSaveOrOpenBlob | |||
| if (window.navigator && window.navigator.msSaveOrOpenBlob) { | |||
| window.navigator.msSaveOrOpenBlob(newBlob); | |||
| } else { | |||
| // For other browsers: create a link pointing to the ObjectURL containing the blob. | |||
| const objUrl = window.URL.createObjectURL(newBlob); | |||
| let link = document.createElement('a'); | |||
| link.href = objUrl; | |||
| link.download = resObj.filename; | |||
| link.click(); | |||
| // For Firefox it is necessary to delay revoking the ObjectURL. | |||
| setTimeout(() => { window.URL.revokeObjectURL(objUrl); }, 250); | |||
| } | |||
| }) | |||
| .catch((error) => { | |||
| console.log('DOWNLOAD ERROR', error); | |||
| }); | |||
| } | |||
| return ( | |||
| <> | |||
| <button className="float-right btn btn-primary" onClick={PDFEngine}>Execute</button> | |||
| <br/> | |||
| 1 | |||
| <br/> | |||
| <br/> | |||
| <WidgetsDropdown /> | |||
| <CCard> | |||
| <button className="float-right btn btn-primary" onClick={() => window.print()}>Execute</button> | |||
| <br /> | |||
| 1 | |||
| <br /> | |||
| <br /> | |||
| <WidgetsDropdown /> | |||
| <CCard code="br-isolatedlandscape"> | |||
| <CCardBody> | |||
| <CRow> | |||
| <CCol sm="5"> | |||
| @@ -290,8 +323,8 @@ const DemoComponent1 = () => { | |||
| </CCol> | |||
| </CRow> | |||
| <div> | |||
| <br /> | |||
| <table className="table table-hover table-outline mb-0 d-sm-table" code="br-shownumberrows-2"> | |||
| <br /> | |||
| <table className="table table-hover table-outline mb-0 d-sm-table" > | |||
| <thead className="thead-light"> | |||
| <tr> | |||
| <th className="text-center"><CIcon name="cil-people" /></th> | |||
| @@ -0,0 +1,527 @@ | |||
| import React, { lazy } from 'react'; | |||
| import { | |||
| CBadge, | |||
| CButton, | |||
| CButtonGroup, | |||
| CCard, | |||
| CCardBody, | |||
| CCardFooter, | |||
| CCardHeader, | |||
| CCol, | |||
| CProgress, | |||
| CRow, | |||
| CCallout | |||
| } from '@coreui/react'; | |||
| import CIcon from '@coreui/icons-react'; | |||
| import PDFEngine from 'PDFEngine'; | |||
| import MainChartExample from '../charts/MainChartExample.js'; | |||
| const WidgetsDropdown = lazy(() => import('../widgets/WidgetsDropdown.js')) | |||
| const DemoComponent11 = () => { | |||
| return ( | |||
| <> | |||
| <button className="float-right btn btn-primary" onClick={PDFEngine}>Execute</button> | |||
| <br /> | |||
| 11 | |||
| <br /> | |||
| <div> | |||
| <br /> | |||
| <table className="table table-hover table-outline mb-0 d-sm-table" code="br-removecolumn-3"> | |||
| <thead className="thead-light"> | |||
| <tr> | |||
| <th className="text-center"><CIcon name="cil-people" /></th> | |||
| <th>User</th> | |||
| <th className="text-center">Country</th> | |||
| <th>Usage</th> | |||
| <th className="text-center">Payment Method</th> | |||
| <th>Activity</th> | |||
| </tr> | |||
| </thead> | |||
| <tbody> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/1.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Yiorgos Avraamu</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-us" title="us" id="us" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>50%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="50" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-mastercard" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>10 sec ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/2.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Avram Tarasios</div> | |||
| <div className="small text-muted"> | |||
| <span>Recurring</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-br" title="br" id="br" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>10%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="10" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-visa" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>5 minutes ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/3.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-warning"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Quintin Ed</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-in" title="in" id="in" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>74%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="warning" value="74" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-stripe" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>1 hour ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/4.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-secondary"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Enéas Kwadwo</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-fr" title="fr" id="fr" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>98%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="danger" value="98" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-paypal" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last month</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/5.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Agapetus Tadeáš</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-es" title="es" id="es" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>22%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="22" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-google-pay" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last week</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/6.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Friderik Dávid</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-pl" title="pl" id="pl" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>43%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="43" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-amex" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Yesterday</strong> | |||
| </td> | |||
| </tr> | |||
| </tbody> | |||
| </table> | |||
| </div> | |||
| <br /> | |||
| <WidgetsDropdown /> | |||
| <CCard> | |||
| <CCardBody> | |||
| <CRow> | |||
| <CCol sm="5"> | |||
| <h4 id="traffic" className="card-title mb-0">Traffic</h4> | |||
| <div className="small text-muted">November 2017</div> | |||
| </CCol> | |||
| <CCol sm="7" className="d-none d-md-block"> | |||
| <CButton color="primary" className="float-right"> | |||
| <CIcon name="cil-cloud-download" /> | |||
| </CButton> | |||
| <CButtonGroup className="float-right mr-3"> | |||
| { | |||
| ['Day', 'Month', 'Year'].map(value => ( | |||
| <CButton | |||
| color="outline-secondary" | |||
| key={value} | |||
| className="mx-0" | |||
| active={value === 'Month'} | |||
| > | |||
| {value} | |||
| </CButton> | |||
| )) | |||
| } | |||
| </CButtonGroup> | |||
| </CCol> | |||
| </CRow> | |||
| <MainChartExample style={{ height: '300px', marginTop: '40px' }} /> | |||
| </CCardBody> | |||
| <CCardFooter> | |||
| <CRow className="text-center"> | |||
| <CCol md sm="12" className="mb-sm-2 mb-0"> | |||
| <div className="text-muted">Visits</div> | |||
| <strong>29.703 Users (40%)</strong> | |||
| <CProgress | |||
| className="progress-xs mt-2" | |||
| precision={1} | |||
| color="success" | |||
| value={40} | |||
| /> | |||
| </CCol> | |||
| <CCol md sm="12" className="mb-sm-2 mb-0 d-md-down-none"> | |||
| <div className="text-muted">Unique</div> | |||
| <strong>24.093 Users (20%)</strong> | |||
| <CProgress | |||
| className="progress-xs mt-2" | |||
| precision={1} | |||
| color="info" | |||
| value={40} | |||
| /> | |||
| </CCol> | |||
| <CCol md sm="12" className="mb-sm-2 mb-0"> | |||
| <div className="text-muted">Pageviews</div> | |||
| <strong>78.706 Views (60%)</strong> | |||
| <CProgress | |||
| className="progress-xs mt-2" | |||
| precision={1} | |||
| color="warning" | |||
| value={40} | |||
| /> | |||
| </CCol> | |||
| <CCol md sm="12" className="mb-sm-2 mb-0"> | |||
| <div className="text-muted">New Users</div> | |||
| <strong>22.123 Users (80%)</strong> | |||
| <CProgress | |||
| className="progress-xs mt-2" | |||
| precision={1} | |||
| color="danger" | |||
| value={40} | |||
| /> | |||
| </CCol> | |||
| <CCol md sm="12" className="mb-sm-2 mb-0 d-md-down-none"> | |||
| <div className="text-muted">Bounce Rate</div> | |||
| <strong>Average Rate (40.15%)</strong> | |||
| <CProgress | |||
| className="progress-xs mt-2" | |||
| precision={1} | |||
| value={40} | |||
| /> | |||
| </CCol> | |||
| </CRow> | |||
| </CCardFooter> | |||
| </CCard> | |||
| <CRow> | |||
| <CCol> | |||
| <CCard> | |||
| <CCardHeader> | |||
| Traffic {' & '} Sales | |||
| </CCardHeader> | |||
| <CCardBody> | |||
| <CRow> | |||
| <CCol xs="12" md="6" xl="6"> | |||
| <CRow> | |||
| <CCol sm="6"> | |||
| <CCallout color="info"> | |||
| <small className="text-muted">New Clients</small> | |||
| <br /> | |||
| <strong className="h4">9,123</strong> | |||
| </CCallout> | |||
| </CCol> | |||
| <CCol sm="6"> | |||
| <CCallout color="danger"> | |||
| <small className="text-muted">Recurring Clients</small> | |||
| <br /> | |||
| <strong className="h4">22,643</strong> | |||
| </CCallout> | |||
| </CCol> | |||
| </CRow> | |||
| <hr className="mt-0" /> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Monday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="34" /> | |||
| <CProgress className="progress-xs" color="danger" value="78" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Tuesday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="56" /> | |||
| <CProgress className="progress-xs" color="danger" value="94" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Wednesday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="12" /> | |||
| <CProgress className="progress-xs" color="danger" value="67" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Thursday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="43" /> | |||
| <CProgress className="progress-xs" color="danger" value="91" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Friday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="22" /> | |||
| <CProgress className="progress-xs" color="danger" value="73" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Saturday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="53" /> | |||
| <CProgress className="progress-xs" color="danger" value="82" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Sunday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="9" /> | |||
| <CProgress className="progress-xs" color="danger" value="69" /> | |||
| </div> | |||
| </div> | |||
| <div className="legend text-center"> | |||
| <small> | |||
| <sup className="px-1"><CBadge shape="pill" color="info"> </CBadge></sup> | |||
| New clients | |||
| | |||
| <sup className="px-1"><CBadge shape="pill" color="danger"> </CBadge></sup> | |||
| Recurring clients | |||
| </small> | |||
| </div> | |||
| </CCol> | |||
| <CCol xs="12" md="6" xl="6"> | |||
| <CRow> | |||
| <CCol sm="6"> | |||
| <CCallout color="warning"> | |||
| <small className="text-muted">Pageviews</small> | |||
| <br /> | |||
| <strong className="h4">78,623</strong> | |||
| </CCallout> | |||
| </CCol> | |||
| <CCol sm="6"> | |||
| <CCallout color="success"> | |||
| <small className="text-muted">Organic</small> | |||
| <br /> | |||
| <strong className="h4">49,123</strong> | |||
| </CCallout> | |||
| </CCol> | |||
| </CRow> | |||
| <hr className="mt-0" /> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-header"> | |||
| <CIcon className="progress-group-icon" name="cil-user" /> | |||
| <span className="title">Male</span> | |||
| <span className="ml-auto font-weight-bold">43%</span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="warning" value="43" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-5"> | |||
| <div className="progress-group-header"> | |||
| <CIcon className="progress-group-icon" name="cil-user-female" /> | |||
| <span className="title">Female</span> | |||
| <span className="ml-auto font-weight-bold">37%</span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="warning" value="37" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group"> | |||
| <div className="progress-group-header"> | |||
| <CIcon className="progress-group-icon" name="cil-globe-alt" /> | |||
| <span className="title">Organic Search</span> | |||
| <span className="ml-auto font-weight-bold">191,235 <span className="text-muted small">(56%)</span></span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="success" value="56" /> | |||
| </div> | |||
| </div> | |||
| <div className="divider text-center"> | |||
| <CButton color="link" size="sm" className="text-muted"> | |||
| <CIcon name="cil-options" /> | |||
| </CButton> | |||
| </div> | |||
| </CCol> | |||
| </CRow> | |||
| </CCardBody> | |||
| </CCard> | |||
| </CCol> | |||
| </CRow> | |||
| </> | |||
| ); | |||
| } | |||
| export default DemoComponent11; | |||
| @@ -0,0 +1,755 @@ | |||
| import React, { lazy } from 'react'; | |||
| import { | |||
| CBadge, | |||
| CButton, | |||
| CButtonGroup, | |||
| CCard, | |||
| CCardBody, | |||
| CCardFooter, | |||
| CCardHeader, | |||
| CCol, | |||
| CProgress, | |||
| CRow, | |||
| CCallout | |||
| } from '@coreui/react'; | |||
| import CIcon from '@coreui/icons-react'; | |||
| import PDFEngine from 'PDFEngine'; | |||
| import MainChartExample from '../charts/MainChartExample.js'; | |||
| const WidgetsDropdown = lazy(() => import('../widgets/WidgetsDropdown.js')) | |||
| const DemoComponent12 = () => { | |||
| return ( | |||
| <> | |||
| <button className="float-right btn btn-primary" onClick={PDFEngine}>Execute</button> | |||
| <br /> | |||
| 12 | |||
| <br /> | |||
| <div> | |||
| <br /> | |||
| <table className="table table-hover table-outline mb-0 d-sm-table" code="br-removerow-0"> | |||
| <thead className="thead-light"> | |||
| <tr> | |||
| <th className="text-center"><CIcon name="cil-people" /></th> | |||
| <th>User</th> | |||
| <th className="text-center">Country</th> | |||
| <th>Usage</th> | |||
| <th className="text-center">Payment Method</th> | |||
| <th>Activity</th> | |||
| </tr> | |||
| </thead> | |||
| <tbody> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/1.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Yiorgos Avraamu</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-us" title="us" id="us" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>50%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="50" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-mastercard" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>10 sec ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/2.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Avram Tarasios</div> | |||
| <div className="small text-muted"> | |||
| <span>Recurring</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-br" title="br" id="br" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>10%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="10" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-visa" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>5 minutes ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/3.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-warning"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Quintin Ed</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-in" title="in" id="in" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>74%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="warning" value="74" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-stripe" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>1 hour ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/4.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-secondary"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Enéas Kwadwo</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-fr" title="fr" id="fr" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>98%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="danger" value="98" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-paypal" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last month</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/5.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Agapetus Tadeáš</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-es" title="es" id="es" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>22%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="22" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-google-pay" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last week</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/6.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Friderik Dávid</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-pl" title="pl" id="pl" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>43%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="43" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-amex" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Yesterday</strong> | |||
| </td> | |||
| </tr> | |||
| </tbody> | |||
| </table> | |||
| </div> | |||
| <br /> | |||
| <WidgetsDropdown /> | |||
| <CCard> | |||
| <CCardBody> | |||
| <CRow> | |||
| <CCol sm="5"> | |||
| <h4 id="traffic" className="card-title mb-0">Traffic</h4> | |||
| <div className="small text-muted">November 2017</div> | |||
| </CCol> | |||
| <CCol sm="7" className="d-none d-md-block"> | |||
| <CButton color="primary" className="float-right"> | |||
| <CIcon name="cil-cloud-download" /> | |||
| </CButton> | |||
| <CButtonGroup className="float-right mr-3"> | |||
| { | |||
| ['Day', 'Month', 'Year'].map(value => ( | |||
| <CButton | |||
| color="outline-secondary" | |||
| key={value} | |||
| className="mx-0" | |||
| active={value === 'Month'} | |||
| > | |||
| {value} | |||
| </CButton> | |||
| )) | |||
| } | |||
| </CButtonGroup> | |||
| </CCol> | |||
| </CRow> | |||
| <MainChartExample style={{ height: '300px', marginTop: '40px' }} /> | |||
| </CCardBody> | |||
| <CCardFooter> | |||
| <CRow className="text-center"> | |||
| <CCol md sm="12" className="mb-sm-2 mb-0"> | |||
| <div className="text-muted">Visits</div> | |||
| <strong>29.703 Users (40%)</strong> | |||
| <CProgress | |||
| className="progress-xs mt-2" | |||
| precision={1} | |||
| color="success" | |||
| value={40} | |||
| /> | |||
| </CCol> | |||
| <CCol md sm="12" className="mb-sm-2 mb-0 d-md-down-none"> | |||
| <div className="text-muted">Unique</div> | |||
| <strong>24.093 Users (20%)</strong> | |||
| <CProgress | |||
| className="progress-xs mt-2" | |||
| precision={1} | |||
| color="info" | |||
| value={40} | |||
| /> | |||
| </CCol> | |||
| <CCol md sm="12" className="mb-sm-2 mb-0"> | |||
| <div className="text-muted">Pageviews</div> | |||
| <strong>78.706 Views (60%)</strong> | |||
| <CProgress | |||
| className="progress-xs mt-2" | |||
| precision={1} | |||
| color="warning" | |||
| value={40} | |||
| /> | |||
| </CCol> | |||
| <CCol md sm="12" className="mb-sm-2 mb-0"> | |||
| <div className="text-muted">New Users</div> | |||
| <strong>22.123 Users (80%)</strong> | |||
| <CProgress | |||
| className="progress-xs mt-2" | |||
| precision={1} | |||
| color="danger" | |||
| value={40} | |||
| /> | |||
| </CCol> | |||
| <CCol md sm="12" className="mb-sm-2 mb-0 d-md-down-none"> | |||
| <div className="text-muted">Bounce Rate</div> | |||
| <strong>Average Rate (40.15%)</strong> | |||
| <CProgress | |||
| className="progress-xs mt-2" | |||
| precision={1} | |||
| value={40} | |||
| /> | |||
| </CCol> | |||
| </CRow> | |||
| </CCardFooter> | |||
| </CCard> | |||
| <CRow> | |||
| <CCol> | |||
| <CCard> | |||
| <CCardHeader> | |||
| Traffic {' & '} Sales | |||
| </CCardHeader> | |||
| <CCardBody> | |||
| <CRow> | |||
| <CCol xs="12" md="6" xl="6"> | |||
| <CRow> | |||
| <CCol sm="6"> | |||
| <CCallout color="info"> | |||
| <small className="text-muted">New Clients</small> | |||
| <br /> | |||
| <strong className="h4">9,123</strong> | |||
| </CCallout> | |||
| </CCol> | |||
| <CCol sm="6"> | |||
| <CCallout color="danger"> | |||
| <small className="text-muted">Recurring Clients</small> | |||
| <br /> | |||
| <strong className="h4">22,643</strong> | |||
| </CCallout> | |||
| </CCol> | |||
| </CRow> | |||
| <hr className="mt-0" /> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Monday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="34" /> | |||
| <CProgress className="progress-xs" color="danger" value="78" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Tuesday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="56" /> | |||
| <CProgress className="progress-xs" color="danger" value="94" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Wednesday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="12" /> | |||
| <CProgress className="progress-xs" color="danger" value="67" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Thursday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="43" /> | |||
| <CProgress className="progress-xs" color="danger" value="91" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Friday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="22" /> | |||
| <CProgress className="progress-xs" color="danger" value="73" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Saturday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="53" /> | |||
| <CProgress className="progress-xs" color="danger" value="82" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-prepend"> | |||
| <span className="progress-group-text"> | |||
| Sunday | |||
| </span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="info" value="9" /> | |||
| <CProgress className="progress-xs" color="danger" value="69" /> | |||
| </div> | |||
| </div> | |||
| <div className="legend text-center"> | |||
| <small> | |||
| <sup className="px-1"><CBadge shape="pill" color="info"> </CBadge></sup> | |||
| New clients | |||
| | |||
| <sup className="px-1"><CBadge shape="pill" color="danger"> </CBadge></sup> | |||
| Recurring clients | |||
| </small> | |||
| </div> | |||
| </CCol> | |||
| <CCol xs="12" md="6" xl="6"> | |||
| <CRow> | |||
| <CCol sm="6"> | |||
| <CCallout color="warning"> | |||
| <small className="text-muted">Pageviews</small> | |||
| <br /> | |||
| <strong className="h4">78,623</strong> | |||
| </CCallout> | |||
| </CCol> | |||
| <CCol sm="6"> | |||
| <CCallout color="success"> | |||
| <small className="text-muted">Organic</small> | |||
| <br /> | |||
| <strong className="h4">49,123</strong> | |||
| </CCallout> | |||
| </CCol> | |||
| </CRow> | |||
| <hr className="mt-0" /> | |||
| <div className="progress-group mb-4"> | |||
| <div className="progress-group-header"> | |||
| <CIcon className="progress-group-icon" name="cil-user" /> | |||
| <span className="title">Male</span> | |||
| <span className="ml-auto font-weight-bold">43%</span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="warning" value="43" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group mb-5"> | |||
| <div className="progress-group-header"> | |||
| <CIcon className="progress-group-icon" name="cil-user-female" /> | |||
| <span className="title">Female</span> | |||
| <span className="ml-auto font-weight-bold">37%</span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="warning" value="37" /> | |||
| </div> | |||
| </div> | |||
| <div className="progress-group"> | |||
| <div className="progress-group-header"> | |||
| <CIcon className="progress-group-icon" name="cil-globe-alt" /> | |||
| <span className="title">Organic Search</span> | |||
| <span className="ml-auto font-weight-bold">191,235 <span className="text-muted small">(56%)</span></span> | |||
| </div> | |||
| <div className="progress-group-bars"> | |||
| <CProgress className="progress-xs" color="success" value="56" /> | |||
| </div> | |||
| </div> | |||
| <div className="divider text-center"> | |||
| <CButton color="link" size="sm" className="text-muted"> | |||
| <CIcon name="cil-options" /> | |||
| </CButton> | |||
| </div> | |||
| </CCol> | |||
| </CRow> | |||
| <div> | |||
| <br /> | |||
| <table className="table table-hover table-outline mb-0 d-sm-table" > | |||
| <thead className="thead-light"> | |||
| <tr> | |||
| <th className="text-center"><CIcon name="cil-people" /></th> | |||
| <th>User</th> | |||
| <th className="text-center">Country</th> | |||
| <th>Usage</th> | |||
| <th className="text-center">Payment Method</th> | |||
| <th>Activity</th> | |||
| </tr> | |||
| </thead> | |||
| <tbody> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/1.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Yiorgos Avraamu</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-us" title="us" id="us" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>50%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="50" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-mastercard" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>10 sec ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/2.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Avram Tarasios</div> | |||
| <div className="small text-muted"> | |||
| <span>Recurring</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-br" title="br" id="br" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>10%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="10" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-visa" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>5 minutes ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/3.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-warning"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Quintin Ed</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-in" title="in" id="in" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>74%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="warning" value="74" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-stripe" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>1 hour ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/4.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-secondary"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Enéas Kwadwo</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-fr" title="fr" id="fr" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>98%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="danger" value="98" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-paypal" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last month</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/5.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Agapetus Tadeáš</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-es" title="es" id="es" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>22%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="22" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-google-pay" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last week</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/6.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Friderik Dávid</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-pl" title="pl" id="pl" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>43%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="43" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-amex" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Yesterday</strong> | |||
| </td> | |||
| </tr> | |||
| </tbody> | |||
| </table> | |||
| </div> | |||
| </CCardBody> | |||
| </CCard> | |||
| </CCol> | |||
| </CRow> | |||
| </> | |||
| ); | |||
| } | |||
| export default DemoComponent12; | |||
| @@ -13,17 +13,50 @@ import { | |||
| CCallout | |||
| } from '@coreui/react'; | |||
| import CIcon from '@coreui/icons-react'; | |||
| import PDFEngine from 'PDFEngine'; | |||
| //import PDFEngine from 'PDFEngine'; | |||
| import MainChartExample from '../charts/MainChartExample.js'; | |||
| const WidgetsDropdown = lazy(() => import('../widgets/WidgetsDropdown.js')) | |||
| const DemoComponent2 = () => { | |||
| const apiCall = () => { | |||
| const url = encodeURIComponent("http://localhost:3000/#/DemoComponent2"); | |||
| fetch('https://localhost:7285/api/PDFGenerator/' + url) | |||
| .then(async res => ({ | |||
| filename: "donwload.pdf", | |||
| blob: await res.blob() | |||
| })) | |||
| .then(resObj => { | |||
| // It is necessary to create a new blob object with mime-type explicitly set for all browsers except Chrome, but it works for Chrome too. | |||
| const newBlob = new Blob([resObj.blob], { type: 'application/pdf' }); | |||
| //const bytes = new Uint8Array(newBlob); | |||
| //console.log(bytes); | |||
| // modifyPdf(bytes); | |||
| // MS Edge and IE don't allow using a blob object directly as link href, instead it is necessary to use msSaveOrOpenBlob | |||
| if (window.navigator && window.navigator.msSaveOrOpenBlob) { | |||
| window.navigator.msSaveOrOpenBlob(newBlob); | |||
| } else { | |||
| // For other browsers: create a link pointing to the ObjectURL containing the blob. | |||
| const objUrl = window.URL.createObjectURL(newBlob); | |||
| let link = document.createElement('a'); | |||
| link.href = objUrl; | |||
| link.download = resObj.filename; | |||
| link.click(); | |||
| // For Firefox it is necessary to delay revoking the ObjectURL. | |||
| setTimeout(() => { window.URL.revokeObjectURL(objUrl); }, 250); | |||
| } | |||
| }) | |||
| .catch((error) => { | |||
| console.log('DOWNLOAD ERROR', error); | |||
| }); | |||
| } | |||
| return ( | |||
| <> | |||
| <button className="float-right btn btn-primary" onClick={PDFEngine}>Execute</button> | |||
| <button className="float-right btn btn-primary" onClick={()=> apiCall()}>Execute</button> | |||
| <br/> | |||
| 2 | |||
| <br/> | |||
| @@ -20,15 +20,249 @@ const WidgetsDropdown = lazy(() => import('../widgets/WidgetsDropdown.js')) | |||
| const DemoComponent3 = () => { | |||
| return ( | |||
| <> | |||
| <button className="float-right btn btn-primary" onClick={PDFEngine}>Execute</button> | |||
| <br/> | |||
| 3 | |||
| <br/> | |||
| <br/> | |||
| <WidgetsDropdown /> | |||
| <button className="float-right btn btn-primary" onClick={PDFEngine}>Execute</button> | |||
| <br /> | |||
| 3 | |||
| <br /> | |||
| <br /> | |||
| <div> | |||
| <br /> | |||
| <table className="table table-hover table-outline mb-0 d-sm-table" > | |||
| <thead className="thead-light"> | |||
| <tr code="br-hidechildren"> | |||
| <th code="keep" className="text-center"><CIcon name="cil-people" code="keep" /></th> | |||
| <th code="keep">User</th> | |||
| <th ><button className="float-right btn btn-primary" >Example</button></th> | |||
| <th><button className="dropdown-toggle btn btn-transparent" type="button" aria-expanded="false" aria-haspopup="true" aria-label="Dropdown toggle"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" className="c-icon" role="img"><path style={{ color: "red" }} fill="var(--ci-primary-color, currentColor)" d="M245.151,168a88,88,0,1,0,88,88A88.1,88.1,0,0,0,245.151,168Zm0,144a56,56,0,1,1,56-56A56.063,56.063,0,0,1,245.151,312Z" className="ci-primary"></path><path style={{ color: "red" }} fill="var(--ci-primary-color, currentColor)" d="M464.7,322.319l-31.77-26.153a193.081,193.081,0,0,0,0-80.332l31.77-26.153a19.941,19.941,0,0,0,4.606-25.439l-32.612-56.483a19.936,19.936,0,0,0-24.337-8.73l-38.561,14.447a192.038,192.038,0,0,0-69.54-40.192L297.49,32.713A19.936,19.936,0,0,0,277.762,16H212.54a19.937,19.937,0,0,0-19.728,16.712L186.05,73.284a192.03,192.03,0,0,0-69.54,40.192L77.945,99.027a19.937,19.937,0,0,0-24.334,8.731L21,164.245a19.94,19.94,0,0,0,4.61,25.438l31.767,26.151a193.081,193.081,0,0,0,0,80.332l-31.77,26.153A19.942,19.942,0,0,0,21,347.758l32.612,56.483a19.937,19.937,0,0,0,24.337,8.73l38.562-14.447a192.03,192.03,0,0,0,69.54,40.192l6.762,40.571A19.937,19.937,0,0,0,212.54,496h65.222a19.936,19.936,0,0,0,19.728-16.712l6.763-40.572a192.038,192.038,0,0,0,69.54-40.192l38.564,14.449a19.938,19.938,0,0,0,24.334-8.731L469.3,347.755A19.939,19.939,0,0,0,464.7,322.319Zm-50.636,57.12-48.109-18.024-7.285,7.334a159.955,159.955,0,0,1-72.625,41.973l-10,2.636L267.6,464h-44.89l-8.442-50.642-10-2.636a159.955,159.955,0,0,1-72.625-41.973l-7.285-7.334L76.241,379.439,53.8,340.562l39.629-32.624-2.7-9.973a160.9,160.9,0,0,1,0-83.93l2.7-9.972L53.8,171.439l22.446-38.878,48.109,18.024,7.285-7.334a159.955,159.955,0,0,1,72.625-41.973l10-2.636L222.706,48H267.6l8.442,50.642,10,2.636a159.955,159.955,0,0,1,72.625,41.973l7.285,7.334,48.109-18.024,22.447,38.877-39.629,32.625,2.7,9.972a160.9,160.9,0,0,1,0,83.93l-2.7,9.973,39.629,32.623Z" className="ci-primary"></path></svg></button></th> | |||
| <th code="keep" className="text-center">Country</th> | |||
| <th code="keep">Usage</th> | |||
| <th code="keep" className="text-center">Payment Method</th> | |||
| <th code="keep">Activity</th> | |||
| </tr> | |||
| </thead> | |||
| <tbody> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/1.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Yiorgos Avraamu</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-us" title="us" id="us" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>50%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="50" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-mastercard" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>10 sec ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/2.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Avram Tarasios</div> | |||
| <div className="small text-muted"> | |||
| <span>Recurring</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-br" title="br" id="br" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>10%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="10" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-visa" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>5 minutes ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/3.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-warning"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Quintin Ed</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-in" title="in" id="in" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>74%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="warning" value="74" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-stripe" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>1 hour ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/4.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-secondary"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Enéas Kwadwo</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-fr" title="fr" id="fr" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>98%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="danger" value="98" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-paypal" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last month</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/5.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Agapetus Tadeáš</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-es" title="es" id="es" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>22%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="22" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-google-pay" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last week</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/6.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Friderik Dávid</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-pl" title="pl" id="pl" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>43%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="43" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-amex" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Yesterday</strong> | |||
| </td> | |||
| </tr> | |||
| </tbody> | |||
| </table> | |||
| </div> | |||
| <br></br> | |||
| <br></br> | |||
| <br></br> | |||
| <WidgetsDropdown /> | |||
| <CCard> | |||
| <CCardBody> | |||
| <CRow> | |||
| @@ -289,234 +523,7 @@ const DemoComponent3 = () => { | |||
| </CCol> | |||
| </CRow> | |||
| <div> | |||
| <br /> | |||
| <table className="table table-hover table-outline mb-0 d-sm-table" > | |||
| <thead className="thead-light"> | |||
| <tr> | |||
| <th className="text-center"><CIcon name="cil-people" /></th> | |||
| <th>User</th> | |||
| <th className="text-center">Country</th> | |||
| <th>Usage</th> | |||
| <th className="text-center">Payment Method</th> | |||
| <th>Activity</th> | |||
| </tr> | |||
| </thead> | |||
| <tbody> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/1.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Yiorgos Avraamu</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-us" title="us" id="us" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>50%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="50" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-mastercard" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>10 sec ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/2.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Avram Tarasios</div> | |||
| <div className="small text-muted"> | |||
| <span>Recurring</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-br" title="br" id="br" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>10%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="10" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-visa" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>5 minutes ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/3.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-warning"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Quintin Ed</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-in" title="in" id="in" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>74%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="warning" value="74" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-stripe" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>1 hour ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/4.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-secondary"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Enéas Kwadwo</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-fr" title="fr" id="fr" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>98%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="danger" value="98" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-paypal" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last month</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/5.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Agapetus Tadeáš</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-es" title="es" id="es" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>22%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="22" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-google-pay" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last week</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/6.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Friderik Dávid</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-pl" title="pl" id="pl" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>43%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="43" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-amex" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Yesterday</strong> | |||
| </td> | |||
| </tr> | |||
| </tbody> | |||
| </table> | |||
| </div> | |||
| </CCardBody> | |||
| </CCard> | |||
| </CCol> | |||
| @@ -23,12 +23,240 @@ const DemoComponent4 = () => { | |||
| return ( | |||
| <> | |||
| <button className="float-right btn btn-primary" onClick={PDFEngine}>Execute</button> | |||
| <br/> | |||
| 4 | |||
| <br/> | |||
| <br/> | |||
| <WidgetsDropdown /> | |||
| <button className="float-right btn btn-primary" onClick={PDFEngine}>Execute</button> | |||
| <br /> | |||
| 4 | |||
| <br /> | |||
| <div> | |||
| <br /> | |||
| <table className="table table-hover table-outline mb-0 d-sm-table" code="br-removetablestyles"> | |||
| <thead className="thead-light"> | |||
| <tr> | |||
| <th className="text-center"><CIcon name="cil-people" /></th> | |||
| <th>User</th> | |||
| <th className="text-center">Country</th> | |||
| <th>Usage</th> | |||
| <th className="text-center">Payment Method</th> | |||
| <th>Activity</th> | |||
| </tr> | |||
| </thead> | |||
| <tbody> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/1.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Yiorgos Avraamu</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-us" title="us" id="us" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>50%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="50" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-mastercard" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>10 sec ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/2.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Avram Tarasios</div> | |||
| <div className="small text-muted"> | |||
| <span>Recurring</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-br" title="br" id="br" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>10%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="10" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-visa" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>5 minutes ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/3.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-warning"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Quintin Ed</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-in" title="in" id="in" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>74%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="warning" value="74" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-stripe" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>1 hour ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/4.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-secondary"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Enéas Kwadwo</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-fr" title="fr" id="fr" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>98%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="danger" value="98" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-paypal" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last month</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/5.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Agapetus Tadeáš</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-es" title="es" id="es" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>22%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="22" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-google-pay" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last week</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/6.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Friderik Dávid</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-pl" title="pl" id="pl" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>43%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="43" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-amex" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Yesterday</strong> | |||
| </td> | |||
| </tr> | |||
| </tbody> | |||
| </table> | |||
| </div> | |||
| <br /> | |||
| <WidgetsDropdown /> | |||
| <CCard> | |||
| <CCardBody> | |||
| <CRow> | |||
| @@ -289,234 +517,6 @@ const DemoComponent4 = () => { | |||
| </CCol> | |||
| </CRow> | |||
| <div> | |||
| <br /> | |||
| <table className="table table-hover table-outline mb-0 d-sm-table" > | |||
| <thead className="thead-light"> | |||
| <tr> | |||
| <th className="text-center"><CIcon name="cil-people" /></th> | |||
| <th>User</th> | |||
| <th className="text-center">Country</th> | |||
| <th>Usage</th> | |||
| <th className="text-center">Payment Method</th> | |||
| <th>Activity</th> | |||
| </tr> | |||
| </thead> | |||
| <tbody> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/1.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Yiorgos Avraamu</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-us" title="us" id="us" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>50%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="50" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-mastercard" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>10 sec ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/2.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Avram Tarasios</div> | |||
| <div className="small text-muted"> | |||
| <span>Recurring</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-br" title="br" id="br" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>10%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="10" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-visa" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>5 minutes ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/3.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-warning"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Quintin Ed</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-in" title="in" id="in" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>74%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="warning" value="74" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-stripe" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>1 hour ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/4.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-secondary"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Enéas Kwadwo</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-fr" title="fr" id="fr" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>98%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="danger" value="98" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-paypal" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last month</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/5.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Agapetus Tadeáš</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-es" title="es" id="es" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>22%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="22" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-google-pay" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last week</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/6.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Friderik Dávid</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-pl" title="pl" id="pl" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>43%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="43" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-amex" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Yesterday</strong> | |||
| </td> | |||
| </tr> | |||
| </tbody> | |||
| </table> | |||
| </div> | |||
| </CCardBody> | |||
| </CCard> | |||
| </CCol> | |||
| @@ -23,12 +23,240 @@ const DemoComponent5 = () => { | |||
| return ( | |||
| <> | |||
| <button className="float-right btn btn-primary" onClick={PDFEngine}>Execute</button> | |||
| <br/> | |||
| 5 | |||
| <br/> | |||
| <br/> | |||
| <WidgetsDropdown /> | |||
| <button className="float-right btn btn-primary" onClick={PDFEngine}>Execute</button> | |||
| <br /> | |||
| 5 | |||
| <br /> | |||
| <div> | |||
| <br /> | |||
| <table className="table table-hover table-outline mb-0 d-sm-table" code="br-removerow-0"> | |||
| <thead className="thead-light"> | |||
| <tr> | |||
| <th className="text-center"><CIcon name="cil-people" /></th> | |||
| <th>User</th> | |||
| <th className="text-center">Country</th> | |||
| <th>Usage</th> | |||
| <th className="text-center">Payment Method</th> | |||
| <th>Activity</th> | |||
| </tr> | |||
| </thead> | |||
| <tbody> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/1.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Yiorgos Avraamu</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-us" title="us" id="us" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>50%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="50" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-mastercard" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>10 sec ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/2.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Avram Tarasios</div> | |||
| <div className="small text-muted"> | |||
| <span>Recurring</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-br" title="br" id="br" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>10%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="10" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-visa" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>5 minutes ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/3.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-warning"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Quintin Ed</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-in" title="in" id="in" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>74%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="warning" value="74" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-stripe" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>1 hour ago</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/4.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-secondary"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Enéas Kwadwo</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-fr" title="fr" id="fr" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>98%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="danger" value="98" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-paypal" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last month</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/5.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-success"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Agapetus Tadeáš</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-es" title="es" id="es" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>22%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="info" value="22" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-google-pay" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Last week</strong> | |||
| </td> | |||
| </tr> | |||
| <tr> | |||
| <td className="text-center"> | |||
| <div className="c-avatar"> | |||
| <img src={'avatars/6.jpg'} className="c-avatar-img" alt="[email protected]" /> | |||
| <span className="c-avatar-status bg-danger"></span> | |||
| </div> | |||
| </td> | |||
| <td> | |||
| <div>Friderik Dávid</div> | |||
| <div className="small text-muted"> | |||
| <span>New</span> | Registered: Jan 1, 2015 | |||
| </div> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cif-pl" title="pl" id="pl" /> | |||
| </td> | |||
| <td> | |||
| <div className="clearfix"> | |||
| <div className="float-left"> | |||
| <strong>43%</strong> | |||
| </div> | |||
| <div className="float-right"> | |||
| <small className="text-muted">Jun 11, 2015 - Jul 10, 2015</small> | |||
| </div> | |||
| </div> | |||
| <CProgress className="progress-xs" color="success" value="43" /> | |||
| </td> | |||
| <td className="text-center"> | |||
| <CIcon height={25} name="cib-cc-amex" /> | |||
| </td> | |||
| <td> | |||
| <div className="small text-muted">Last login</div> | |||
| <strong>Yesterday</strong> | |||
| </td> | |||
| </tr> | |||
| </tbody> | |||
| </table> | |||
| </div> | |||
| <br /> | |||
| <WidgetsDropdown /> | |||
| <CCard> | |||
| <CCardBody> | |||
| <CRow> | |||
| @@ -290,7 +518,7 @@ const DemoComponent5 = () => { | |||
| </CCol> | |||
| </CRow> | |||
| <div> | |||
| <br /> | |||
| <br /> | |||
| <table className="table table-hover table-outline mb-0 d-sm-table" > | |||
| <thead className="thead-light"> | |||
| <tr> | |||