handlePagination(page)}
- pageCount={searchValue.length ? filteredData.length / 7 : data.length / 7 || 1}
- breakLabel='...'
- pageRangeDisplayed={2}
- marginPagesDisplayed={2}
- activeClassName='active'
- pageClassName='page-item'
- breakClassName='page-item'
- breakLinkClassName='page-link'
- nextLinkClassName='page-link'
- nextClassName='page-item next'
- previousClassName='page-item prev'
- previousLinkClassName='page-link'
- pageLinkClassName='page-link'
- breakClassName='page-item'
- breakLinkClassName='page-link'
- containerClassName='pagination react-paginate separated-pagination pagination-sm justify-content-end pr-1 mt-1'
- />
- )
-
- // ** Converts table to CSV
- function convertArrayOfObjectsToCSV(array) {
- let result
-
- const columnDelimiter = ','
- const lineDelimiter = '\n'
- const keys = Object.keys(data[0])
-
- result = ''
- result += keys.join(columnDelimiter)
- result += lineDelimiter
-
- array.forEach(item => {
- let ctr = 0
- keys.forEach(key => {
- if (ctr > 0) result += columnDelimiter
-
- result += item[key]
-
- ctr++
- })
- result += lineDelimiter
- })
-
- return result
- }
-
- // ** Downloads CSV
- function downloadCSV(array) {
- const link = document.createElement('a')
- let csv = convertArrayOfObjectsToCSV(array)
- if (csv === null) return
-
- const filename = 'export.csv'
-
- if (!csv.match(/^data:text\/csv/i)) {
- csv = `data:text/csv;charset=utf-8,${csv}`
- }
-
- link.setAttribute('href', encodeURI(csv))
- link.setAttribute('download', filename)
- link.click()
- }
-
- return (
-
-
-
- DataTable with Buttons
-
-
-
-
- Export
-
-
-
-
- Print
-
- downloadCSV(data)}>
-
- CSV
-
-
-
- Excel
-
-
-
- PDF
-
-
-
- Copy
-
-
-
-
-
- Add Record
-
-
-
-
-
-
- Search
-
-
-
-
- }
- paginationDefaultPage={currentPage + 1}
- paginationComponent={CustomPagination}
- data={searchValue.length ? filteredData : data}
- selectableRowsComponent={BootstrapCheckbox}
- />
-
-
-
- )
-}
-
-export default DataTableWithButtons
diff --git a/src/views/tables/data-tables/basic/TableZeroConfig.js b/src/views/tables/data-tables/basic/TableZeroConfig.js
deleted file mode 100644
index 45f4d42..0000000
--- a/src/views/tables/data-tables/basic/TableZeroConfig.js
+++ /dev/null
@@ -1,28 +0,0 @@
-// ** Table Columns
-import { data, basicColumns } from '../data'
-
-// ** Third Party Components
-import { ChevronDown } from 'react-feather'
-import DataTable from 'react-data-table-component'
-import { Card, CardHeader, CardTitle } from 'reactstrap'
-
-const DataTablesBasic = () => {
- return (
-
-
- Zero Configuration
-
- }
- paginationRowsPerPageOptions={[10, 25, 50, 100]}
- />
-
- )
-}
-
-export default DataTablesBasic
diff --git a/src/views/tables/data-tables/basic/index.js b/src/views/tables/data-tables/basic/index.js
deleted file mode 100644
index 7af8ebc..0000000
--- a/src/views/tables/data-tables/basic/index.js
+++ /dev/null
@@ -1,41 +0,0 @@
-// ** React Imports
-import { Fragment } from 'react'
-
-// ** Custom Components
-import Breadcrumbs from '@components/breadcrumbs'
-
-// ** Third Party Components
-import { Row, Col } from 'reactstrap'
-
-// ** Tables
-import TableExpandable from './TableExpandable'
-import TableZeroConfig from './TableZeroConfig'
-import TableWithButtons from './TableWithButtons'
-import TableMultilingual from './TableMultilingual'
-
-// ** Styles
-import '@styles/react/libs/tables/react-dataTable-component.scss'
-
-const Tables = () => {
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- )
-}
-
-export default Tables
diff --git a/src/views/tables/data-tables/data.js b/src/views/tables/data-tables/data.js
deleted file mode 100644
index 16fc944..0000000
--- a/src/views/tables/data-tables/data.js
+++ /dev/null
@@ -1,334 +0,0 @@
-// ** Custom Components
-import Avatar from '@components/avatar'
-
-// ** Third Party Components
-import axios from 'axios'
-import { MoreVertical, Edit, FileText, Archive, Trash } from 'react-feather'
-import { Badge, UncontrolledDropdown, DropdownToggle, DropdownMenu, DropdownItem } from 'reactstrap'
-
-// ** Vars
-const states = ['success', 'danger', 'warning', 'info', 'dark', 'primary', 'secondary']
-
-const status = {
- 1: { title: 'Current', color: 'light-primary' },
- 2: { title: 'Professional', color: 'light-success' },
- 3: { title: 'Rejected', color: 'light-danger' },
- 4: { title: 'Resigned', color: 'light-warning' },
- 5: { title: 'Applied', color: 'light-info' }
-}
-
-export let data
-
-// ** Get initial Data
-axios.get('/api/datatables/initial-data').then(response => {
- data = response.data
-})
-
-// ** Table Zero Config Column
-export const basicColumns = [
- {
- name: 'ID',
- selector: 'id',
- sortable: true,
- maxWidth: '100px'
- },
- {
- name: 'Name',
- selector: 'full_name',
- sortable: true,
- minWidth: '225px'
- },
- {
- name: 'Email',
- selector: 'email',
- sortable: true,
- minWidth: '310px'
- },
- {
- name: 'Position',
- selector: 'post',
- sortable: true,
- minWidth: '250px'
- },
- {
- name: 'Age',
- selector: 'age',
- sortable: true,
- minWidth: '100px'
- },
- {
- name: 'Salary',
- selector: 'salary',
- sortable: true,
- minWidth: '175px'
- }
-]
-
-// ** Expandable table component
-const ExpandableTable = ({ data }) => {
- return (
-
-
- City: {data.city}
-
-
- Experience: {data.experience}
-
-
- Post: {data.post}
-
-
- )
-}
-
-// ** Table Common Column
-export const columns = [
- {
- name: 'Name',
- selector: 'full_name',
- sortable: true,
- minWidth: '250px',
- cell: row => (
-
- {row.avatar === '' ? (
-
- ) : (
-
- )}
-
- {row.full_name}
- {row.post}
-
-
- )
- },
- {
- name: 'Email',
- selector: 'email',
- sortable: true,
- minWidth: '250px'
- },
- {
- name: 'Date',
- selector: 'start_date',
- sortable: true,
- minWidth: '150px'
- },
-
- {
- name: 'Salary',
- selector: 'salary',
- sortable: true,
- minWidth: '150px'
- },
- {
- name: 'Age',
- selector: 'age',
- sortable: true,
- minWidth: '100px'
- },
- {
- name: 'Status',
- selector: 'status',
- sortable: true,
- minWidth: '150px',
- cell: row => {
- return (
-
- {status[row.status].title}
-
- )
- }
- },
- {
- name: 'Actions',
- allowOverflow: true,
- cell: row => {
- return (
-
-
-
-
-
-
- e.preventDefault()}>
-
- Details
-
- e.preventDefault()}>
-
- Archive
-
- e.preventDefault()}>
-
- Delete
-
-
-
-
-
- )
- }
- }
-]
-
-// ** Table Intl Column
-export const multiLingColumns = [
- {
- name: 'Name',
- selector: 'full_name',
- sortable: true,
- minWidth: '200px'
- },
- {
- name: 'Position',
- selector: 'post',
- sortable: true,
- minWidth: '250px'
- },
- {
- name: 'Email',
- selector: 'email',
- sortable: true,
- minWidth: '250px'
- },
- {
- name: 'Date',
- selector: 'start_date',
- sortable: true,
- minWidth: '150px'
- },
-
- {
- name: 'Salary',
- selector: 'salary',
- sortable: true,
- minWidth: '150px'
- },
- {
- name: 'Status',
- selector: 'status',
- sortable: true,
- minWidth: '150px',
- cell: row => {
- return (
-
- {status[row.status].title}
-
- )
- }
- },
- {
- name: 'Actions',
- allowOverflow: true,
- cell: row => {
- return (
-
-
-
-
-
-
-
-
- Details
-
-
-
- Archive
-
-
-
- Delete
-
-
-
-
-
- )
- }
- }
-]
-
-// ** Table Server Side Column
-export const serverSideColumns = [
- {
- name: 'Full Name',
- selector: 'full_name',
- sortable: true,
- minWidth: '225px'
- },
- {
- name: 'Email',
- selector: 'email',
- sortable: true,
- minWidth: '250px'
- },
- {
- name: 'Position',
- selector: 'post',
- sortable: true,
- minWidth: '250px'
- },
- {
- name: 'Office',
- selector: 'city',
- sortable: true,
- minWidth: '150px'
- },
- {
- name: 'Start Date',
- selector: 'start_date',
- sortable: true,
- minWidth: '150px'
- },
- {
- name: 'Salary',
- selector: 'salary',
- sortable: true,
- minWidth: '150px'
- }
-]
-
-// ** Table Adv Search Column
-export const advSearchColumns = [
- {
- name: 'Name',
- selector: 'full_name',
- sortable: true,
- minWidth: '200px'
- },
- {
- name: 'Email',
- selector: 'email',
- sortable: true,
- minWidth: '250px'
- },
- {
- name: 'Post',
- selector: 'post',
- sortable: true,
- minWidth: '250px'
- },
- {
- name: 'City',
- selector: 'city',
- sortable: true,
- minWidth: '150px'
- },
- {
- name: 'Date',
- selector: 'start_date',
- sortable: true,
- minWidth: '150px'
- },
-
- {
- name: 'Salary',
- selector: 'salary',
- sortable: true,
- minWidth: '100px'
- }
-]
-
-export default ExpandableTable
diff --git a/src/views/tables/data-tables/store/actions/index.js b/src/views/tables/data-tables/store/actions/index.js
deleted file mode 100644
index a2fbaec..0000000
--- a/src/views/tables/data-tables/store/actions/index.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import axios from 'axios'
-
-// ** Get table Data
-export const getData = params => {
- return async dispatch => {
- await axios.get('/api/datatables/data', params).then(response => {
- dispatch({
- type: 'GET_DATA',
- allData: response.data.allData,
- data: response.data.invoices,
- totalPages: response.data.total,
- params
- })
- })
- }
-}
diff --git a/src/views/tables/data-tables/store/reducer/index.js b/src/views/tables/data-tables/store/reducer/index.js
deleted file mode 100644
index 92c1df4..0000000
--- a/src/views/tables/data-tables/store/reducer/index.js
+++ /dev/null
@@ -1,24 +0,0 @@
-// ** Initial State
-const initialState = {
- data: [],
- total: 1,
- params: {},
- allData: []
-}
-
-const DataTablesReducer = (state = initialState, action) => {
- switch (action.type) {
- case 'GET_DATA':
- return {
- ...state,
- allData: action.allData,
- data: action.data,
- total: action.totalPages,
- params: action.params
- }
- default:
- return state
- }
-}
-
-export default DataTablesReducer
diff --git a/src/views/tables/reactstrap/TableBasic.js b/src/views/tables/reactstrap/TableBasic.js
deleted file mode 100644
index 7da42ea..0000000
--- a/src/views/tables/reactstrap/TableBasic.js
+++ /dev/null
@@ -1,234 +0,0 @@
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Lilian',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Alberto',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Bruce',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Diana',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Rey',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'James',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Lee',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Mario',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Oswald',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Christie',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Barnes',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Arthur',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableBasic = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableBasic
diff --git a/src/views/tables/reactstrap/TableBordered.js b/src/views/tables/reactstrap/TableBordered.js
deleted file mode 100644
index 4e461d8..0000000
--- a/src/views/tables/reactstrap/TableBordered.js
+++ /dev/null
@@ -1,234 +0,0 @@
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Leslie',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Quinn',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Quinn',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Felicia',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Brent',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Patricia',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Breanna',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Peter',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Cherokee',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Martina',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Butcher',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Noel',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableBordered = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableBordered
diff --git a/src/views/tables/reactstrap/TableBorderless.js b/src/views/tables/reactstrap/TableBorderless.js
deleted file mode 100644
index c5835c3..0000000
--- a/src/views/tables/reactstrap/TableBorderless.js
+++ /dev/null
@@ -1,234 +0,0 @@
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Sarah',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Ainsley',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Charissa',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Vanna',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Inga',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Patricia',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Justina',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Lamar',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Briar',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Jenette',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Francis',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Isaac',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableBorderless = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableBorderless
diff --git a/src/views/tables/reactstrap/TableContextual.js b/src/views/tables/reactstrap/TableContextual.js
deleted file mode 100644
index 094760c..0000000
--- a/src/views/tables/reactstrap/TableContextual.js
+++ /dev/null
@@ -1,541 +0,0 @@
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import figma from '@src/assets/images/icons/figma.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Illiana',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Wyatt',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Troy',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Mufutau',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Denton',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Carol',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Kyla',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Hop',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Yvonne',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Lunea',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Francis',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Kameko',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData5 = [
- {
- title: 'Blair',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Aspen',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Tyler',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData6 = [
- {
- title: 'Florence',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Kieran',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Anthony',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData7 = [
- {
- title: 'Lysandra',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Russell',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Curran',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData8 = [
- {
- title: 'Britanney',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Avye',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Castor',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData9 = [
- {
- title: 'Charissa',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Elijah',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Giacomo',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData10 = [
- {
- title: 'Chaim',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Virginia',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Kristen',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableContextual = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Figma Project
-
- Ronnie Shane
-
- {' '}
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Angular Project
-
- Peter Charls
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Figma Project
-
- Janne Ale
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Custom
-
- Ted Richer
-
-
-
-
-
- Schedule
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Latest Bootstrap
-
- Perry Parker
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Angular UI
-
- Ana Bell
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap UI
-
- Jerry Milton
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableContextual
diff --git a/src/views/tables/reactstrap/TableDark.js b/src/views/tables/reactstrap/TableDark.js
deleted file mode 100644
index ad9305e..0000000
--- a/src/views/tables/reactstrap/TableDark.js
+++ /dev/null
@@ -1,234 +0,0 @@
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Levi',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Nina',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Brynn',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Liberty',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Fallon',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Minerva',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Palmer',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Tana',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Evangeline',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Winter',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Carl',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Andrew',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableDark = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableDark
diff --git a/src/views/tables/reactstrap/TableHover.js b/src/views/tables/reactstrap/TableHover.js
deleted file mode 100644
index 32932d0..0000000
--- a/src/views/tables/reactstrap/TableHover.js
+++ /dev/null
@@ -1,234 +0,0 @@
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Griffith',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Hu',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Felicia',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Quinlan',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Patrick',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Castor',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Mohammad',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Isabella',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Michael',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Lavinia',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Nelle',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Virginia',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableHover = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableHover
diff --git a/src/views/tables/reactstrap/TableHoverAnimation.js b/src/views/tables/reactstrap/TableHoverAnimation.js
deleted file mode 100644
index 8b4286d..0000000
--- a/src/views/tables/reactstrap/TableHoverAnimation.js
+++ /dev/null
@@ -1,234 +0,0 @@
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Yoshi',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Kevyn',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Louis',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Aileen',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Karleigh',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Elmo',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Blossom',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Jescie',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Gemma',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Thor',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Jack',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Reece',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableHoverAnimation = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableHoverAnimation
diff --git a/src/views/tables/reactstrap/TableResponsive.js b/src/views/tables/reactstrap/TableResponsive.js
deleted file mode 100644
index 5011efe..0000000
--- a/src/views/tables/reactstrap/TableResponsive.js
+++ /dev/null
@@ -1,122 +0,0 @@
-import { Table } from 'reactstrap'
-
-const TableResponsive = () => {
- return (
-
-
-
-
- #
-
-
- Heading 1
-
-
- Heading 2
-
-
- Heading 3
-
-
- Heading 4
-
-
- Heading 5
-
-
- Heading 6
-
-
- Heading 7
-
-
- Heading 8
-
-
- Heading 9
-
-
- Heading 10
-
-
- Heading 11
-
-
- Heading 12
-
-
- Heading 13
-
-
-
-
-
- 1
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
-
-
- 2
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
-
-
- 3
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
-
-
- 4
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
-
-
-
- )
-}
-
-export default TableResponsive
diff --git a/src/views/tables/reactstrap/TableSmall.js b/src/views/tables/reactstrap/TableSmall.js
deleted file mode 100644
index 1f39c30..0000000
--- a/src/views/tables/reactstrap/TableSmall.js
+++ /dev/null
@@ -1,234 +0,0 @@
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Melissa',
- img: avatar1,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Jana',
- img: avatar2,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Halla',
- img: avatar3,
- imgHeight: 22,
- imgWidth: 22
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Wing',
- img: avatar1,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Octavia',
- img: avatar2,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Benedict',
- img: avatar3,
- imgHeight: 22,
- imgWidth: 22
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Jade',
- img: avatar1,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Alisa',
- img: avatar2,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Alisa',
- img: avatar3,
- imgHeight: 22,
- imgWidth: 22
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Alexa',
- img: avatar1,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Lee',
- img: avatar2,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Shellie',
- img: avatar3,
- imgHeight: 22,
- imgWidth: 22
- }
-]
-
-const TableSmall = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableSmall
diff --git a/src/views/tables/reactstrap/TableSourceCode.js b/src/views/tables/reactstrap/TableSourceCode.js
deleted file mode 100644
index 40fd5cb..0000000
--- a/src/views/tables/reactstrap/TableSourceCode.js
+++ /dev/null
@@ -1,3084 +0,0 @@
-export const tableBasic = (
-
- {`
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Lilian',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Alberto',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Bruce',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Diana',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Rey',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'James',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Lee',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Mario',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Oswald',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Christie',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Barnes',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Arthur',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableBasic = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableBasic
-`}
-
-)
-
-export const tableDark = (
-
- {`
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Levi',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Nina',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Brynn',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Liberty',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Fallon',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Minerva',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Palmer',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Tana',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Evangeline',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Winter',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Carl',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Andrew',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableDark = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableDark
-`}
-
-)
-
-export const tableTheadOptions = (
-
- {`
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Adara',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Kalia ',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Oliver',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Tyler',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Hanae',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Brynn',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Tate',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Norman',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Lana',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Emerald',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Sebastian',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Jamal',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-// Change class to thead-light for light variant
-const TableTheadDark = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableTheadDark`}
-
-)
-
-export const tableStriped = (
-
- {`
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Gretchen',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Hunter',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Allistair',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Macy',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Eve',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Damian',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Jade',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Destiny',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Cade',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Bruno',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Griffin',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Anthony',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableStriped = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableStriped
-`}
-
-)
-
-export const tableStripedDark = (
-
- {`
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Galvin',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Malcolm',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Leo',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Nola',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Brett',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Harper',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Jamalia',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Arden',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Laith',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Kirby',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Forrest',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Jordan',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-const TableStripedDark = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableStripedDark
-`}
-
-)
-
-export const tableBorderless = (
-
- {`
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Sarah',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Ainsley',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Charissa',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Vanna',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Inga',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Patricia',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Justina',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Lamar',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Briar',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Jenette',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Francis',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Isaac',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableBorderless = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableBorderless
-`}
-
-)
-
-export const tableBordered = (
-
- {`
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Leslie',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Quinn',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Quinn',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Felicia',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Brent',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Patricia',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Breanna',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Peter',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Cherokee',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Martina',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Butcher',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Noel',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableBordered = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableBordered
-`}
-
-)
-
-export const tableHover = (
-
- {`
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Griffith',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Hu',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Felicia',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Quinlan',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Patrick',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Castor',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Mohammad',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Isabella',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Michael',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Lavinia',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Nelle',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Virginia',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableHover = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableHover
-`}
-
-)
-
-export const tableSmall = (
-
- {`
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Melissa',
- img: avatar1,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Jana',
- img: avatar2,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Halla',
- img: avatar3,
- imgHeight: 22,
- imgWidth: 22
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Wing',
- img: avatar1,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Octavia',
- img: avatar2,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Benedict',
- img: avatar3,
- imgHeight: 22,
- imgWidth: 22
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Jade',
- img: avatar1,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Alisa',
- img: avatar2,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Alisa',
- img: avatar3,
- imgHeight: 22,
- imgWidth: 22
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Alexa',
- img: avatar1,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Lee',
- img: avatar2,
- imgHeight: 22,
- imgWidth: 22
- },
- {
- title: 'Shellie',
- img: avatar3,
- imgHeight: 22,
- imgWidth: 22
- }
-]
-
-const TableSmall = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableSmall
-`}
-
-)
-
-export const tableContextual = (
-
- {`
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import figma from '@src/assets/images/icons/figma.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Illiana',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Wyatt',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Troy',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Mufutau',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Denton',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Carol',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Kyla',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Hop',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Yvonne',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Lunea',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Francis',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Kameko',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData5 = [
- {
- title: 'Blair',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Aspen',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Tyler',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData6 = [
- {
- title: 'Florence',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Kieran',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Anthony',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData7 = [
- {
- title: 'Lysandra',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Russell',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Curran',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData8 = [
- {
- title: 'Britanney',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Avye',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Castor',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData9 = [
- {
- title: 'Charissa',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Elijah',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Giacomo',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData10 = [
- {
- title: 'Chaim',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Virginia',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Kristen',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableContextual = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Figma Project
-
- Ronnie Shane
-
- {' '}
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Angular Project
-
- Peter Charls
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Figma Project
-
- Janne Ale
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Custom
-
- Ted Richer
-
-
-
-
-
- Schedule
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Latest Bootstrap
-
- Perry Parker
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Angular UI
-
- Ana Bell
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap UI
-
- Jerry Milton
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableContextual
-`}
-
-)
-
-export const tableResponsive = (
-
- {`
-import { Table } from 'reactstrap'
-
-const TableResponsive = () => {
- return (
-
-
-
-
- #
-
-
- Heading 1
-
-
- Heading 2
-
-
- Heading 3
-
-
- Heading 4
-
-
- Heading 5
-
-
- Heading 6
-
-
- Heading 7
-
-
- Heading 8
-
-
- Heading 9
-
-
- Heading 10
-
-
- Heading 11
-
-
- Heading 12
-
-
- Heading 13
-
-
-
-
-
- 1
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
-
-
- 2
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
-
-
- 3
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
-
-
- 4
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
- Table cell
-
-
-
- )
-}
-
-export default TableResponsive
-`}
-
-)
-
-export const tableHoverAnimation = (
-
- {`
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Yoshi',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Kevyn',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Louis',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Aileen',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Karleigh',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Elmo',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Blossom',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Jescie',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Gemma',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Thor',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Jack',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Reece',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableHoverAnimation = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableHoverAnimation
-`}
-
-)
diff --git a/src/views/tables/reactstrap/TableStriped.js b/src/views/tables/reactstrap/TableStriped.js
deleted file mode 100644
index 5df3dca..0000000
--- a/src/views/tables/reactstrap/TableStriped.js
+++ /dev/null
@@ -1,234 +0,0 @@
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Gretchen',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Hunter',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Allistair',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Macy',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Eve',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Damian',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Jade',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Destiny',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Cade',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Bruno',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Griffin',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Anthony',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableStriped = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableStriped
diff --git a/src/views/tables/reactstrap/TableStripedDark.js b/src/views/tables/reactstrap/TableStripedDark.js
deleted file mode 100644
index 0396b51..0000000
--- a/src/views/tables/reactstrap/TableStripedDark.js
+++ /dev/null
@@ -1,233 +0,0 @@
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Galvin',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Malcolm',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Leo',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Nola',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Brett',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Harper',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Jamalia',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Arden',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Laith',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Kirby',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Forrest',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Jordan',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-const TableStripedDark = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableStripedDark
diff --git a/src/views/tables/reactstrap/TableTheadDark.js b/src/views/tables/reactstrap/TableTheadDark.js
deleted file mode 100644
index 5011d30..0000000
--- a/src/views/tables/reactstrap/TableTheadDark.js
+++ /dev/null
@@ -1,234 +0,0 @@
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Adara',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Kalia ',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Oliver',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Tyler',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Hanae',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Brynn',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Tate',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Norman',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Lana',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Emerald',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Sebastian',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Jamal',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableTheadDark = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableTheadDark
diff --git a/src/views/tables/reactstrap/TableTheadLight.js b/src/views/tables/reactstrap/TableTheadLight.js
deleted file mode 100644
index 01cc270..0000000
--- a/src/views/tables/reactstrap/TableTheadLight.js
+++ /dev/null
@@ -1,234 +0,0 @@
-import AvatarGroup from '@components/avatar-group'
-import react from '@src/assets/images/icons/react.svg'
-import vuejs from '@src/assets/images/icons/vuejs.svg'
-import angular from '@src/assets/images/icons/angular.svg'
-import bootstrap from '@src/assets/images/icons/bootstrap.svg'
-import avatar1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import avatar2 from '@src/assets/images/portrait/small/avatar-s-6.jpg'
-import avatar3 from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-import { MoreVertical, Edit, Trash } from 'react-feather'
-import { Table, Badge, UncontrolledDropdown, DropdownMenu, DropdownItem, DropdownToggle } from 'reactstrap'
-
-const avatarGroupData1 = [
- {
- title: 'Aristotle',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Nolan ',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Baxter',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData2 = [
- {
- title: 'Zane',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Tatum',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Rae',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData3 = [
- {
- title: 'Rhiannon',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'William',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Vaughan',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const avatarGroupData4 = [
- {
- title: 'Unity',
- img: avatar1,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Emerson',
- img: avatar2,
- imgHeight: 26,
- imgWidth: 26
- },
- {
- title: 'Ima',
- img: avatar3,
- imgHeight: 26,
- imgWidth: 26
- }
-]
-
-const TableTheadLight = () => {
- return (
-
-
-
- Project
- Client
- Users
- Status
- Actions
-
-
-
-
-
-
- Angular Project
-
- Peter Charles
-
-
-
-
-
- Active
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- React Project
-
- Ronald Frest
-
-
-
-
-
- Completed
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Vuejs Project
-
- Jack Obes
-
-
-
-
-
- Scheduled
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
-
- Bootstrap Project
-
- Jerry Milton
-
-
-
-
-
- Pending
-
-
-
-
-
-
-
-
- e.preventDefault()}>
- Edit
-
- e.preventDefault()}>
- Delete
-
-
-
-
-
-
-
- )
-}
-
-export default TableTheadLight
diff --git a/src/views/tables/reactstrap/index.js b/src/views/tables/reactstrap/index.js
deleted file mode 100644
index 7781a9d..0000000
--- a/src/views/tables/reactstrap/index.js
+++ /dev/null
@@ -1,175 +0,0 @@
-import { Fragment, useEffect } from 'react'
-import { Row, Col, CardBody, CardText } from 'reactstrap'
-import prism from 'prismjs'
-import TableBasic from './TableBasic'
-import TableDark from './TableDark'
-import TableTheadDark from './TableTheadDark'
-import TableTheadLight from './TableTheadLight'
-import TableStriped from './TableStriped'
-import TableStripedDark from './TableStripedDark'
-import TableBordered from './TableBordered'
-import TableBorderless from './TableBorderless'
-import TableHover from './TableHover'
-import TableSmall from './TableSmall'
-import TableContextual from './TableContextual'
-import TableResponsive from './TableResponsive'
-import TableHoverAnimation from './TableHoverAnimation'
-import Breadcrumbs from '@components/breadcrumbs'
-import Card from '@components/card-snippet'
-import {
- tableBasic,
- tableDark,
- tableTheadOptions,
- tableStriped,
- tableStripedDark,
- tableBordered,
- tableBorderless,
- tableContextual,
- tableHover,
- tableSmall,
- tableHoverAnimation,
- tableResponsive
-} from './TableSourceCode'
-
-const Tables = () => {
- useEffect(() => {
- prism.highlightAll()
- })
-
- return (
-
-
-
-
-
-
-
-
-
-
-
-
- Use prop dark
to create a dark inverted table.
-
-
-
-
-
-
-
-
-
- Similar to tables and dark tables, use the modifier classes .thead-dark
- to make <thead>
appear dark.
-
-
-
-
-
- Use the modifier class .thead-light
to make
- <thead>
s appear light.
-
-
-
-
-
-
-
-
-
- Use prop striped
to create a striped table.
-
-
-
-
-
-
-
-
-
- Use props striped
& dark
to create a dark striped table.
-
-
-
-
-
-
-
-
-
- Use prop bordered
to create a bordered table.
-
-
-
-
-
-
-
-
-
- Use prop borderless
to create a borderless table.
-
-
-
-
-
-
-
-
-
- Use prop hover
to create a hoverable table.
-
-
-
-
-
-
-
-
-
- Use prop size="sm"
to create a small table.
-
-
-
-
-
-
-
-
-
- Use class table-[colorName]
with <tr>
for contextual rows.
-
-
-
-
-
-
- Table without card
-
-
-
-
-
-
- Use prop responsive
to make your table responsive.
-
-
-
-
-
-
-
-
-
- Use class table-hover-animation
for Table Hover Animation.
-
-
-
-
-
-
-
- )
-}
-
-export default Tables
diff --git a/src/views/ui-elements/cards/actions/index.js b/src/views/ui-elements/cards/actions/index.js
deleted file mode 100644
index 0f55edf..0000000
--- a/src/views/ui-elements/cards/actions/index.js
+++ /dev/null
@@ -1,110 +0,0 @@
-import { Fragment } from 'react'
-import Breadcrumbs from '@components/breadcrumbs'
-import CardAction from '@components/card-actions'
-import { ChevronDown, RotateCw, X } from 'react-feather'
-import { CardBody, CardText, Row, Col, Table } from 'reactstrap'
-
-const CardActions = () => {
- return (
-
-
-
-
- {
- setTimeout(() => endLoading(), 2000)
- }}
- >
-
-
-
-
- Action
- Icon
- Details
-
-
-
-
- Collapse
-
-
-
- Collapse card content using collapse action.
-
-
- Refresh Content
-
-
-
- Refresh your card content using refresh action.
-
-
- Remove Card
-
-
-
- Remove card from page using remove card action
-
-
-
-
-
-
-
-
-
-
-
-
- You can create a collapsible content by using our
- CardAction
component and by passing prop
- actions='collapse'
.
-
-
- Click on to see card collapse in action
-
-
-
-
-
- {
- setTimeout(() => endLoading(), 2000)
- }}
- >
-
-
- To create a re-loadable card pass prop
- actions='reload'
and pass prop endReload
- to end the loading.
-
-
- Click on to see card refresh in action
-
-
-
-
-
-
-
-
- You can add refresh content action to card by adding class
- .card-reload
with your card tag, and add conditional spinner into card body to show when
- card is refreshing.
-
-
- Click on to see card refresh in action
-
-
-
-
-
-
- )
-}
-export default CardActions
diff --git a/src/views/ui-elements/cards/advance/CardAppDesign.js b/src/views/ui-elements/cards/advance/CardAppDesign.js
deleted file mode 100644
index 2a854a2..0000000
--- a/src/views/ui-elements/cards/advance/CardAppDesign.js
+++ /dev/null
@@ -1,92 +0,0 @@
-import classnames from 'classnames'
-import Avatar from '@components/avatar'
-import { Card, CardTitle, CardBody, CardText, Badge, Button } from 'reactstrap'
-
-const CardAppDesign = () => {
- const avatarArr = [
- {
- img: require('@src/assets/images/portrait/small/avatar-s-9.jpg').default,
- imgHeight: 34,
- imgWidth: 34
- },
- {
- content: 'PI',
- color: 'light-danger'
- },
- {
- img: require('@src/assets/images/portrait/small/avatar-s-14.jpg').default,
- imgHeight: 34,
- imgWidth: 34
- },
- {
- img: require('@src/assets/images/portrait/small/avatar-s-7.jpg').default,
- imgHeight: 34,
- imgWidth: 34
- },
- {
- content: 'AL',
- color: 'light-secondary'
- }
- ]
-
- const designPlanningArr = [
- {
- title: 'Due Date',
- subtitle: '12 Apr, 21'
- },
- {
- title: 'Budget',
- subtitle: '$49251.91'
- },
- {
- title: 'Cost',
- subtitle: '$840.99'
- }
- ]
-
- return (
-
-
- 03 Sep, 20
- App design
-
- You can Find Only Post and Quotes Related to IOS like ipad app design, iphone app design
-
-
-
Team
-
- Figma
-
- Wireframe
-
-
-
Members
- {avatarArr.map((obj, index) => {
- return (
-
- )
- })}
-
-
- {designPlanningArr.map(item => (
-
- {item.title}
-
{item.subtitle}
-
- ))}
-
-
- Join Team
-
-
-
- )
-}
-
-export default CardAppDesign
diff --git a/src/views/ui-elements/cards/advance/CardBrowserState.js b/src/views/ui-elements/cards/advance/CardBrowserState.js
deleted file mode 100644
index 0ee3d32..0000000
--- a/src/views/ui-elements/cards/advance/CardBrowserState.js
+++ /dev/null
@@ -1,291 +0,0 @@
-import Chart from 'react-apexcharts'
-import { MoreVertical } from 'react-feather'
-import {
- Card,
- CardHeader,
- CardTitle,
- CardBody,
- CardText,
- Media,
- UncontrolledDropdown,
- DropdownMenu,
- DropdownItem,
- DropdownToggle
-} from 'reactstrap'
-
-const CardBrowserState = ({ colors, trackBgColor }) => {
- const statesArr = [
- {
- avatar: require('@src/assets/images/icons/google-chrome.png').default,
- title: 'Google Chrome',
- value: '54.4%',
- chart: {
- type: 'radialBar',
- series: [54.4],
- height: 30,
- width: 30,
- options: {
- grid: {
- show: false,
- padding: {
- left: -15,
- right: -15,
- top: -12,
- bottom: -15
- }
- },
- colors: [colors.primary.main],
- plotOptions: {
- radialBar: {
- hollow: {
- size: '22%'
- },
- track: {
- background: trackBgColor
- },
- dataLabels: {
- showOn: 'always',
- name: {
- show: false
- },
- value: {
- show: false
- }
- }
- }
- },
- stroke: {
- lineCap: 'round'
- }
- }
- }
- },
- {
- avatar: require('@src/assets/images/icons/mozila-firefox.png').default,
- title: 'Mozila Firefox',
- value: '6.1%',
- chart: {
- type: 'radialBar',
- series: [6.1],
- height: 30,
- width: 30,
- options: {
- grid: {
- show: false,
- padding: {
- left: -15,
- right: -15,
- top: -12,
- bottom: -15
- }
- },
- colors: [colors.warning.main],
- plotOptions: {
- radialBar: {
- hollow: {
- size: '22%'
- },
- track: {
- background: trackBgColor
- },
- dataLabels: {
- showOn: 'always',
- name: {
- show: false
- },
- value: {
- show: false
- }
- }
- }
- },
- stroke: {
- lineCap: 'round'
- }
- }
- }
- },
- {
- avatar: require('@src/assets/images/icons/apple-safari.png').default,
- title: 'Apple Safari',
- value: '14.6%',
- chart: {
- type: 'radialBar',
- series: [14.6],
- height: 30,
- width: 30,
- options: {
- grid: {
- show: false,
- padding: {
- left: -15,
- right: -15,
- top: -12,
- bottom: -15
- }
- },
- colors: [colors.secondary.main],
- plotOptions: {
- radialBar: {
- hollow: {
- size: '22%'
- },
- track: {
- background: trackBgColor
- },
- dataLabels: {
- showOn: 'always',
- name: {
- show: false
- },
- value: {
- show: false
- }
- }
- }
- },
- stroke: {
- lineCap: 'round'
- }
- }
- }
- },
- {
- avatar: require('@src/assets/images/icons/internet-explorer.png').default,
- title: 'Internet Explorer',
- value: '4.2%',
- chart: {
- type: 'radialBar',
- series: [4.2],
- height: 30,
- width: 30,
- options: {
- grid: {
- show: false,
- padding: {
- left: -15,
- right: -15,
- top: -12,
- bottom: -15
- }
- },
- colors: [colors.info.main],
- plotOptions: {
- radialBar: {
- hollow: {
- size: '22%'
- },
- track: {
- background: trackBgColor
- },
- dataLabels: {
- showOn: 'always',
- name: {
- show: false
- },
- value: {
- show: false
- }
- }
- }
- },
- stroke: {
- lineCap: 'round'
- }
- }
- }
- },
- {
- avatar: require('@src/assets/images/icons/opera.png').default,
- title: 'Opera Mini',
- value: '8.4%',
- chart: {
- type: 'radialBar',
- series: [8.4],
- height: 30,
- width: 30,
- options: {
- grid: {
- show: false,
- padding: {
- left: -15,
- right: -15,
- top: -12,
- bottom: -15
- }
- },
- colors: [colors.danger.main],
- plotOptions: {
- radialBar: {
- hollow: {
- size: '22%'
- },
- track: {
- background: trackBgColor
- },
- dataLabels: {
- showOn: 'always',
- name: {
- show: false
- },
- value: {
- show: false
- }
- }
- }
- },
- stroke: {
- lineCap: 'round'
- }
- }
- }
- }
- ]
-
- const renderStates = () => {
- return statesArr.map(state => {
- return (
-
-
-
- {state.title}
-
-
-
- )
- })
- }
-
- return (
-
-
-
- Browser States
- Counter August 2020
-
-
-
-
-
-
- Last 28 Days
- Last Month
- Last Year
-
-
-
- {renderStates()}
-
- )
-}
-
-export default CardBrowserState
diff --git a/src/views/ui-elements/cards/advance/CardBusiness.js b/src/views/ui-elements/cards/advance/CardBusiness.js
deleted file mode 100644
index 22601f5..0000000
--- a/src/views/ui-elements/cards/advance/CardBusiness.js
+++ /dev/null
@@ -1,70 +0,0 @@
-import { MoreVertical } from 'react-feather'
-import { Card, CardHeader, CardTitle, CardBody, CardText, CustomInput, Badge, Button } from 'reactstrap'
-
-const CardBusiness = () => {
- const dataArr = [
- {
- id: 'option-1',
- title: 'Option #1',
- badgeColor: 'light-success',
- amount: '+$39'
- },
- {
- id: 'option-2',
- title: 'Option #2',
- badgeColor: 'light-primary',
- amount: '+$85',
- checked: true
- },
- {
- id: 'option-3',
- title: 'Option #3',
- badgeColor: 'light-success',
- amount: '+$199'
- },
- {
- id: 'option-4',
- title: 'Option #4',
- badgeColor: 'light-success',
- amount: '+$459'
- }
- ]
-
- const renderOptions = () => {
- return dataArr.map(item => {
- return (
-
- )
- })
- }
-
- return (
-
-
- For Business Sharks
-
-
-
- Here, i focus ona range of items and featured that we use in life without giving them
- Basic price is $130
- {renderOptions()}
-
- Purchase
-
-
-
- )
-}
-
-export default CardBusiness
diff --git a/src/views/ui-elements/cards/advance/CardChat.js b/src/views/ui-elements/cards/advance/CardChat.js
deleted file mode 100644
index eae81e7..0000000
--- a/src/views/ui-elements/cards/advance/CardChat.js
+++ /dev/null
@@ -1,196 +0,0 @@
-import classnames from 'classnames'
-import Avatar from '@components/avatar'
-import { useState, useEffect } from 'react'
-import PerfectScrollbar from 'react-perfect-scrollbar'
-import { MoreVertical, Send, Image } from 'react-feather'
-import { Card, CardHeader, Form, Label, InputGroup, InputGroupAddon, Input, InputGroupText, Button } from 'reactstrap'
-
-import profilePic from '@src/assets/images/portrait/small/avatar-s-11.jpg'
-
-import '@styles/base/pages/app-chat-list.scss'
-
-const data = {
- chat: {
- id: 2,
- userId: 1,
- unseenMsgs: 0,
- chat: [
- {
- message: "How can we help? We're here for you!",
- time: 'Mon Dec 10 2018 07:45:00 GMT+0000 (GMT)',
- senderId: 11
- },
- {
- message: 'Hey John, I am looking for the best admin template. Could you please help me to find it out?',
- time: 'Mon Dec 10 2018 07:45:23 GMT+0000 (GMT)',
- senderId: 1
- },
- {
- message: 'It should be Bootstrap 4 compatible.',
- time: 'Mon Dec 10 2018 07:45:55 GMT+0000 (GMT)',
- senderId: 1
- },
- { message: 'Absolutely!', time: 'Mon Dec 10 2018 07:46:00 GMT+0000 (GMT)', senderId: 11 },
- {
- message: 'Modern admin is the responsive bootstrap 4 admin template.!',
- time: 'Mon Dec 10 2018 07:46:05 GMT+0000 (GMT)',
- senderId: 11
- },
- { message: 'Looks clean and fresh UI.', time: 'Mon Dec 10 2018 07:46:23 GMT+0000 (GMT)', senderId: 1 },
- { message: "It's perfect for my next project.", time: 'Mon Dec 10 2018 07:46:33 GMT+0000 (GMT)', senderId: 1 },
- { message: 'How can I purchase it?', time: 'Mon Dec 10 2018 07:46:43 GMT+0000 (GMT)', senderId: 1 },
- { message: 'Thanks, from ThemeForest.', time: 'Mon Dec 10 2018 07:46:53 GMT+0000 (GMT)', senderId: 11 },
- { message: 'I will purchase it for sure. 👍', time: '2020-12-08T13:52:38.013Z', senderId: 1 }
- ]
- },
- contact: {
- id: 1,
- fullName: 'Felecia Rower',
- avatar: require('@src/assets/images/portrait/small/avatar-s-20.jpg').default,
- status: 'away'
- }
-}
-
-const CardChat = () => {
- const [msg, setMsg] = useState('')
- const [chatRef, setChatRef] = useState(null)
- const [chatData, setChatData] = useState(data)
-
- //** Formats chat data based on sender
- const formattedChatData = () => {
- let chatLog = []
- if (chatData) {
- chatLog = chatData.chat.chat
- }
-
- const formattedChatLog = []
- let chatMessageSenderId = chatLog[0] ? chatLog[0].senderId : undefined
- let msgGroup = {
- senderId: chatMessageSenderId,
- messages: []
- }
- chatLog.forEach((msg, index) => {
- if (chatMessageSenderId === msg.senderId) {
- msgGroup.messages.push({
- msg: msg.message,
- time: msg.time
- })
- } else {
- chatMessageSenderId = msg.senderId
- formattedChatLog.push(msgGroup)
- msgGroup = {
- senderId: msg.senderId,
- messages: [
- {
- msg: msg.message,
- time: msg.time
- }
- ]
- }
- }
- if (index === chatLog.length - 1) formattedChatLog.push(msgGroup)
- })
- return formattedChatLog
- }
-
- //** Renders user chat
- const renderChats = () => {
- return formattedChatData().map((item, index) => {
- return (
-
-
-
-
- {item.messages.map(chat => (
-
- ))}
-
-
- )
- })
- }
-
- //** Scroll to chat bottom
- const scrollToBottom = () => {
- chatRef.scrollTop = Number.MAX_SAFE_INTEGER
- }
-
- useEffect(() => {
- if (chatRef !== null) {
- scrollToBottom()
- }
- }, [chatRef, chatData.chat.chat.length])
-
- const handleSendMsg = e => {
- e.preventDefault()
- if (msg.trim().length) {
- const newMsg = chatData
-
- newMsg.chat.chat.push({
- message: msg,
- time: new Date(),
- senderId: 11
- })
-
- setChatData(newMsg)
- setMsg('')
- }
- }
-
- return (
-
-
-
-
-
-
-
setChatRef(el)}
- className='user-chats scroll-area'
- options={{ wheelPropagation: false }}
- >
- {renderChats()}
-
-
-
-
- )
-}
-
-export default CardChat
diff --git a/src/views/ui-elements/cards/advance/CardCongratulations.js b/src/views/ui-elements/cards/advance/CardCongratulations.js
deleted file mode 100644
index bc62472..0000000
--- a/src/views/ui-elements/cards/advance/CardCongratulations.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import { Award } from 'react-feather'
-import Avatar from '@components/avatar'
-import { Card, CardBody, CardText } from 'reactstrap'
-import decorationLeft from '@src/assets/images/elements/decore-left.png'
-import decorationRight from '@src/assets/images/elements/decore-right.png'
-
-const CardCongratulations = () => {
- return (
-
-
-
-
- } className='shadow' color='primary' size='xl' />
-
-
Congratulations John,
-
- You have done 57.6% more sales today. Check your new badge in your profile.
-
-
-
-
- )
-}
-
-export default CardCongratulations
diff --git a/src/views/ui-elements/cards/advance/CardEmployeesTask.js b/src/views/ui-elements/cards/advance/CardEmployeesTask.js
deleted file mode 100644
index eed6221..0000000
--- a/src/views/ui-elements/cards/advance/CardEmployeesTask.js
+++ /dev/null
@@ -1,323 +0,0 @@
-import Chart from 'react-apexcharts'
-import Avatar from '@components/avatar'
-import { MoreVertical } from 'react-feather'
-import { Card, CardHeader, CardTitle, CardBody, Media } from 'reactstrap'
-
-const CardEmployeesTasks = ({ colors, trackBgColor }) => {
- const employeesTasks = [
- {
- avatar: require('@src/assets/images/portrait/small/avatar-s-9.jpg').default,
- title: 'Ryan Harrington',
- subtitle: 'iOS Developer',
- time: '9hr 20m',
- chart: {
- type: 'radialBar',
- series: [45],
- height: 30,
- width: 30,
- options: {
- grid: {
- show: false,
- padding: {
- left: -15,
- right: -15,
- top: -12,
- bottom: -15
- }
- },
- colors: [colors.primary.main],
- plotOptions: {
- radialBar: {
- hollow: {
- size: '22%'
- },
- track: {
- background: trackBgColor
- },
- dataLabels: {
- showOn: 'always',
- name: {
- show: false
- },
- value: {
- show: false
- }
- }
- }
- },
- stroke: {
- lineCap: 'round'
- }
- }
- }
- },
- {
- avatar: require('@src/assets/images/portrait/small/avatar-s-20.jpg').default,
- title: 'Louisa Norton',
- subtitle: 'UI Designer',
- time: '4hr 17m',
- chart: {
- type: 'radialBar',
- series: [65],
- height: 30,
- width: 30,
- options: {
- grid: {
- show: false,
- padding: {
- left: -15,
- right: -15,
- top: -12,
- bottom: -15
- }
- },
- colors: [colors.danger.main],
- plotOptions: {
- radialBar: {
- hollow: {
- size: '22%'
- },
- track: {
- background: trackBgColor
- },
- dataLabels: {
- showOn: 'always',
- name: {
- show: false
- },
- value: {
- show: false
- }
- }
- }
- },
- stroke: {
- lineCap: 'round'
- }
- }
- }
- },
- {
- avatar: require('@src/assets/images/portrait/small/avatar-s-1.jpg').default,
- title: 'Jayden Duncan',
- subtitle: 'Java Developer',
- time: '12hr 8m',
- chart: {
- type: 'radialBar',
- series: [60],
- height: 30,
- width: 30,
- options: {
- grid: {
- show: false,
- padding: {
- left: -15,
- right: -15,
- top: -12,
- bottom: -15
- }
- },
- colors: [colors.success.main],
- plotOptions: {
- radialBar: {
- hollow: {
- size: '22%'
- },
- track: {
- background: trackBgColor
- },
- dataLabels: {
- showOn: 'always',
- name: {
- show: false
- },
- value: {
- show: false
- }
- }
- }
- },
- stroke: {
- lineCap: 'round'
- }
- }
- }
- },
- {
- avatar: require('@src/assets/images/portrait/small/avatar-s-20.jpg').default,
- title: 'Cynthia Howell',
- subtitle: 'Angular Developer',
- time: '3hr 19m',
- chart: {
- type: 'radialBar',
- series: [35],
- height: 30,
- width: 30,
- options: {
- grid: {
- show: false,
- padding: {
- left: -15,
- right: -15,
- top: -12,
- bottom: -15
- }
- },
- colors: [colors.secondary.main],
- plotOptions: {
- radialBar: {
- hollow: {
- size: '22%'
- },
- track: {
- background: trackBgColor
- },
- dataLabels: {
- showOn: 'always',
- name: {
- show: false
- },
- value: {
- show: false
- }
- }
- }
- },
- stroke: {
- lineCap: 'round'
- }
- }
- }
- },
- {
- avatar: require('@src/assets/images/portrait/small/avatar-s-16.jpg').default,
- title: 'Helena Payne',
- subtitle: 'Marketing',
- time: '9hr 50m',
- chart: {
- type: 'radialBar',
- series: [65],
- height: 30,
- width: 30,
- options: {
- grid: {
- show: false,
- padding: {
- left: -15,
- right: -15,
- top: -12,
- bottom: -15
- }
- },
- colors: [colors.warning.main],
- plotOptions: {
- radialBar: {
- hollow: {
- size: '22%'
- },
- track: {
- background: trackBgColor
- },
- dataLabels: {
- showOn: 'always',
- name: {
- show: false
- },
- value: {
- show: false
- }
- }
- }
- },
- stroke: {
- lineCap: 'round'
- }
- }
- }
- },
- {
- avatar: require('@src/assets/images/portrait/small/avatar-s-13.jpg').default,
- title: 'Troy Jensen',
- subtitle: 'iOS Developer',
- time: '4hr 48m',
- chart: {
- type: 'radialBar',
- series: [80],
- height: 30,
- width: 30,
- options: {
- grid: {
- show: false,
- padding: {
- left: -15,
- right: -15,
- top: -12,
- bottom: -15
- }
- },
- colors: [colors.primary.main],
- plotOptions: {
- radialBar: {
- hollow: {
- size: '22%'
- },
- track: {
- background: trackBgColor
- },
- dataLabels: {
- showOn: 'always',
- name: {
- show: false
- },
- value: {
- show: false
- }
- }
- }
- },
- stroke: {
- lineCap: 'round'
- }
- }
- }
- }
- ]
-
- const renderTasks = () => {
- return employeesTasks.map(task => {
- return (
-
-
-
-
- {task.title}
- {task.subtitle}
-
-
-
- {task.time}
-
-
-
- )
- })
- }
-
- return (
-
-
- Employee Task
-
-
- {renderTasks()}
-
- )
-}
-
-export default CardEmployeesTasks
diff --git a/src/views/ui-elements/cards/advance/CardJob.js b/src/views/ui-elements/cards/advance/CardJob.js
deleted file mode 100644
index f8ec8e8..0000000
--- a/src/views/ui-elements/cards/advance/CardJob.js
+++ /dev/null
@@ -1,48 +0,0 @@
-import Avatar from '@components/avatar'
-import { Card, CardBody, CardText, Button, Badge, Media } from 'reactstrap'
-import profileImg from '@src/assets/images/portrait/small/avatar-s-7.jpg'
-
-const CardJob = () => {
- return (
-
-
-
-
-
-
- Mittie Evans
- Updated 12m ago
-
-
-
- Design
-
-
- Need a designer to form branding essentials for my business.
-
- Design high-quality designs, graphics, mock-ups and layouts for both new and existing web sites/ web
- applications / mobile applications.
-
-
-
-
- $
-
-
9,800
-
- / month
-
-
-
- Full Time
-
-
-
- Apply For This Job
-
-
-
- )
-}
-
-export default CardJob
diff --git a/src/views/ui-elements/cards/advance/CardMedal.js b/src/views/ui-elements/cards/advance/CardMedal.js
deleted file mode 100644
index caf5d5b..0000000
--- a/src/views/ui-elements/cards/advance/CardMedal.js
+++ /dev/null
@@ -1,22 +0,0 @@
-import { Card, CardBody, CardText, Button } from 'reactstrap'
-import medal from '@src/assets/images/illustration/badge.svg'
-
-const CardMedal = () => {
- return (
-
-
- Congratulations 🎉 John!
- You have won gold medal
-
- View Sales
-
-
-
- )
-}
-
-export default CardMedal
diff --git a/src/views/ui-elements/cards/advance/CardMeetup.js b/src/views/ui-elements/cards/advance/CardMeetup.js
deleted file mode 100644
index 437bce3..0000000
--- a/src/views/ui-elements/cards/advance/CardMeetup.js
+++ /dev/null
@@ -1,87 +0,0 @@
-import Avatar from '@components/avatar'
-import { Calendar, MapPin } from 'react-feather'
-import AvatarGroup from '@components/avatar-group'
-import { Card, CardTitle, CardBody, CardText, Media } from 'reactstrap'
-import illustration from '@src/assets/images/illustration/email.svg'
-
-const CardMeetup = () => {
- const data = [
- {
- title: 'Billy Hopkins',
- placement: 'bottom',
- img: require('@src/assets/images/portrait/small/avatar-s-9.jpg').default,
- imgHeight: 33,
- imgWidth: 33
- },
- {
- title: 'Amy Carson',
- placement: 'bottom',
- img: require('@src/assets/images/portrait/small/avatar-s-6.jpg').default,
- imgHeight: 33,
- imgWidth: 33
- },
- {
- title: 'Brandon Miles',
- placement: 'bottom',
- img: require('@src/assets/images/portrait/small/avatar-s-8.jpg').default,
- imgHeight: 33,
- imgWidth: 33
- },
- {
- title: 'Daisy Weber',
- placement: 'bottom',
- img: require('@src/assets/images/portrait/small/avatar-s-7.jpg').default,
- imgHeight: 33,
- imgWidth: 33
- },
- {
- title: 'Jenny Looper',
- placement: 'bottom',
- img: require('@src/assets/images/portrait/small/avatar-s-20.jpg').default,
- imgHeight: 33,
- imgWidth: 33
- },
- {
- meta: '+42'
- }
- ]
-
- return (
-
-
-
-
-
-
-
-
THU
- 24
-
-
-
- Developer Meetup
-
- Meet world popular developers
-
-
-
- } />
-
- Sat, May 25, 2020
- 10:AM to 6:PM
-
-
-
- } />
-
- Central Park
- Manhattan, New york City
-
-
-
-
-
- )
-}
-
-export default CardMeetup
diff --git a/src/views/ui-elements/cards/advance/CardPayment.js b/src/views/ui-elements/cards/advance/CardPayment.js
deleted file mode 100644
index 9f8224b..0000000
--- a/src/views/ui-elements/cards/advance/CardPayment.js
+++ /dev/null
@@ -1,62 +0,0 @@
-import Cleave from 'cleave.js/react'
-import { Card, CardHeader, CardTitle, CardBody, Form, FormGroup, Label, Input, Button, Row, Col } from 'reactstrap'
-
-const CardPayment = () => {
- return (
-
-
- Pay Amount
-
- $455.60
-
-
-
-
-
-
- )
-}
-
-export default CardPayment
diff --git a/src/views/ui-elements/cards/advance/CardProfile.js b/src/views/ui-elements/cards/advance/CardProfile.js
deleted file mode 100644
index 58d6f09..0000000
--- a/src/views/ui-elements/cards/advance/CardProfile.js
+++ /dev/null
@@ -1,41 +0,0 @@
-import Avatar from '@components/avatar'
-import coverImg from '@src/assets/images/banner/banner-12.jpg'
-import { Card, CardBody, CardImg, Badge } from 'reactstrap'
-import profileImg from '@src/assets/images/portrait/small/avatar-s-9.jpg'
-
-const CardProfile = () => {
- return (
-
-
-
-
- Curtis Stone
- Malaysia
-
- Pro Level
-
-
-
-
-
Followers
- 10.3k
-
-
-
Projects
- 156
-
-
-
Rank
- 23
-
-
-
-
- )
-}
-
-export default CardProfile
diff --git a/src/views/ui-elements/cards/advance/CardTransactions.js b/src/views/ui-elements/cards/advance/CardTransactions.js
deleted file mode 100644
index 8eb53a1..0000000
--- a/src/views/ui-elements/cards/advance/CardTransactions.js
+++ /dev/null
@@ -1,74 +0,0 @@
-import Avatar from '@components/avatar'
-import * as Icon from 'react-feather'
-import { Card, CardHeader, CardTitle, CardBody, Media } from 'reactstrap'
-
-const CardTransactions = () => {
- const transactionsArr = [
- {
- title: 'Wallet',
- color: 'light-primary',
- subtitle: 'Starbucks',
- amount: '- $74',
- Icon: Icon['Pocket'],
- down: true
- },
- {
- title: 'Bank Transfer',
- color: 'light-success',
- subtitle: 'Add Money',
- amount: '+ $480',
- Icon: Icon['Check']
- },
- {
- title: 'Paypal',
- color: 'light-danger',
- subtitle: 'Add Money',
- amount: '+ $590',
- Icon: Icon['DollarSign']
- },
- {
- title: 'Mastercard',
- color: 'light-warning',
- subtitle: 'Ordered Food',
- amount: '- $12',
- Icon: Icon['CreditCard'],
- down: true
- },
- {
- title: 'Transfer',
- color: 'light-info',
- subtitle: 'Refund',
- amount: '+ $98',
- Icon: Icon['TrendingUp']
- }
- ]
-
- const renderTransactions = () => {
- return transactionsArr.map(item => {
- return (
-
-
- } />
-
- {item.title}
- {item.subtitle}
-
-
-
{item.amount}
-
- )
- })
- }
-
- return (
-
-
- Transactions
-
-
- {renderTransactions()}
-
- )
-}
-
-export default CardTransactions
diff --git a/src/views/ui-elements/cards/advance/CardUserTimeline.js b/src/views/ui-elements/cards/advance/CardUserTimeline.js
deleted file mode 100644
index 6760eb5..0000000
--- a/src/views/ui-elements/cards/advance/CardUserTimeline.js
+++ /dev/null
@@ -1,112 +0,0 @@
-import Avatar from '@components/avatar'
-import Timeline from '@components/timeline'
-import AvatarGroup from '@components/avatar-group'
-import { List, MoreVertical } from 'react-feather'
-import jsonImg from '@src/assets/images/icons/json.png'
-import ceo from '@src/assets/images/portrait/small/avatar-s-9.jpg'
-import { Card, CardHeader, CardTitle, CardBody, Media } from 'reactstrap'
-
-const avatarGroupArr = [
- {
- title: 'Billy Hopkins',
- img: require('@src/assets/images/portrait/small/avatar-s-9.jpg').default,
- placement: 'bottom',
- imgHeight: 33,
- imgWidth: 33
- },
- {
- title: 'Amy Carson',
- img: require('@src/assets/images/portrait/small/avatar-s-6.jpg').default,
- placement: 'bottom',
- imgHeight: 33,
- imgWidth: 33
- },
- {
- title: 'Brandon Miles',
- img: require('@src/assets/images/portrait/small/avatar-s-8.jpg').default,
- placement: 'bottom',
- imgHeight: 33,
- imgWidth: 33
- },
- {
- title: 'Daisy Weber',
- img: require('@src/assets/images/portrait/small/avatar-s-7.jpg').default,
- placement: 'bottom',
- imgHeight: 33,
- imgWidth: 33
- },
- {
- title: 'Jenny Looper',
- img: require('@src/assets/images/portrait/small/avatar-s-20.jpg').default,
- placement: 'bottom',
- imgHeight: 33,
- imgWidth: 33
- }
-]
-
-const data = [
- {
- title: '12 Invoices have been paid',
- content: 'Invoices have been paid to the company.',
- meta: '12 min ago',
- metaClassName: 'mr-1',
- customContent: (
-
-
-
- data.json
-
-
- )
- },
- {
- title: 'Client Meeting',
- content: 'Project meeting with john @10:15am.',
- meta: '45 min ago',
- metaClassName: 'mr-1',
- color: 'warning',
- customContent: (
-
-
-
- John Doe (Client)
- CEO of Infibeam
-
-
- )
- },
- {
- title: 'Create a new project for client',
- content: 'Add files to new design folder',
- color: 'info',
- meta: '2 days ago',
- metaClassName: 'mr-1',
- customContent:
- },
- {
- title: 'Create a new project for client',
- content: 'Add files to new design folder',
- color: 'danger',
- meta: '5 days ago',
- metaClassName: 'mr-1'
- }
-]
-
-const UserTimeline = () => {
- return (
-
-
-
-
- User Timeline
-
-
-
-
-
-
-
- )
-}
-
-export default UserTimeline
diff --git a/src/views/ui-elements/cards/advance/index.js b/src/views/ui-elements/cards/advance/index.js
deleted file mode 100644
index b5954c3..0000000
--- a/src/views/ui-elements/cards/advance/index.js
+++ /dev/null
@@ -1,74 +0,0 @@
-import { Fragment, useContext } from 'react'
-import { Row, Col } from 'reactstrap'
-import CardJob from './CardJob'
-import CardChat from './CardChat'
-import CardMedal from './CardMedal'
-import CardMeetup from './CardMeetup'
-import CardPayment from './CardPayment'
-import CardProfile from './CardProfile'
-import CardBusiness from './CardBusiness'
-import CardAppDesign from './CardAppDesign'
-import CardUserTimeline from './CardUserTimeline'
-import CardBrowserState from './CardBrowserState'
-import Breadcrumbs from '@components/breadcrumbs'
-import CardTransactions from './CardTransactions'
-import CardEmployeesTasks from './CardEmployeesTask'
-import CardCongratulations from './CardCongratulations'
-import { ThemeColors } from '@src/utility/context/ThemeColors'
-
-const Cards = () => {
- const { colors } = useContext(ThemeColors),
- trackBgColor = '#e9ecef'
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- )
-}
-
-export default Cards
diff --git a/src/views/ui-elements/cards/analytics/AvgSessions.js b/src/views/ui-elements/cards/analytics/AvgSessions.js
deleted file mode 100644
index c8f20c2..0000000
--- a/src/views/ui-elements/cards/analytics/AvgSessions.js
+++ /dev/null
@@ -1,127 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import { kFormatter } from '@utils'
-import {
- Card,
- CardBody,
- CardText,
- Row,
- Col,
- Button,
- UncontrolledDropdown,
- DropdownMenu,
- DropdownItem,
- DropdownToggle,
- Progress
-} from 'reactstrap'
-import Chart from 'react-apexcharts'
-
-const AvgSessions = props => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-analytics/avg-sessions').then(res => setData(res.data))
- }, [])
-
- const options = {
- chart: {
- sparkline: { enabled: true },
- toolbar: { show: false }
- },
- grid: {
- show: false,
- padding: {
- left: 0,
- right: 0
- }
- },
- states: {
- hover: {
- filter: 'none'
- }
- },
- colors: ['#ebf0f7', '#ebf0f7', props.primary, '#ebf0f7', '#ebf0f7', '#ebf0f7'],
- plotOptions: {
- bar: {
- columnWidth: '45%',
- distributed: true,
- endingShape: 'rounded'
- }
- },
- tooltip: {
- x: { show: false }
- },
- xaxis: {
- type: 'numeric'
- }
- },
- series = [
- {
- name: 'Sessions',
- data: [75, 125, 225, 175, 125, 75, 25]
- }
- ]
-
- return data !== null ? (
-
-
-
-
-
-
{kFormatter(data.sessions)}
- Avg Sessions
-
- {data.growth}
- vs last 7 days
-
-
- View Details
-
-
-
-
- Last 7 days
-
-
- {data.last_days.map(item => (
-
- {item}
-
- ))}
-
-
-
-
-
-
-
-
- Goal: ${data.goal}
-
-
-
- Users: {kFormatter(data.users)}
-
-
-
- Retention: {data.retention}%
-
-
-
- Duration: {data.duration}yr
-
-
-
-
-
- ) : null
-}
-export default AvgSessions
diff --git a/src/views/ui-elements/cards/analytics/Customers.js b/src/views/ui-elements/cards/analytics/Customers.js
deleted file mode 100644
index 4f020af..0000000
--- a/src/views/ui-elements/cards/analytics/Customers.js
+++ /dev/null
@@ -1,92 +0,0 @@
-import { useEffect, useState } from 'react'
-import classnames from 'classnames'
-import axios from 'axios'
-import {
- Card,
- CardHeader,
- CardTitle,
- CardBody,
- UncontrolledDropdown,
- DropdownMenu,
- DropdownItem,
- DropdownToggle
-} from 'reactstrap'
-import * as Icon from 'react-feather'
-import Chart from 'react-apexcharts'
-
-const Customers = props => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-analytics/customers').then(res => setData(res.data))
- }, [])
-
- const options = {
- chart: {
- toolbar: {
- show: false
- }
- },
- labels: ['New', 'Returning', 'Referrals'],
- dataLabels: {
- enabled: false
- },
- legend: { show: false },
- stroke: {
- width: 4
- },
- colors: [props.primary, props.warning, props.danger]
- },
- series = [690, 258, 149]
-
- const renderChartInfo = () => {
- return data.listData.map((item, index) => {
- const IconTag = Icon[item.icon]
-
- return (
-
-
-
- {item.text}
-
-
{item.result}
-
- )
- })
- }
-
- return data !== null ? (
-
-
- Customers
-
-
- Last 7 days
-
-
- {data.last_days.map(item => (
-
- {item}
-
- ))}
-
-
-
-
-
- {renderChartInfo()}
-
-
- ) : null
-}
-export default Customers
diff --git a/src/views/ui-elements/cards/analytics/Earnings.js b/src/views/ui-elements/cards/analytics/Earnings.js
deleted file mode 100644
index 3352cda..0000000
--- a/src/views/ui-elements/cards/analytics/Earnings.js
+++ /dev/null
@@ -1,111 +0,0 @@
-import Chart from 'react-apexcharts'
-import { Card, CardTitle, CardText, CardBody, Row, Col } from 'reactstrap'
-
-const Earnings = ({ success }) => {
- const options = {
- chart: {
- toolbar: {
- show: false
- }
- },
- dataLabels: {
- enabled: false
- },
- legend: { show: false },
- comparedResult: [2, -3, 8],
- labels: ['App', 'Service', 'Product'],
- stroke: { width: 0 },
- colors: ['#28c76f66', '#28c76f33', success],
- grid: {
- padding: {
- right: -20,
- bottom: -8,
- left: -20
- }
- },
- plotOptions: {
- pie: {
- startAngle: -10,
- donut: {
- labels: {
- show: true,
- name: {
- offsetY: 15
- },
- value: {
- offsetY: -15,
- formatter(val) {
- return `${parseInt(val)} %`
- }
- },
- total: {
- show: true,
- offsetY: 15,
- label: 'App',
- formatter(w) {
- return '53%'
- }
- }
- }
- }
- }
- },
- responsive: [
- {
- breakpoint: 1325,
- options: {
- chart: {
- height: 100
- }
- }
- },
- {
- breakpoint: 1200,
- options: {
- chart: {
- height: 120
- }
- }
- },
- {
- breakpoint: 1065,
- options: {
- chart: {
- height: 100
- }
- }
- },
- {
- breakpoint: 992,
- options: {
- chart: {
- height: 120
- }
- }
- }
- ]
- }
-
- return (
-
-
-
-
- Earnings
- This Month
- $4055.56
-
- 68.2%
- more earnings than last month.
-
-
-
-
-
-
-
-
- )
-}
-
-export default Earnings
diff --git a/src/views/ui-elements/cards/analytics/GoalOverview.js b/src/views/ui-elements/cards/analytics/GoalOverview.js
deleted file mode 100644
index bafbb10..0000000
--- a/src/views/ui-elements/cards/analytics/GoalOverview.js
+++ /dev/null
@@ -1,99 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import Chart from 'react-apexcharts'
-import { HelpCircle } from 'react-feather'
-import { Card, CardHeader, CardTitle, CardBody, CardText, Row, Col } from 'reactstrap'
-
-const GoalOverview = props => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-analytics/goal-overview').then(res => setData(res.data))
- }, [])
-
- const options = {
- chart: {
- sparkline: {
- enabled: true
- },
- dropShadow: {
- enabled: true,
- blur: 3,
- left: 1,
- top: 1,
- opacity: 0.1
- }
- },
- colors: ['#51e5a8'],
- plotOptions: {
- radialBar: {
- offsetY: 10,
- startAngle: -150,
- endAngle: 150,
- hollow: {
- size: '77%'
- },
- track: {
- background: '#ebe9f1',
- strokeWidth: '50%'
- },
- dataLabels: {
- name: {
- show: false
- },
- value: {
- color: '#5e5873',
- fontFamily: 'Montserrat',
- fontSize: '2.86rem',
- fontWeight: '600'
- }
- }
- }
- },
- fill: {
- type: 'gradient',
- gradient: {
- shade: 'dark',
- type: 'horizontal',
- shadeIntensity: 0.5,
- gradientToColors: [props.success],
- inverseColors: true,
- opacityFrom: 1,
- opacityTo: 1,
- stops: [0, 100]
- }
- },
- stroke: {
- lineCap: 'round'
- },
- grid: {
- padding: {
- bottom: 30
- }
- }
- },
- series = [83]
-
- return data !== null ? (
-
-
- Goal Overview
-
-
-
-
-
-
-
- Completed
- {data.completed}
-
-
- In Progress
- {data.inProgress}
-
-
-
- ) : null
-}
-export default GoalOverview
diff --git a/src/views/ui-elements/cards/analytics/ProductOrders.js b/src/views/ui-elements/cards/analytics/ProductOrders.js
deleted file mode 100644
index c3750c3..0000000
--- a/src/views/ui-elements/cards/analytics/ProductOrders.js
+++ /dev/null
@@ -1,118 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import {
- Card,
- CardHeader,
- CardTitle,
- CardBody,
- UncontrolledDropdown,
- DropdownMenu,
- DropdownItem,
- DropdownToggle
-} from 'reactstrap'
-import Chart from 'react-apexcharts'
-import { Circle } from 'react-feather'
-
-const ProductOrders = props => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-analytics/product-orders').then(res => setData(res.data))
- }, [])
-
- const options = {
- labels: ['Finished', 'Pending', 'Rejected'],
- plotOptions: {
- radialBar: {
- size: 150,
- hollow: {
- size: '20%'
- },
- track: {
- strokeWidth: '100%',
- margin: 15
- },
- dataLabels: {
- value: {
- fontSize: '1rem',
- colors: '#5e5873',
- fontWeight: '500',
- offsetY: 5
- },
- total: {
- show: true,
- label: 'Total',
- fontSize: '1.286rem',
- colors: '#5e5873',
- fontWeight: '500',
-
- formatter() {
- // By default this function returns the average of all series. The below is just an example to show the use of custom formatter function
- return 42459
- }
- }
- }
- }
- },
- colors: [props.primary, props.warning, props.danger],
- stroke: {
- lineCap: 'round'
- },
- chart: {
- height: 355,
- dropShadow: {
- enabled: true,
- blur: 3,
- left: 1,
- top: 1,
- opacity: 0.1
- }
- }
- },
- series = [70, 52, 26]
-
- return data !== null ? (
-
-
- Product Orders
-
-
- Last 7 days
-
-
- {data.last_days.map(item => (
-
- {item}
-
- ))}
-
-
-
-
-
-
-
-
- Finished
-
-
{data.chart_info.finished}
-
-
-
-
- Pending
-
-
{data.chart_info.pending}
-
-
-
-
- Rejected
-
-
{data.chart_info.rejected}
-
-
-
- ) : null
-}
-export default ProductOrders
diff --git a/src/views/ui-elements/cards/analytics/Revenue.js b/src/views/ui-elements/cards/analytics/Revenue.js
deleted file mode 100644
index ef51ded..0000000
--- a/src/views/ui-elements/cards/analytics/Revenue.js
+++ /dev/null
@@ -1,127 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import Chart from 'react-apexcharts'
-import { Settings } from 'react-feather'
-import { Card, CardHeader, CardTitle, CardBody, CardText } from 'reactstrap'
-
-const Revenue = props => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-analytics/revenue').then(res => setData(res.data))
- }, [])
-
- const options = {
- chart: {
- toolbar: { show: false },
- zoom: { enabled: false },
- type: 'line',
- offsetX: -10
- },
- stroke: {
- curve: 'smooth',
- dashArray: [0, 12],
- width: [4, 3]
- },
- legend: {
- show: false
- },
- colors: ['#d0ccff', '#ebe9f1'],
- fill: {
- type: 'gradient',
- gradient: {
- shade: 'dark',
- inverseColors: false,
- gradientToColors: [props.primary, '#ebe9f1'],
- shadeIntensity: 1,
- type: 'horizontal',
- opacityFrom: 1,
- opacityTo: 1,
- stops: [0, 100, 100, 100]
- }
- },
- markers: {
- size: 0,
- hover: {
- size: 5
- }
- },
- xaxis: {
- labels: {
- style: {
- colors: '#b9b9c3',
- fontSize: '1rem'
- }
- },
- axisTicks: {
- show: false
- },
- categories: ['01', '05', '09', '13', '17', '21', '26', '31'],
- axisBorder: {
- show: false
- },
- tickPlacement: 'on'
- },
- yaxis: {
- tickAmount: 5,
- labels: {
- style: {
- colors: '#b9b9c3',
- fontSize: '1rem'
- },
- formatter(val) {
- return val > 999 ? `${(val / 1000).toFixed(0)}k` : val
- }
- }
- },
- grid: {
- borderColor: '#e7eef7',
- padding: {
- top: -20,
- bottom: -10,
- left: 20
- }
- },
- tooltip: {
- x: { show: false }
- }
- },
- series = [
- {
- name: 'This Month',
- data: [45000, 47000, 44800, 47500, 45500, 48000, 46500, 48600]
- },
- {
- name: 'Last Month',
- data: [46000, 48000, 45500, 46600, 44500, 46500, 45000, 47000]
- }
- ]
- return data !== null ? (
-
-
- Revenue
-
-
-
-
-
- This Month
-
- $
- 86,589
-
-
-
- Last Month
-
- $
- 73,683
-
-
-
-
-
-
- ) : null
-}
-export default Revenue
diff --git a/src/views/ui-elements/cards/analytics/RevenueReport.js b/src/views/ui-elements/cards/analytics/RevenueReport.js
deleted file mode 100644
index 46d3145..0000000
--- a/src/views/ui-elements/cards/analytics/RevenueReport.js
+++ /dev/null
@@ -1,158 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import {
- Card,
- CardTitle,
- Row,
- Col,
- Button,
- UncontrolledButtonDropdown,
- DropdownMenu,
- DropdownItem,
- DropdownToggle
-} from 'reactstrap'
-import Chart from 'react-apexcharts'
-
-const RevenueReport = props => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-analytics/revenue-report').then(res => setData(res.data))
- }, [])
-
- const revenueOptions = {
- chart: {
- stacked: true,
- type: 'bar',
- toolbar: { show: false }
- },
- grid: {
- padding: {
- top: -20,
- bottom: -10
- },
- yaxis: {
- lines: { show: false }
- }
- },
- xaxis: {
- categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep'],
- labels: {
- style: {
- colors: '#b9b9c3',
- fontSize: '0.86rem'
- }
- },
- axisTicks: {
- show: false
- },
- axisBorder: {
- show: false
- }
- },
- legend: {
- show: false
- },
- dataLabels: {
- enabled: false
- },
- colors: [props.primary, props.warning],
- plotOptions: {
- bar: {
- columnWidth: '17%',
- endingShape: 'rounded'
- },
- distributed: true
- },
- yaxis: {
- labels: {
- style: {
- colors: '#b9b9c3',
- fontSize: '0.86rem'
- }
- }
- }
- },
- revenueSeries = [
- {
- name: 'Earning',
- data: [95, 177, 284, 256, 105, 63, 168, 218, 72]
- },
- {
- name: 'Expense',
- data: [-145, -80, -60, -180, -100, -60, -85, -75, -100]
- }
- ]
-
- const budgetSeries = [
- {
- data: [61, 48, 69, 52, 60, 40, 79, 60, 59, 43, 62]
- },
- {
- data: [20, 10, 30, 15, 23, 0, 25, 15, 20, 5, 27]
- }
- ],
- budgetOptions = {
- chart: {
- toolbar: { show: false },
- zoom: { enabled: false },
- type: 'line',
- sparkline: { enabled: true }
- },
- stroke: {
- curve: 'smooth',
- dashArray: [0, 5],
- width: [2]
- },
- colors: [props.primary, '#dcdae3'],
- tooltip: {
- enabled: false
- }
- }
-
- return data !== null ? (
-
-
-
-
-
Revenue Report
-
-
-
- Earning
-
-
-
- Expense
-
-
-
-
-
-
-
-
- 2020
-
-
- {data.years.map(item => (
-
- {item}
-
- ))}
-
-
- ${data.price}
-
- Budget:
- {data.budget}
-
-
- Increase Budget
-
-
-
- ) : null
-}
-
-export default RevenueReport
diff --git a/src/views/ui-elements/cards/analytics/Sales.js b/src/views/ui-elements/cards/analytics/Sales.js
deleted file mode 100644
index 75b2895..0000000
--- a/src/views/ui-elements/cards/analytics/Sales.js
+++ /dev/null
@@ -1,126 +0,0 @@
-import Chart from 'react-apexcharts'
-import { MoreVertical, Circle } from 'react-feather'
-import {
- Card,
- CardHeader,
- CardTitle,
- CardBody,
- CardText,
- UncontrolledDropdown,
- DropdownMenu,
- DropdownItem,
- DropdownToggle
-} from 'reactstrap'
-
-const Sales = props => {
- const options = {
- chart: {
- height: 300,
- type: 'radar',
- dropShadow: {
- enabled: true,
- blur: 8,
- left: 1,
- top: 1,
- opacity: 0.2
- },
- toolbar: {
- show: false
- },
- offsetY: 5
- },
- stroke: {
- width: 0
- },
- dataLabels: {
- background: {
- foreColor: ['#ebe9f1']
- }
- },
- legend: { show: false },
- colors: [props.primary, props.info],
- plotOptions: {
- radar: {
- polygons: {
- strokeColors: ['#ebe9f1', 'transparent', 'transparent', 'transparent', 'transparent', 'transparent'],
- connectorColors: 'transparent'
- }
- }
- },
- fill: {
- type: 'gradient',
- gradient: {
- shade: 'dark',
- gradientToColors: [props.primary, props.info],
- shadeIntensity: 1,
- type: 'horizontal',
- opacityFrom: 1,
- opacityTo: 1,
- stops: [0, 100, 100, 100]
- }
- },
- labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
- markers: {
- size: 0
- },
- yaxis: {
- show: false
- },
- grid: {
- show: false,
- padding: {
- bottom: -27
- }
- }
- },
- series = [
- {
- name: 'Sales',
- data: [90, 50, 86, 40, 100, 20]
- },
- {
- name: 'Visit',
- data: [70, 75, 70, 76, 20, 85]
- }
- ]
- return (
-
-
-
-
- Sales
-
- Last 6 months
-
-
-
-
-
-
-
- Last 28 Days
- Last Month
- Last Year
-
-
-
-
-
-
-
-
-
-
- )
-}
-export default Sales
diff --git a/src/views/ui-elements/cards/analytics/Sales2.js b/src/views/ui-elements/cards/analytics/Sales2.js
deleted file mode 100644
index a851d8f..0000000
--- a/src/views/ui-elements/cards/analytics/Sales2.js
+++ /dev/null
@@ -1,113 +0,0 @@
-import Chart from 'react-apexcharts'
-import { Settings } from 'react-feather'
-import { Card, CardHeader, CardTitle, CardBody, CardText } from 'reactstrap'
-
-const Sales2 = props => {
- const options = {
- chart: {
- toolbar: { show: false },
- zoom: { enabled: false },
- type: 'line',
- dropShadow: {
- enabled: true,
- top: 18,
- left: 2,
- blur: 5,
- opacity: 0.2
- },
- offsetX: -10
- },
- stroke: {
- curve: 'smooth',
- width: 4
- },
- grid: {
- borderColor: '#ebe9f1',
- padding: {
- top: -20,
- bottom: 5,
- left: 20
- }
- },
- legend: {
- show: false
- },
- colors: ['#df87f2'],
- fill: {
- type: 'gradient',
- gradient: {
- shade: 'dark',
- inverseColors: false,
- gradientToColors: [props.primary],
- shadeIntensity: 1,
- type: 'horizontal',
- opacityFrom: 1,
- opacityTo: 1,
- stops: [0, 100, 100, 100]
- }
- },
- markers: {
- size: 0,
- hover: {
- size: 5
- }
- },
- xaxis: {
- labels: {
- offsetY: 5,
- style: {
- colors: '#b9b9c3',
- fontSize: '0.857rem',
- fontFamily: 'Montserrat'
- }
- },
- axisTicks: {
- show: false
- },
- categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'July', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
- axisBorder: {
- show: false
- },
- tickPlacement: 'on'
- },
- yaxis: {
- tickAmount: 5,
- labels: {
- style: {
- colors: '#b9b9c3',
- fontSize: '0.857rem',
- fontFamily: 'Montserrat'
- },
- formatter(val) {
- return val > 999 ? `${(val / 1000).toFixed(1)}k` : val
- }
- }
- },
- tooltip: {
- x: { show: false }
- }
- },
- series = [
- {
- name: 'Sales',
- data: [140, 180, 150, 205, 160, 295, 125, 255, 205, 305, 240, 295]
- }
- ]
- return (
-
-
-
-
- Sales
-
- 2020 Total Sales: 12.84k
-
-
-
-
-
-
-
- )
-}
-export default Sales2
diff --git a/src/views/ui-elements/cards/analytics/SessionByDevice.js b/src/views/ui-elements/cards/analytics/SessionByDevice.js
deleted file mode 100644
index 16cbc59..0000000
--- a/src/views/ui-elements/cards/analytics/SessionByDevice.js
+++ /dev/null
@@ -1,98 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import classnames from 'classnames'
-import {
- Card,
- CardHeader,
- CardTitle,
- CardBody,
- UncontrolledDropdown,
- DropdownMenu,
- DropdownItem,
- DropdownToggle
-} from 'reactstrap'
-import Chart from 'react-apexcharts'
-import * as Icon from 'react-feather'
-
-const SessionByDevice = props => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-analytics/sessions-device').then(res => setData(res.data))
- }, [])
-
- const options = {
- chart: {
- toolbar: {
- show: false
- }
- },
- labels: ['Desktop', 'Mobile', 'Tablet'],
- dataLabels: {
- enabled: false
- },
- legend: { show: false },
- comparedResult: [2, -3, 8],
- stroke: { width: 0 },
- colors: [props.primary, props.warning, props.danger]
- },
- series = [58.6, 34.9, 6.5]
-
- const renderChartInfo = () => {
- return data.chart_info.map((item, index) => {
- const IconTag = Icon[item.icon]
- return (
-
-
-
- {item.name}
- - {item.usage}%
-
-
- {item.upDown}%
- {item.upDown > 0 ? (
-
- ) : (
-
- )}
-
-
- )
- })
- }
-
- return data !== null ? (
-
-
- Session By Device
-
-
- Last 7 days
-
-
- {data.last_days.map(item => (
-
- {item}
-
- ))}
-
-
-
-
-
- {renderChartInfo()}
-
-
- ) : null
-}
-export default SessionByDevice
diff --git a/src/views/ui-elements/cards/analytics/SupportTracker.js b/src/views/ui-elements/cards/analytics/SupportTracker.js
deleted file mode 100644
index 604c1fb..0000000
--- a/src/views/ui-elements/cards/analytics/SupportTracker.js
+++ /dev/null
@@ -1,119 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import {
- Card,
- CardHeader,
- CardTitle,
- CardBody,
- CardText,
- UncontrolledDropdown,
- DropdownMenu,
- DropdownItem,
- DropdownToggle,
- Row,
- Col
-} from 'reactstrap'
-import Chart from 'react-apexcharts'
-
-const SupportTracker = props => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-analytics/support-tracker').then(res => setData(res.data))
- }, [])
-
- const options = {
- plotOptions: {
- radialBar: {
- size: 150,
- offsetY: 20,
- startAngle: -150,
- endAngle: 150,
- hollow: {
- size: '65%'
- },
- track: {
- background: '#fff',
- strokeWidth: '100%'
- },
- dataLabels: {
- name: {
- offsetY: -5,
- fontFamily: 'Montserrat',
- fontSize: '1rem'
- },
- value: {
- offsetY: 15,
- fontFamily: 'Montserrat',
- fontSize: '1.714rem'
- }
- }
- }
- },
- colors: [props.danger],
- fill: {
- type: 'gradient',
- gradient: {
- shade: 'dark',
- type: 'horizontal',
- shadeIntensity: 0.5,
- gradientToColors: [props.primary],
- inverseColors: true,
- opacityFrom: 1,
- opacityTo: 1,
- stops: [0, 100]
- }
- },
- stroke: {
- dashArray: 8
- },
- labels: ['Completed Tickets']
- },
- series = [83]
-
- return data !== null ? (
-
-
- {data.title}
-
-
- Last 7 days
-
-
- {data.last_days.map(item => (
-
- {item}
-
- ))}
-
-
-
-
-
-
- {data.totalTicket}
- Tickets
-
-
-
-
-
-
-
- New Tickets
- {data.newTicket}
-
-
- Open Tickets
- {data.openTicket}
-
-
- Response Time
- {data.responseTime}d
-
-
-
-
- ) : null
-}
-export default SupportTracker
diff --git a/src/views/ui-elements/cards/analytics/index.js b/src/views/ui-elements/cards/analytics/index.js
deleted file mode 100644
index 6e82e59..0000000
--- a/src/views/ui-elements/cards/analytics/index.js
+++ /dev/null
@@ -1,89 +0,0 @@
-import { Fragment, useContext } from 'react'
-import { Row, Col } from 'reactstrap'
-import Breadcrumbs from '@components/breadcrumbs'
-import SessionByDevice from './SessionByDevice'
-import ProductOrders from './ProductOrders'
-import Customers from './Customers'
-import Sales from './Sales'
-import SupportTracker from './SupportTracker'
-import RevenueReport from './RevenueReport'
-import Revenue from './Revenue'
-import GoalOverview from './GoalOverview'
-import AvgSession from './AvgSessions'
-import Sales2 from './Sales2'
-import Earnings from './Earnings'
-import { ThemeColors } from '@src/utility/context/ThemeColors'
-
-import '@styles/react/libs/charts/apex-charts.scss'
-
-const AnalyticsCards = () => {
- const context = useContext(ThemeColors)
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- )
-}
-
-export default AnalyticsCards
diff --git a/src/views/ui-elements/cards/basic/CardColumns.js b/src/views/ui-elements/cards/basic/CardColumns.js
deleted file mode 100644
index 96f2f3e..0000000
--- a/src/views/ui-elements/cards/basic/CardColumns.js
+++ /dev/null
@@ -1,89 +0,0 @@
-import { CardColumns, Card, CardImg, CardBody, CardTitle, CardText } from 'reactstrap'
-import img1 from '@src/assets/images/slider/06.jpg'
-import img2 from '@src/assets/images/slider/01.jpg'
-import img3 from '@src/assets/images/slider/02.jpg'
-const CardColumnsComponent = () => {
- return (
-
-
-
-
- Card title that wraps to a new line
-
- This is a longer card with supporting text below as a natural lead-in to additional content. This content is
- a little bit longer.
-
-
-
-
-
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
-
-
- Someone famous in
- Source Title
-
-
-
-
-
-
-
- Card title
- This card has supporting text below as a natural lead-in to additional content.
-
- Last updated 3 mins ago
-
-
-
-
-
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
-
-
- Someone famous in
- Source Title
-
-
-
-
-
-
- Card title
- This card has supporting text below as a natural lead-in to additional content.
-
- Last updated 3 mins ago
-
-
-
-
-
-
-
-
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
-
-
- Someone famous in
- Source Title
-
-
-
-
-
-
- Card title
-
- This is a wider card with supporting text below as a natural lead-in to additional content. This card has
- even longer content than the first to show that equal height action.
-
-
- Last updated 3 mins ago
-
-
-
-
- )
-}
-
-export default CardColumnsComponent
diff --git a/src/views/ui-elements/cards/basic/CardContentTypes.js b/src/views/ui-elements/cards/basic/CardContentTypes.js
deleted file mode 100644
index 2f1a5c4..0000000
--- a/src/views/ui-elements/cards/basic/CardContentTypes.js
+++ /dev/null
@@ -1,100 +0,0 @@
-import { Fragment } from 'react'
-import {
- Card,
- CardTitle,
- CardBody,
- CardText,
- CardSubtitle,
- CardLink,
- CardImg,
- ListGroup,
- ListGroupItem,
- Row,
- Col
-} from 'reactstrap'
-import img1 from '@src/assets/images/slider/01.jpg'
-import img2 from '@src/assets/images/slider/02.jpg'
-
-const CardContentTypes = () => {
- return (
-
- Content types
-
-
- Body
-
-
-
- This is some text within a card body. Jelly lemon drops tiramisu chocolate cake cotton candy soufflé oat
- cake sweet roll. Sugar plum marzipan dragée topping cheesecake chocolate bar. Danish muffin icing donut.
-
-
-
- Titles, text, and links
-
-
- Card Title
- Support card subtitle
-
- Some quick example text to build on the card title and make up the bulk of the card's content.
-
- e.preventDefault()}>
- Card Link
-
- e.preventDefault()}>
- Another Link
-
-
-
- List groups
-
-
- Cras justo odio
- Dapibus ac facilisis in
- Vestibulum at eros
-
-
-
-
- Images
-
-
-
-
- Some quick example text to build on the card title and make up the bulk of the card's content.
-
-
- Cookie topping caramels jujubes gingerbread. Lollipop apple pie cupcake candy canes cookie ice cream.
- Wafer chocolate bar carrot cake jelly-o.
-
-
-
-
-
- Kitchen sink
-
-
-
- Card Title
- Some quick example text to build on the card title.
-
-
- Cras justo odio
- Vestibulum at eros
-
-
- e.preventDefault()}>
- Card Link
-
- e.preventDefault()}>
- Another Link
-
-
-
-
-
-
- )
-}
-
-export default CardContentTypes
diff --git a/src/views/ui-elements/cards/basic/CardDeck.js b/src/views/ui-elements/cards/basic/CardDeck.js
deleted file mode 100644
index a98e63b..0000000
--- a/src/views/ui-elements/cards/basic/CardDeck.js
+++ /dev/null
@@ -1,49 +0,0 @@
-import { CardDeck, Card, CardImg, CardBody, CardTitle, CardText, CardFooter } from 'reactstrap'
-import img1 from '@src/assets/images/slider/03.jpg'
-import img2 from '@src/assets/images/slider/02.jpg'
-import img3 from '@src/assets/images/slider/01.jpg'
-
-const CardDeckComponent = () => {
- return (
-
-
-
-
- Card title
-
- This is a wider card with supporting text below as a natural lead-in to additional content. This content is
- a little bit longer.
-
-
-
- Last updated 3 mins ago
-
-
-
-
-
- Card title
- This card has supporting text below as a natural lead-in to additional content.
-
-
- Last updated 3 mins ago
-
-
-
-
-
- Card title
-
- This is a wider card with supporting text below as a natural lead-in to additional content. This card has
- even longer content than the first to show that equal height action.
-
-
-
- Last updated 3 mins ago
-
-
-
- )
-}
-
-export default CardDeckComponent
diff --git a/src/views/ui-elements/cards/basic/CardGroup.js b/src/views/ui-elements/cards/basic/CardGroup.js
deleted file mode 100644
index 7960c46..0000000
--- a/src/views/ui-elements/cards/basic/CardGroup.js
+++ /dev/null
@@ -1,49 +0,0 @@
-import { CardGroup, Card, CardImg, CardBody, CardTitle, CardText, CardFooter } from 'reactstrap'
-import img1 from '@src/assets/images/slider/01.jpg'
-import img2 from '@src/assets/images/slider/05.jpg'
-import img3 from '@src/assets/images/slider/03.jpg'
-
-const CardGroupComponent = () => {
- return (
-
-
-
-
- Card title
-
- This is a wider card with supporting text below as a natural lead-in to additional content. This content is
- a little bit longer.
-
-
-
- Last updated 3 mins ago
-
-
-
-
-
- Card title
- This card has supporting text below as a natural lead-in to additional content.
-
-
- Last updated 3 mins ago
-
-
-
-
-
- Card title
-
- This is a wider card with supporting text below as a natural lead-in to additional content. This card has
- even longer content than the first to show that equal height action.
-
-
-
- Last updated 3 mins ago
-
-
-
- )
-}
-
-export default CardGroupComponent
diff --git a/src/views/ui-elements/cards/basic/CardHeaderFooter.js b/src/views/ui-elements/cards/basic/CardHeaderFooter.js
deleted file mode 100644
index 682c80d..0000000
--- a/src/views/ui-elements/cards/basic/CardHeaderFooter.js
+++ /dev/null
@@ -1,59 +0,0 @@
-import { Fragment } from 'react'
-import { Card, CardHeader, CardTitle, CardBody, CardText, CardFooter, Row, Col, Button } from 'reactstrap'
-
-const CardHeaderFooter = () => {
- return (
-
- Header and footer
-
-
-
- Featured
-
- Special title treatment
-
- With supporting text below as a natural lead-in to additional content natural lead-in to additional
- content.
-
-
- Go somewhere
-
-
-
-
-
-
- Quote
-
-
-
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.Lorem ipsum dolor
- sit amet, Integer posuere erat a ante Integer posuere erat a anteconsectetur.
-
-
- Someone famous in
- Source Title
-
-
-
-
-
-
-
- Featured
-
- Special title treatment
- With supporting text below as a natural.
-
- Go somewhere
-
-
- 2 days ago
-
-
-
-
- )
-}
-
-export default CardHeaderFooter
diff --git a/src/views/ui-elements/cards/basic/CardImages.js b/src/views/ui-elements/cards/basic/CardImages.js
deleted file mode 100644
index 31df110..0000000
--- a/src/views/ui-elements/cards/basic/CardImages.js
+++ /dev/null
@@ -1,64 +0,0 @@
-import { Fragment } from 'react'
-import { Card, CardImg, CardTitle, CardBody, CardImgOverlay, CardText, Row, Col } from 'reactstrap'
-import img1 from '@src/assets/images/slider/06.jpg'
-import img2 from '@src/assets/images/slider/09.jpg'
-import img3 from '@src/assets/images/slider/10.jpg'
-
-const CardImages = () => {
- return (
-
- Images
-
-
-
-
-
- Card title
-
- This is a wider card with supporting text below as a natural lead-in to additional content. This content
- is a little bit longer.
-
-
- Last updated 3 mins ago
-
-
-
-
-
-
-
- Card title
-
- This is a wider card with supporting text below as a natural lead-in to additional content. This content
- is a little bit longer.
-
-
- Last updated 3 mins ago
-
-
-
-
-
-
-
-
-
-
- Card title
-
-
- This is a wider card with supporting text below as a natural lead-in to additional content. This content
- is a little bit longer.
-
-
- Last updated 3 mins ago
-
-
-
-
-
-
- )
-}
-
-export default CardImages
diff --git a/src/views/ui-elements/cards/basic/CardLayout.js b/src/views/ui-elements/cards/basic/CardLayout.js
deleted file mode 100644
index 90f72a2..0000000
--- a/src/views/ui-elements/cards/basic/CardLayout.js
+++ /dev/null
@@ -1,19 +0,0 @@
-import { Fragment } from 'react'
-import CardGroup from './CardGroup'
-import CardDeck from './CardDeck'
-import CardColumns from './CardColumns'
-const CardLayout = () => {
- return (
-
- Card layout
- Card Group
-
- Card Deck
-
- Card Columns
-
-
- )
-}
-
-export default CardLayout
diff --git a/src/views/ui-elements/cards/basic/CardNavigation.js b/src/views/ui-elements/cards/basic/CardNavigation.js
deleted file mode 100644
index 2ce94f8..0000000
--- a/src/views/ui-elements/cards/basic/CardNavigation.js
+++ /dev/null
@@ -1,140 +0,0 @@
-import { Fragment, useState } from 'react'
-import {
- Card,
- CardHeader,
- CardTitle,
- CardBody,
- CardText,
- Row,
- Col,
- Button,
- TabContent,
- TabPane,
- Nav,
- NavItem,
- NavLink
-} from 'reactstrap'
-
-const CardNavigation = () => {
- const [activePill, setPillActive] = useState('1')
- const [activeTab, setTabActive] = useState('1')
-
- const togglePills = tab => {
- if (activePill !== tab) {
- setPillActive(tab)
- }
- }
-
- const toggleTabs = tab => {
- if (activeTab !== tab) {
- setTabActive(tab)
- }
- }
- return (
-
- Navigation
-
-
-
-
-
-
- {
- togglePills('1')
- }}
- >
- Home
-
-
-
- {
- togglePills('2')
- }}
- >
- Profile
-
-
-
- Disabled
-
-
-
-
-
-
- Special title treatment
- With supporting text below as a natural lead-in to additional content.
-
- Go somewhere
-
-
-
- Special title
- With supporting text below as a natural lead-in to additional content.
-
- Go somewhere
-
-
-
-
-
-
-
-
-
-
-
- {
- toggleTabs('1')
- }}
- >
- Home
-
-
-
- {
- toggleTabs('2')
- }}
- >
- Profile
-
-
-
- Disabled
-
-
-
-
-
-
- Special title treatment
- With supporting text below as a natural lead-in to additional content.
-
- Go somewhere
-
-
-
- Special title
- With supporting text below as a natural lead-in to additional content.
-
- Go somewhere
-
-
-
-
-
-
-
-
- )
-}
-
-export default CardNavigation
diff --git a/src/views/ui-elements/cards/basic/CardStyleVariation.js b/src/views/ui-elements/cards/basic/CardStyleVariation.js
deleted file mode 100644
index ba0e6f0..0000000
--- a/src/views/ui-elements/cards/basic/CardStyleVariation.js
+++ /dev/null
@@ -1,124 +0,0 @@
-import { Fragment } from 'react'
-import { Card, CardBody, CardTitle, CardText, Row, Col } from 'reactstrap'
-
-const CardStyleVariation = () => {
- return (
-
- Style variation
-
-
-
-
-
- Primary Card Title
-
- Some quick example text to build on the card title and make up.
-
-
-
-
-
-
-
- Secondary Card Title
-
- Some quick example text to build on the card title and make up.
-
-
-
-
-
-
-
- Success Card Title
-
- Some quick example text to build on the card title and make up.
-
-
-
-
-
-
-
- Danger Card Title
-
- Some quick example text to build on the card title and make up.
-
-
-
-
-
-
-
- Warning Card Title
-
- Some quick example text to build on the card title and make up.
-
-
-
-
-
-
-
- Info Card Title
-
- Some quick example text to build on the card title and make up.
-
-
-
-
-
-
-
-
- Primary Card Title
- Some quick example text to build on the card title and make up.
-
-
-
-
-
-
- Secondary Card Title
- Some quick example text to build on the card title and make up.
-
-
-
-
-
-
- Success Card Title
- Some quick example text to build on the card title and make up.
-
-
-
-
-
-
- Danger Card Title
- Some quick example text to build on the card title and make up.
-
-
-
-
-
-
- Warning Card Title
- Some quick example text to build on the card title and make up.
-
-
-
-
-
-
- Info Card Title
- Some quick example text to build on the card title and make up.
-
-
-
-
-
- )
-}
-
-export default CardStyleVariation
diff --git a/src/views/ui-elements/cards/basic/CardTextAlignment.js b/src/views/ui-elements/cards/basic/CardTextAlignment.js
deleted file mode 100644
index dfe640d..0000000
--- a/src/views/ui-elements/cards/basic/CardTextAlignment.js
+++ /dev/null
@@ -1,47 +0,0 @@
-import { Fragment } from 'react'
-import { Card, CardTitle, CardBody, CardText, Row, Col, Button } from 'reactstrap'
-
-const CardTextAlignment = () => {
- return (
-
- Text alignment
-
-
-
-
- Special title treatment
- With supporting text below as a natural lead-in to additional content.
-
- Go somewhere
-
-
-
-
-
-
-
- Special title treatment
- With supporting text below as a natural lead-in to additional content.
-
- Go somewhere
-
-
-
-
-
-
-
- Special title treatment
- With supporting text below as a natural lead-in to additional content.
-
- Go somewhere
-
-
-
-
-
-
- )
-}
-
-export default CardTextAlignment
diff --git a/src/views/ui-elements/cards/basic/CardTitles.js b/src/views/ui-elements/cards/basic/CardTitles.js
deleted file mode 100644
index 9653349..0000000
--- a/src/views/ui-elements/cards/basic/CardTitles.js
+++ /dev/null
@@ -1,61 +0,0 @@
-import { Button, Card, CardTitle, CardBody, CardText, CardSubtitle, CardLink, CardImg, Row, Col } from 'reactstrap'
-import img1 from '@src/assets/images/slider/04.jpg'
-import img2 from '@src/assets/images/slider/03.jpg'
-import img3 from '@src/assets/images/slider/06.jpg'
-
-const CardTitles = () => {
- return (
-
-
-
-
-
- Card Title
-
- Some quick example text to build on the card title and make up the bulk of the card's content.
-
-
- Go Somewhere
-
-
-
-
-
-
-
- Card Title
- Support card subtitle
-
-
-
- Bear claw sesame snaps gummies chocolate.
- e.preventDefault()}>
- Card Link
-
- e.preventDefault()}>
- Another Link
-
-
-
-
-
-
-
- Card Title
- Support card subtitle
-
- Bear claw sesame snaps gummies chocolate.
- e.preventDefault()}>
- Card Link
-
- e.preventDefault()}>
- Another Link
-
-
-
-
-
- )
-}
-
-export default CardTitles
diff --git a/src/views/ui-elements/cards/basic/index.js b/src/views/ui-elements/cards/basic/index.js
deleted file mode 100644
index cef075f..0000000
--- a/src/views/ui-elements/cards/basic/index.js
+++ /dev/null
@@ -1,27 +0,0 @@
-import { Fragment } from 'react'
-import CardTitles from './CardTitles'
-import CardImages from './CardImages'
-import CardNavigation from './CardNavigation'
-import CardHeaderFooter from './CardHeaderFooter'
-import CardContentTypes from './CardContentTypes'
-import CardTextAlignment from './CardTextAlignment'
-import CardStyleVariation from './CardStyleVariation'
-import CardLayout from './CardLayout'
-import Breadcrumbs from '@components/breadcrumbs'
-const BasicCards = () => {
- return (
-
-
-
-
-
-
-
-
-
-
-
- )
-}
-
-export default BasicCards
diff --git a/src/views/ui-elements/cards/statistics/ActiveUsers.js b/src/views/ui-elements/cards/statistics/ActiveUsers.js
deleted file mode 100644
index d55d177..0000000
--- a/src/views/ui-elements/cards/statistics/ActiveUsers.js
+++ /dev/null
@@ -1,83 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import { UserCheck } from 'react-feather'
-import StatsWithLineChart from '@components/widgets/stats/StatsWithLineChart'
-
-const ActiveUsers = ({ success }) => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-statistics/active-users').then(res => setData(res.data))
- }, [])
-
- const options = {
- chart: {
- id: 'activeUsers',
- toolbar: {
- show: false
- },
- sparkline: {
- enabled: true
- },
- dropShadow: {
- enabled: true,
- top: 5,
- left: 0,
- blur: 4,
- opacity: 0.1
- }
- },
- grid: {
- show: false
- },
- colors: [success],
- dataLabels: {
- enabled: false
- },
- stroke: {
- curve: 'smooth',
- width: 5
- },
- fill: {
- type: 'gradient',
- gradient: {
- shadeIntensity: 1,
- gradientToColors: ['#55DD92'],
- opacityFrom: 1,
- opacityTo: 1,
- stops: [0, 100, 100, 100]
- }
- },
-
- xaxis: {
- labels: {
- show: false
- },
- axisBorder: {
- show: false
- }
- },
- yaxis: {
- labels: {
- show: false
- }
- },
- tooltip: {
- x: { show: false }
- }
- }
-
- return data !== null ? (
- }
- color='success'
- stats='659.8k'
- statTitle='Active Users'
- series={data.series}
- options={options}
- type='line'
- />
- ) : null
-}
-
-export default ActiveUsers
diff --git a/src/views/ui-elements/cards/statistics/Newsletter.js b/src/views/ui-elements/cards/statistics/Newsletter.js
deleted file mode 100644
index da0efc0..0000000
--- a/src/views/ui-elements/cards/statistics/Newsletter.js
+++ /dev/null
@@ -1,83 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import { Mail } from 'react-feather'
-import StatsWithLineChart from '@components/widgets/stats/StatsWithLineChart'
-
-const Newsletter = ({ warning }) => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-statistics/newsletter').then(res => setData(res.data))
- }, [])
-
- const options = {
- chart: {
- id: 'newsletter',
- toolbar: {
- show: false
- },
- sparkline: {
- enabled: true
- },
- dropShadow: {
- enabled: true,
- top: 5,
- left: 0,
- blur: 4,
- opacity: 0.1
- }
- },
- grid: {
- show: false
- },
- colors: [warning],
- dataLabels: {
- enabled: false
- },
- stroke: {
- curve: 'smooth',
- width: 5
- },
- fill: {
- type: 'gradient',
- gradient: {
- shadeIntensity: 1,
- gradientToColors: ['#ffc085'],
- opacityFrom: 1,
- opacityTo: 1,
- stops: [0, 100, 100, 100]
- }
- },
-
- xaxis: {
- labels: {
- show: false
- },
- axisBorder: {
- show: false
- }
- },
- yaxis: {
- labels: {
- show: false
- }
- },
- tooltip: {
- x: { show: false }
- }
- }
-
- return data !== null ? (
- }
- color='warning'
- stats='28.7k'
- statTitle='Newsletter'
- series={data.series}
- type='line'
- options={options}
- />
- ) : null
-}
-
-export default Newsletter
diff --git a/src/views/ui-elements/cards/statistics/OrdersBarChart.js b/src/views/ui-elements/cards/statistics/OrdersBarChart.js
deleted file mode 100644
index 3ab6b3e..0000000
--- a/src/views/ui-elements/cards/statistics/OrdersBarChart.js
+++ /dev/null
@@ -1,79 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import TinyChartStats from '@components/widgets/stats/TinyChartStats'
-
-const OrdersBarChart = ({ warning }) => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-statistics/orders-bar-chart').then(res => setData(res.data))
- }, [])
-
- const options = {
- chart: {
- stacked: true,
- toolbar: {
- show: false
- }
- },
- grid: {
- show: false,
- padding: {
- left: 0,
- right: 0,
- top: -15,
- bottom: -15
- }
- },
- plotOptions: {
- bar: {
- horizontal: false,
- columnWidth: '20%',
- startingShape: 'rounded',
- colors: {
- backgroundBarColors: ['#f3f3f3', '#f3f3f3', '#f3f3f3', '#f3f3f3', '#f3f3f3'],
- backgroundBarRadius: 5
- }
- }
- },
- legend: {
- show: false
- },
- dataLabels: {
- enabled: false
- },
- colors: [warning],
- xaxis: {
- labels: {
- show: false
- },
- axisBorder: {
- show: false
- },
- axisTicks: {
- show: false
- }
- },
- yaxis: {
- show: false
- },
- tooltip: {
- x: {
- show: false
- }
- }
- }
-
- return data !== null ? (
-
- ) : null
-}
-
-export default OrdersBarChart
diff --git a/src/views/ui-elements/cards/statistics/OrdersReceived.js b/src/views/ui-elements/cards/statistics/OrdersReceived.js
deleted file mode 100644
index 8a70077..0000000
--- a/src/views/ui-elements/cards/statistics/OrdersReceived.js
+++ /dev/null
@@ -1,74 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import { Package } from 'react-feather'
-import StatsWithAreaChart from '@components/widgets/stats/StatsWithAreaChart'
-
-const OrdersReceived = ({ kFormatter, warning }) => {
- const [data, setData] = useState(null)
-
- const options = {
- chart: {
- id: 'revenue',
- toolbar: {
- show: false
- },
- sparkline: {
- enabled: true
- }
- },
- grid: {
- show: false
- },
- colors: [warning],
- dataLabels: {
- enabled: false
- },
- stroke: {
- curve: 'smooth',
- width: 2.5
- },
- fill: {
- type: 'gradient',
- gradient: {
- shadeIntensity: 0.9,
- opacityFrom: 0.7,
- opacityTo: 0.5,
- stops: [0, 80, 100]
- }
- },
-
- xaxis: {
- labels: {
- show: false
- },
- axisBorder: {
- show: false
- }
- },
- yaxis: {
- labels: {
- show: false
- }
- },
- tooltip: {
- x: { show: false }
- }
- }
-
- useEffect(() => {
- axios.get('/card/card-statistics/orders').then(res => setData(res.data))
- }, [])
-
- return data !== null ? (
- }
- color='warning'
- stats={kFormatter(data.analyticsData.orders)}
- statTitle='Orders Received'
- options={options}
- series={data.series}
- type='area'
- />
- ) : null
-}
-export default OrdersReceived
diff --git a/src/views/ui-elements/cards/statistics/ProfitLineChart.js b/src/views/ui-elements/cards/statistics/ProfitLineChart.js
deleted file mode 100644
index 6349b32..0000000
--- a/src/views/ui-elements/cards/statistics/ProfitLineChart.js
+++ /dev/null
@@ -1,107 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import TinyChartStats from '@components/widgets/stats/TinyChartStats'
-
-const ProfitLineChart = ({ info }) => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-statistics/profit-line-chart').then(res => setData(res.data))
- }, [])
-
- const options = {
- chart: {
- toolbar: {
- show: false
- },
- zoom: {
- enabled: false
- }
- },
- grid: {
- borderColor: '#EBEBEB',
- strokeDashArray: 5,
- xaxis: {
- lines: {
- show: true
- }
- },
- yaxis: {
- lines: {
- show: false
- }
- },
- padding: {
- top: -30,
- bottom: -10
- }
- },
- stroke: {
- width: 3
- },
- colors: [info],
- series: [
- {
- data: [0, 20, 5, 30, 15, 45]
- }
- ],
- markers: {
- size: 2,
- colors: info,
- strokeColors: info,
- strokeWidth: 2,
- strokeOpacity: 1,
- strokeDashArray: 0,
- fillOpacity: 1,
- discrete: [
- {
- seriesIndex: 0,
- dataPointIndex: 5,
- fillColor: '#ffffff',
- strokeColor: info,
- size: 5
- }
- ],
- shape: 'circle',
- radius: 2,
- hover: {
- size: 3
- }
- },
- xaxis: {
- labels: {
- show: true,
- style: {
- fontSize: '0px'
- }
- },
- axisBorder: {
- show: false
- },
- axisTicks: {
- show: false
- }
- },
- yaxis: {
- show: false
- },
- tooltip: {
- x: {
- show: false
- }
- }
- }
-
- return data !== null ? (
-
- ) : null
-}
-
-export default ProfitLineChart
diff --git a/src/views/ui-elements/cards/statistics/QuaterlySales.js b/src/views/ui-elements/cards/statistics/QuaterlySales.js
deleted file mode 100644
index 5ef6a6b..0000000
--- a/src/views/ui-elements/cards/statistics/QuaterlySales.js
+++ /dev/null
@@ -1,74 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import { ShoppingCart } from 'react-feather'
-import StatsWithAreaChart from '@components/widgets/stats/StatsWithAreaChart'
-
-const QuarterlySales = ({ danger }) => {
- const [data, setData] = useState(null)
-
- const options = {
- chart: {
- id: 'revenue',
- toolbar: {
- show: false
- },
- sparkline: {
- enabled: true
- }
- },
- grid: {
- show: false
- },
- colors: [danger],
- dataLabels: {
- enabled: false
- },
- stroke: {
- curve: 'smooth',
- width: 2.5
- },
- fill: {
- type: 'gradient',
- gradient: {
- shadeIntensity: 0.9,
- opacityFrom: 0.7,
- opacityTo: 0.5,
- stops: [0, 80, 100]
- }
- },
-
- xaxis: {
- labels: {
- show: false
- },
- axisBorder: {
- show: false
- }
- },
- yaxis: {
- labels: {
- show: false
- }
- },
- tooltip: {
- x: { show: false }
- }
- }
-
- useEffect(() => {
- axios.get('/card/card-statistics/sales').then(res => setData(res.data))
- }, [])
-
- return data !== null ? (
- }
- color='danger'
- stats={data.analyticsData.sales}
- statTitle='Quarterly Sales'
- options={options}
- series={data.series}
- type='area'
- />
- ) : null
-}
-export default QuarterlySales
diff --git a/src/views/ui-elements/cards/statistics/RevenueGenerated.js b/src/views/ui-elements/cards/statistics/RevenueGenerated.js
deleted file mode 100644
index 80a9461..0000000
--- a/src/views/ui-elements/cards/statistics/RevenueGenerated.js
+++ /dev/null
@@ -1,74 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import { CreditCard } from 'react-feather'
-import StatsWithAreaChart from '@components/widgets/stats/StatsWithAreaChart'
-
-const RevenueGenerated = ({ kFormatter, success }) => {
- const [data, setData] = useState(null)
-
- const options = {
- chart: {
- id: 'revenue',
- toolbar: {
- show: false
- },
- sparkline: {
- enabled: true
- }
- },
- grid: {
- show: false
- },
- colors: [success],
- dataLabels: {
- enabled: false
- },
- stroke: {
- curve: 'smooth',
- width: 2.5
- },
- fill: {
- type: 'gradient',
- gradient: {
- shadeIntensity: 0.9,
- opacityFrom: 0.7,
- opacityTo: 0.5,
- stops: [0, 80, 100]
- }
- },
-
- xaxis: {
- labels: {
- show: false
- },
- axisBorder: {
- show: false
- }
- },
- yaxis: {
- labels: {
- show: false
- }
- },
- tooltip: {
- x: { show: false }
- }
- }
-
- useEffect(() => {
- axios.get('/card/card-statistics/revenue').then(res => setData(res.data))
- }, [])
-
- return data !== null ? (
- }
- color='success'
- stats={kFormatter(data.analyticsData.revenue)}
- statTitle='Revenue Generated'
- options={options}
- series={data.series}
- type='area'
- />
- ) : null
-}
-export default RevenueGenerated
diff --git a/src/views/ui-elements/cards/statistics/SiteTraffic.js b/src/views/ui-elements/cards/statistics/SiteTraffic.js
deleted file mode 100644
index c252c4c..0000000
--- a/src/views/ui-elements/cards/statistics/SiteTraffic.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import { Monitor } from 'react-feather'
-import StatsWithLineChart from '@components/widgets/stats/StatsWithLineChart'
-
-const SiteTraffic = () => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-statistics/site-traffic').then(res => setData(res.data))
- }, [])
-
- return data !== null ? (
- }
- color='primary'
- stats='78.9k'
- statTitle='Site Traffic'
- series={data.series}
- type='line'
- />
- ) : null
-}
-
-export default SiteTraffic
diff --git a/src/views/ui-elements/cards/statistics/StatsCard.js b/src/views/ui-elements/cards/statistics/StatsCard.js
deleted file mode 100644
index f83b8f8..0000000
--- a/src/views/ui-elements/cards/statistics/StatsCard.js
+++ /dev/null
@@ -1,70 +0,0 @@
-import classnames from 'classnames'
-import Avatar from '@components/avatar'
-import { TrendingUp, User, Box, DollarSign } from 'react-feather'
-import { Card, CardHeader, CardTitle, CardBody, CardText, Row, Col, Media } from 'reactstrap'
-
-const StatsCard = ({ cols }) => {
- const data = [
- {
- title: '230k',
- subtitle: 'Sales',
- color: 'light-primary',
- icon:
- },
- {
- title: '8.549k',
- subtitle: 'Customers',
- color: 'light-info',
- icon:
- },
- {
- title: '1.423k',
- subtitle: 'Products',
- color: 'light-danger',
- icon:
- },
- {
- title: '$9745',
- subtitle: 'Revenue',
- color: 'light-success',
- icon:
- }
- ]
-
- const renderData = () => {
- return data.map((item, index) => {
- const margin = Object.keys(cols)
- return (
-
-
-
-
- {item.title}
- {item.subtitle}
-
-
-
- )
- })
- }
-
- return (
-
-
- Statistics
- Updated 1 month ago
-
-
- {renderData()}
-
-
- )
-}
-
-export default StatsCard
diff --git a/src/views/ui-elements/cards/statistics/SubscribersGained.js b/src/views/ui-elements/cards/statistics/SubscribersGained.js
deleted file mode 100644
index e54903e..0000000
--- a/src/views/ui-elements/cards/statistics/SubscribersGained.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import { useEffect, useState } from 'react'
-import axios from 'axios'
-import { Users } from 'react-feather'
-import StatsWithAreaChart from '@components/widgets/stats/StatsWithAreaChart'
-
-const SubscribersGained = ({ kFormatter }) => {
- const [data, setData] = useState(null)
-
- useEffect(() => {
- axios.get('/card/card-statistics/subscribers').then(res => setData(res.data))
- }, [])
-
- return data !== null ? (
- }
- color='primary'
- stats={kFormatter(data.analyticsData.subscribers)}
- statTitle='Subscribers Gained'
- series={data.series}
- type='area'
- />
- ) : null
-}
-
-export default SubscribersGained
diff --git a/src/views/ui-elements/cards/statistics/index.js b/src/views/ui-elements/cards/statistics/index.js
deleted file mode 100644
index 1462752..0000000
--- a/src/views/ui-elements/cards/statistics/index.js
+++ /dev/null
@@ -1,132 +0,0 @@
-import { Fragment, useContext } from 'react'
-import { Row, Col } from 'reactstrap'
-import { kFormatter } from '@utils'
-import Breadcrumbs from '@components/breadcrumbs'
-import StatsCard from './StatsCard'
-import OrdersBarChart from './OrdersBarChart'
-import ProfitLineChart from './ProfitLineChart'
-import SubscribersGained from './SubscribersGained'
-import RevenueGenerated from './RevenueGenerated'
-import QuaterlySales from './QuaterlySales'
-import OrdersReceived from './OrdersReceived'
-import SiteTraffic from './SiteTraffic'
-import ActiveUsers from './ActiveUsers'
-import Newsletter from './Newsletter'
-import StatsVertical from '@components/widgets/stats/StatsVertical'
-import StatsHorizontal from '@components/widgets/stats/StatsHorizontal'
-import {
- Eye,
- MessageSquare,
- ShoppingBag,
- Heart,
- Award,
- Truck,
- Cpu,
- Server,
- Activity,
- AlertOctagon
-} from 'react-feather'
-import { ThemeColors } from '@src/utility/context/ThemeColors'
-
-const StatisticsCards = () => {
- const context = useContext(ThemeColors)
-
- return (
-
-
-
-
- {/* Orders Bar Chart */}
-
-
-
- {/* Orders Bar Chart */}
-
- {/* Profit Line Chart */}
-
-
-
- {/* Profit Line Chart */}
-
- {/* Stats Card */}
-
-
-
- {/* Stats Card */}
-
-
-
- {/* Stats With Icons */}
-
- } color='info' stats='36.9k' statTitle='Views' />
-
-
- } color='warning' stats='12k' statTitle='Comments' />
-
-
- } color='danger' stats='97.8k' statTitle='Orders' />
-
-
- } color='primary' stats='26.8' statTitle='Bookmarks' />
-
-
- } color='success' stats='689' statTitle='Reviews' />
-
-
- } color='danger' stats='2.1k' statTitle='Returns' />
-
- {/* Stats With Icons */}
-
-
-
- {/* Stats With Icons Horizontal */}
-
- } color='primary' stats='86%' statTitle='CPU Usage' />
-
-
- } color='success' stats='1.2gb' statTitle='Memory Usage' />
-
-
- } color='danger' stats='0.1%' statTitle='Downtime Ratio' />
-
-
- } color='warning' stats='13' statTitle='Issues Found' />
-
- {/* Stats With Icons Horizontal */}
-
-
-
- {/* Stats Area Charts */}
-
-
-
-
-
-
-
-
-
-
-
-
- {/* Stats Area Charts */}
-
-
-
- {/* Stats Line Charts */}
-
-
-
-
-
-
-
-
-
- {/* Stats Line Charts */}
-
-
- )
-}
-
-export default StatisticsCards
diff --git a/src/views/ui-elements/colors/DefaultColors.js b/src/views/ui-elements/colors/DefaultColors.js
deleted file mode 100644
index 00234a3..0000000
--- a/src/views/ui-elements/colors/DefaultColors.js
+++ /dev/null
@@ -1,127 +0,0 @@
-import { ChevronsRight } from 'react-feather'
-import { Card, CardHeader, CardTitle, CardBody, CardText, Alert } from 'reactstrap'
-
-const DefaultColors = () => {
- return (
-
-
- Default Colors
-
-
-
-
-
- We have a series of colors that are used by default. They include:
-
-
-
- Primary
-
-
-
- Secondary
-
-
-
- Success
-
-
-
- Danger
-
-
-
- Warning
-
-
-
- Info
-
-
-
- For each color, we think has its functionality in the application as alerts of errors (danger) ,
- warnings to the user (warning) , communications of approval (success) , or main color of the
- application (primary) .
-
-
-
- Primary
-
-
- Secondary
-
-
- Success
-
-
- Danger
-
-
- Warning
-
-
- Info
-
-
- Lighten Variant
-
- Use
- .bg-[color].bg-lighten-[1 | 2 | 3 | 4 | 5]
- classes for lighten background color.
-
-
-
- lighten-2
-
-
- lighten-2
-
-
- lighten-2
-
-
- lighten-2
-
-
- lighten-2
-
-
- lighten-2
-
-
- Darken Variant
-
- Use
- .bg-[color].bg-darken-[1 | 2 | 3 | 4 | 5]
- classes for darken background color.
-
-
-
- darken-2
-
-
- darken-2
-
-
- darken-2
-
-
- darken-2
-
-
- darken-2
-
-
- darken-2
-
-
-
-
- )
-}
-export default DefaultColors
diff --git a/src/views/ui-elements/colors/GradientColors.js b/src/views/ui-elements/colors/GradientColors.js
deleted file mode 100644
index bcaa489..0000000
--- a/src/views/ui-elements/colors/GradientColors.js
+++ /dev/null
@@ -1,63 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody } from 'reactstrap'
-import { ChevronsRight } from 'react-feather'
-
-const GradientColors = () => {
- return (
-
-
- Gradient Colors
-
-
-
- We have created gradient colors based on our default colors, use below mentioned classes for gradient colors.
-
-
-
- bg-gradient-primary
-
-
- bg-gradient-secondary
-
-
- bg-gradient-success
-
-
- bg-gradient-danger
-
-
- bg-gradient-warning
-
-
- bg-gradient-info
-
-
-
- For each color, we think has its functionality in the application as alerts of errors (danger) ,
- warnings to the user (warning) , communications of approval (success) , or main color of the
- application (primary) .
-
-
-
- Primary Gradient
-
-
- Secondary Gradient
-
-
- Success Gradient
-
-
- Danger Gradient
-
-
- Warning Gradient
-
-
- Info Gradient
-
-
-
-
- )
-}
-export default GradientColors
diff --git a/src/views/ui-elements/colors/index.js b/src/views/ui-elements/colors/index.js
deleted file mode 100644
index 96f3334..0000000
--- a/src/views/ui-elements/colors/index.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import { Fragment } from 'react'
-import { Row, Col } from 'reactstrap'
-import Breadcrumbs from '@components/breadcrumbs'
-import DefaultColors from './DefaultColors'
-import GradientColors from './GradientColors'
-
-import '@styles/base/pages/ui-colors.scss'
-
-const Colors = () => {
- return (
-
-
-
-
-
-
-
-
-
-
-
- )
-}
-
-export default Colors
diff --git a/src/views/ui-elements/icons/index.js b/src/views/ui-elements/icons/index.js
deleted file mode 100644
index a3ca794..0000000
--- a/src/views/ui-elements/icons/index.js
+++ /dev/null
@@ -1,133 +0,0 @@
-import { Fragment, useState } from 'react'
-import classnames from 'classnames'
-import { toast } from 'react-toastify'
-import * as Icons from 'react-feather'
-import Avatar from '@components/avatar'
-import {
- Card,
- CardBody,
- Row,
- Col,
- Input,
- FormGroup,
- InputGroup,
- InputGroupAddon,
- InputGroupText,
- UncontrolledTooltip
-} from 'reactstrap'
-import Breadcrumbs from '@components/breadcrumbs'
-import { CopyToClipboard } from 'react-copy-to-clipboard'
-
-import '@styles/base/pages/ui-feather.scss'
-
-const ToastContent = ({ icon }) => (
-
-
-
-
} />
-
Icon Name Copied! 📋
-
-
-
-
- {icon}
-
-
-
-)
-
-const FeatherIcons = () => {
- const IconsArr = [],
- [query, setQuery] = useState([]),
- [filteredArr, setFilteredArr] = useState([]),
- [active, setActive] = useState(null)
-
- for (const key in Icons) {
- IconsArr.push(key)
- }
-
- const handleFilter = val => {
- const arr = []
- if (val.length) {
- IconsArr.filter(icon => {
- if (icon.toLowerCase().includes(val.toLowerCase())) {
- arr.push(icon)
- }
- })
- }
- setFilteredArr([...arr])
- }
-
- const handleIconCardClick = icon => {
- setActive(icon)
- toast.success( , { hideProgressBar: true })
- }
-
- const renderIcons = () => {
- const dataToRender = query.length ? filteredArr : IconsArr
- if (dataToRender.length) {
- return dataToRender.map(icon => {
- const IconTag = Icons[icon]
- return (
-
- `}>
- handleIconCardClick(icon)}
- >
-
-
-
-
- {icon}
-
-
-
-
- {icon.replace(/([A-Z])/g, ' $1').trim()}
-
-
- )
- })
- } else {
- return (
-
-
No Icons Found!
-
- )
- }
- }
-
- return (
-
-
-
-
-
-
-
-
-
-
-
- {
- handleFilter(e.target.value)
- setQuery(e.target.value)
- }}
- />
-
-
-
-
-
- {renderIcons()}
-
-
- )
-}
-export default FeatherIcons
diff --git a/src/views/ui-elements/page-layouts/BoxedLayout.js b/src/views/ui-elements/page-layouts/BoxedLayout.js
deleted file mode 100644
index 786ebe8..0000000
--- a/src/views/ui-elements/page-layouts/BoxedLayout.js
+++ /dev/null
@@ -1,30 +0,0 @@
-import { Fragment } from 'react'
-import { Alert } from 'reactstrap'
-import Breadcrumbs from '@components/breadcrumbs'
-import Ecommerce from '../../dashboard/ecommerce'
-
-const BoxedLayout = () => {
- return (
-
-
-
-
-
-
-
- )
-}
-
-export default BoxedLayout
diff --git a/src/views/ui-elements/page-layouts/CollapsedMenu.js b/src/views/ui-elements/page-layouts/CollapsedMenu.js
deleted file mode 100644
index b8d3dbf..0000000
--- a/src/views/ui-elements/page-layouts/CollapsedMenu.js
+++ /dev/null
@@ -1,34 +0,0 @@
-import { Fragment } from 'react'
-import { Alert } from 'reactstrap'
-import Breadcrumbs from '@components/breadcrumbs'
-import Ecommerce from '../../dashboard/ecommerce'
-
-const CollapsedMenu = () => {
- return (
-
-
-
-
-
-
-
- )
-}
-
-export default CollapsedMenu
diff --git a/src/views/ui-elements/page-layouts/LayoutBlank.js b/src/views/ui-elements/page-layouts/LayoutBlank.js
deleted file mode 100644
index 65764cd..0000000
--- a/src/views/ui-elements/page-layouts/LayoutBlank.js
+++ /dev/null
@@ -1,31 +0,0 @@
-import { Fragment } from 'react'
-import { Alert } from 'reactstrap'
-
-const LayoutBlank = () => {
- return (
-
-
-
-
Layout Blank
-
-
-
Info:
-
- This layout is used in Authentication & Miscellaneous page. Please check the{' '}
-
- Layout blank documentation
-
- for more details.
-
-
-
-
-
-
- )
-}
-
-export default LayoutBlank
diff --git a/src/views/ui-elements/page-layouts/LayoutEmpty.js b/src/views/ui-elements/page-layouts/LayoutEmpty.js
deleted file mode 100644
index 8eb9afc..0000000
--- a/src/views/ui-elements/page-layouts/LayoutEmpty.js
+++ /dev/null
@@ -1,29 +0,0 @@
-import { Fragment } from 'react'
-
-import Breadcrumbs from '@components/breadcrumbs'
-import { Alert } from 'reactstrap'
-
-const LayoutEmpty = () => {
- return (
-
-
-
-
-
Info:
-
- This layout can be useful for getting started with empty content section. Please check the{' '}
-
- Layout empty documentation
- {' '}
- for more details.
-
-
-
-
- )
-}
-
-export default LayoutEmpty
diff --git a/src/views/ui-elements/page-layouts/WithoutMenu.js b/src/views/ui-elements/page-layouts/WithoutMenu.js
deleted file mode 100644
index 7be330f..0000000
--- a/src/views/ui-elements/page-layouts/WithoutMenu.js
+++ /dev/null
@@ -1,34 +0,0 @@
-import { Fragment } from 'react'
-import { Alert } from 'reactstrap'
-import Breadcrumbs from '@components/breadcrumbs'
-import Ecommerce from '../../dashboard/ecommerce'
-
-const WithoutMenu = () => {
- return (
-
-
-
-
-
-
-
- )
-}
-
-export default WithoutMenu
diff --git a/src/views/ui-elements/typography/BlockquoteDefault.js b/src/views/ui-elements/typography/BlockquoteDefault.js
deleted file mode 100644
index 7d904c0..0000000
--- a/src/views/ui-elements/typography/BlockquoteDefault.js
+++ /dev/null
@@ -1,24 +0,0 @@
-import { Card, CardHeader, CardTitle, CardText, CardBody } from 'reactstrap'
-
-const BlockquoteDefault = () => {
- return (
-
-
-
- Blockquotes Default
-
-
-
-
-
- Left aligned basic blockquotes. Use text utilities classes like .text-center / .text-right
as
- needed to change the alignment of your blockquote.
-
-
- Design is not just what it looks like and feels like. Design is how it works.
-
-
-
- )
-}
-export default BlockquoteDefault
diff --git a/src/views/ui-elements/typography/BlockquoteStyling.js b/src/views/ui-elements/typography/BlockquoteStyling.js
deleted file mode 100644
index 407fa23..0000000
--- a/src/views/ui-elements/typography/BlockquoteStyling.js
+++ /dev/null
@@ -1,37 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody, CardText } from 'reactstrap'
-
-const BlockquoteStyling = () => {
- return (
-
-
- Blockquotes styling
-
-
-
-
- Add a .border-[left / right]-[color] .border-[left / right]-3
{' '}
- helper classes, where color can be any color from Admin color palette.
-
-
-
- Sometimes when you innovate, you make mistakes. It is best to admit them quickly, and get on with improving
- your other innovations.
-
-
- Steve Jobs Entrepreneur
-
-
-
-
- Sometimes when you innovate, you make mistakes. It is best to admit them quickly, and get on with improving
- your other innovations.
-
-
- Steve Jobs Entrepreneur
-
-
-
-
- )
-}
-export default BlockquoteStyling
diff --git a/src/views/ui-elements/typography/BlockquotesAvatar.js b/src/views/ui-elements/typography/BlockquotesAvatar.js
deleted file mode 100644
index a152479..0000000
--- a/src/views/ui-elements/typography/BlockquotesAvatar.js
+++ /dev/null
@@ -1,52 +0,0 @@
-import img1 from '@src/assets/images/portrait/small/avatar-s-5.jpg'
-import img2 from '@src/assets/images/portrait/small/avatar-s-3.jpg'
-import { Card, CardHeader, CardTitle, CardText, CardBody, Media } from 'reactstrap'
-
-const BlockquotesAvatar = () => {
- return (
-
-
- Blockquotes with avatar
-
-
-
-
- You can create a blockquot with avatar using media
component.
-
-
-
-
-
-
- Sometimes life is going to hit you in the head with a brick. Don't lose faith.
-
-
- Steve Jobs
- Entrepreneur
-
-
- Blockquotes with avatar rounded image example
-
-
-
-
-
- Sometimes life is going to hit you in the head with a brick. Don't lose faith.
-
-
- Steve Jobs
- Entrepreneur
-
-
-
-
- )
-}
-export default BlockquotesAvatar
diff --git a/src/views/ui-elements/typography/CustomizingHeadings.js b/src/views/ui-elements/typography/CustomizingHeadings.js
deleted file mode 100644
index d2d69c7..0000000
--- a/src/views/ui-elements/typography/CustomizingHeadings.js
+++ /dev/null
@@ -1,65 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody, CardText, Table } from 'reactstrap'
-
-const CustomizingHeadings = () => {
- return (
-
-
-
- Customizing headings Default
-
-
-
-
- Use the included utility classes to recreate the small secondary heading text.
-
-
-
-
-
-
-
- Display heading Secondary text
-
-
-
-
-
-
- Display heading Secondary text
-
-
-
-
-
-
- Display heading Secondary text
-
-
-
-
-
-
- Display heading Secondary text
-
-
-
-
-
-
- Display heading Secondary text
-
-
-
-
-
-
- Display heading Secondary text
-
-
-
-
-
-
- )
-}
-export default CustomizingHeadings
diff --git a/src/views/ui-elements/typography/DescriptionList.js b/src/views/ui-elements/typography/DescriptionList.js
deleted file mode 100644
index 7ca338c..0000000
--- a/src/views/ui-elements/typography/DescriptionList.js
+++ /dev/null
@@ -1,57 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody, Row, Col } from 'reactstrap'
-
-const DescriptionList = () => {
- return (
-
-
-
- Description lists Horizontal
-
-
-
-
-
-
-
- Description lists
-
-
- A description list is perfect for defining terms.
-
-
-
-
-
-
- Euismod
-
-
- Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.
-
-
-
-
-
-
- Malesuada porta
-
-
- Etiam porta sem malesuada magna mollis euismod.
-
-
-
-
-
-
- Truncated term is truncated
-
-
- Aenean posuere, tortor sed cursus feugiat, nunc augue blandit nunc
-
-
-
-
-
- )
-}
-export default DescriptionList
diff --git a/src/views/ui-elements/typography/DescriptionListText.js b/src/views/ui-elements/typography/DescriptionListText.js
deleted file mode 100644
index 5b4a47c..0000000
--- a/src/views/ui-elements/typography/DescriptionListText.js
+++ /dev/null
@@ -1,77 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody, Row, Col, CardText } from 'reactstrap'
-
-const DescriptionListtext = () => {
- return (
-
-
-
- Description lists Text Alignment
-
-
-
-
-
- Description lists with right aligned text in <dt>
tag using .text-right
class.
-
-
-
-
- Description lists
-
-
- A description list is perfect for defining terms.
-
-
-
-
-
-
- Euismod
-
-
- Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.
-
-
-
-
-
-
- Malesuada porta
-
-
- Etiam porta sem malesuada magna mollis euismod.
-
-
-
-
-
-
- Truncated term is truncated
-
-
- Aenean posuere, tortor sed cursus feugiat, nunc augue blandit nunc
-
-
-
-
-
-
- Nesting
-
-
-
-
- Nested definition list
-
-
- Aenean posuere, tortor sed cursus feugiat, nunc augue blandit nunc.
-
-
-
-
-
-
-
- )
-}
-export default DescriptionListtext
diff --git a/src/views/ui-elements/typography/DescriptionListVertical.js b/src/views/ui-elements/typography/DescriptionListVertical.js
deleted file mode 100644
index c2ba776..0000000
--- a/src/views/ui-elements/typography/DescriptionListVertical.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody } from 'reactstrap'
-
-const DescriptionListVertical = () => {
- return (
-
-
-
- Description lists Vertical
-
-
-
-
-
- Description lists
- A description list is perfect for defining terms.
- Euismod
- Vestibulum id ligula porta felis euismod semper eget lacinia odio.
- Malesuada porta
- Etiam porta sem malesuada magna mollis euismod.
-
-
-
- )
-}
-export default DescriptionListVertical
diff --git a/src/views/ui-elements/typography/DisplayHeadings.js b/src/views/ui-elements/typography/DisplayHeadings.js
deleted file mode 100644
index cc08324..0000000
--- a/src/views/ui-elements/typography/DisplayHeadings.js
+++ /dev/null
@@ -1,44 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody, CardText, Table } from 'reactstrap'
-
-const DisplayHeadings = () => {
- return (
-
-
- Display Headings
-
-
-
-
- Traditional heading elements are designed to work best in the meat of your page content. When you need a
- heading to stand out, consider using a display-[1-4]
for larger, slightly more opinionated
- heading style.
-
-
-
-
-
-
- Display 1
-
-
-
-
- Display 2
-
-
-
-
- Display 3
-
-
-
-
- Display 4
-
-
-
-
-
- )
-}
-export default DisplayHeadings
diff --git a/src/views/ui-elements/typography/HTMLHeadings.js b/src/views/ui-elements/typography/HTMLHeadings.js
deleted file mode 100644
index e2c0e8f..0000000
--- a/src/views/ui-elements/typography/HTMLHeadings.js
+++ /dev/null
@@ -1,70 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody, CardText, Table } from 'reactstrap'
-
-const HTMLHeadings = () => {
- return (
-
-
-
- HTML headings Default
-
-
-
-
-
- All HTML headings,
- <h1>
- through
- <h6>
, are available. .h1
through .h6
classes are also available,
- for when you want to match the font styling of a heading.
-
-
-
-
-
- Preview
- Font Size
-
-
-
-
-
- H1 Heading
-
- 2rem
-
-
-
- H2 Heading
-
- 1.74rem
-
-
-
- H3 Heading
-
- 1.51rem
-
-
-
- H4 Heading
-
- 1.32rem
-
-
-
- H5 Heading
-
- 1.14rem
-
-
-
- H6 Heading
-
- 1rem
-
-
-
-
- )
-}
-export default HTMLHeadings
diff --git a/src/views/ui-elements/typography/HeadingColors.js b/src/views/ui-elements/typography/HeadingColors.js
deleted file mode 100644
index 0596431..0000000
--- a/src/views/ui-elements/typography/HeadingColors.js
+++ /dev/null
@@ -1,53 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody, CardText, Table } from 'reactstrap'
-
-const HeadingColors = () => {
- return (
-
-
- Heading colors
-
-
-
-
- Heading elements are also changed with different color options. Use class
- text-[primary/secondary/success/danger/info/warning]
class with heading elements.
-
-
-
-
-
-
- Display heading
-
-
-
-
- Display heading
-
-
-
-
- Display heading
-
-
-
-
- Display heading
-
-
-
-
- Display heading
-
-
-
-
- Display heading
-
-
-
-
-
- )
-}
-export default HeadingColors
diff --git a/src/views/ui-elements/typography/LightBoldHeadings.js b/src/views/ui-elements/typography/LightBoldHeadings.js
deleted file mode 100644
index db83537..0000000
--- a/src/views/ui-elements/typography/LightBoldHeadings.js
+++ /dev/null
@@ -1,77 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody, CardText, Table } from 'reactstrap'
-
-const LightBoldHeadings = () => {
- return (
-
-
- Light / Bold Headings
-
-
-
-
- All HTML headings are available with light and bold font-weight. Use .font-weight-normal
for
- light heading and .font-weight-bolderer
for bold headings along with heading tags or classes.
-
-
-
-
-
- Light headings
- Bold headings
-
-
-
-
-
- Heading 1
-
-
- Heading 1
-
-
-
-
- Heading 2
-
-
- Heading 2
-
-
-
-
- Heading 3
-
-
- Heading 3
-
-
-
-
- Heading 4
-
-
- Heading 4
-
-
-
-
- Heading 5
-
-
- Heading 5
-
-
-
-
- Heading 6
-
-
- Heading 6
-
-
-
-
-
- )
-}
-export default LightBoldHeadings
diff --git a/src/views/ui-elements/typography/ListIcons.js b/src/views/ui-elements/typography/ListIcons.js
deleted file mode 100644
index f4ecfdc..0000000
--- a/src/views/ui-elements/typography/ListIcons.js
+++ /dev/null
@@ -1,47 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody, CardText } from 'reactstrap'
-import { ArrowRight, ChevronRight } from 'react-feather'
-
-const ListIcons = () => {
- return (
-
-
- Lists icons
-
-
-
-
- Use .list-style-icons
class with <ul>
tag to create a list with icons.
-
-
-
-
- Facilisis in pretium nisl aliquet
-
-
-
- Nulla volutpat aliquam velit
-
-
-
- Phasellus iaculis neque
-
-
-
- Ac tristique libero volutpat at
-
-
-
-
-
- Faucibus porta lacus fringilla vel
-
-
-
- Aenean sit amet erat nunc
-
-
-
-
- )
-}
-export default ListIcons
diff --git a/src/views/ui-elements/typography/ListInline.js b/src/views/ui-elements/typography/ListInline.js
deleted file mode 100644
index 028fafa..0000000
--- a/src/views/ui-elements/typography/ListInline.js
+++ /dev/null
@@ -1,35 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody, CardText } from 'reactstrap'
-
-const ListInline = () => {
- return (
-
-
- Inline Lists
-
-
-
-
- To create a inline list use .list-inline
class with <ul>
tag and, class{' '}
- .list-inline-item
with <li>
tag.
-
- Use inline numbers, alphabet, icons etc... for ordered Inline List.
-
- Chocolate
- Cake
- Ice-Cream
-
-
- 1. Chocolate
- 2. Cake
- 3. Ice-Cream
-
-
- $ 250
- $ 110
- $ 890
-
-
-
- )
-}
-export default ListInline
diff --git a/src/views/ui-elements/typography/ListOrdered.js b/src/views/ui-elements/typography/ListOrdered.js
deleted file mode 100644
index 7fda880..0000000
--- a/src/views/ui-elements/typography/ListOrdered.js
+++ /dev/null
@@ -1,39 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody, CardText } from 'reactstrap'
-
-const ListOrdered = () => {
- return (
-
-
- Lists Ordered
-
-
-
-
- List of items in which the order does explicitly matter. Use <ol type="1|a|A|i|I">
, The type
- attribute specifies the kind of marker to use in the list.
-
-
- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
- Integer molestie lorem at massa
- Facilisis in pretium nisl aliquet
-
- Nulla volutpat aliquam velit
-
- Phasellus iaculis neque
- Purus sodales ultricies
- Vestibulum laoreet porttitor sem
- Ac tristique libero volutpat at
- Lorem ipsum dolor sit amet.
- consectetur adipisicing elit. At, quae?
-
-
- Faucibus porta lacus fringilla vel
- Aenean sit amet erat nunc
- Eget porttitor lorem
-
-
-
- )
-}
-export default ListOrdered
diff --git a/src/views/ui-elements/typography/ListUnordered.js b/src/views/ui-elements/typography/ListUnordered.js
deleted file mode 100644
index 112d186..0000000
--- a/src/views/ui-elements/typography/ListUnordered.js
+++ /dev/null
@@ -1,39 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody, CardText } from 'reactstrap'
-
-const ListUnordered = () => {
- return (
-
-
- Lists Unordered
-
-
-
-
- List of items in which the order does not explicitly matter. Use .list-style-circle
or{' '}
- .list-style-square
class in unordered list to add circle or square bullet points.
-
-
- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
- Integer molestie lorem at massa
- Facilisis in pretium nisl aliquet
-
- Nulla volutpat aliquam velit
-
- Phasellus iaculis neque
- Purus sodales ultricies
- Vestibulum laoreet porttitor sem
- Ac tristique libero volutpat at
- Lorem ipsum dolor sit amet.
- consectetur adipisicing elit. At, quae?
-
-
- Faucibus porta lacus fringilla vel
- Aenean sit amet erat nunc
- Eget porttitor lorem
-
-
-
- )
-}
-export default ListUnordered
diff --git a/src/views/ui-elements/typography/ListUnstyled.js b/src/views/ui-elements/typography/ListUnstyled.js
deleted file mode 100644
index 8ce9ff8..0000000
--- a/src/views/ui-elements/typography/ListUnstyled.js
+++ /dev/null
@@ -1,39 +0,0 @@
-import { Card, CardHeader, CardTitle, CardBody, CardText } from 'reactstrap'
-
-const ListUnstyled = () => {
- return (
-
-
- Lists Unstyled
-
-
-
-
- Use class .list-unstyled
for Lists Unstyled. It remove the default list-style
and
- left margin on list items (immediate children only).
- This only applies to immediate children list items , meaning you will need to add the class
- for any nested lists as well.
-
-
- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
- Integer molestie lorem at massa
- Facilisis in pretium nisl aliquet
-
- Nulla volutpat aliquam velit
-
- Phasellus iaculis neque
- Purus sodales ultricies
- Vestibulum laoreet porttitor sem
- Ac tristique libero volutpat at
-
-
- Faucibus porta lacus fringilla vel
- Aenean sit amet erat nunc
- Eget porttitor lorem
-
-
-
- )
-}
-export default ListUnstyled
diff --git a/src/views/ui-elements/typography/NamingSource.js b/src/views/ui-elements/typography/NamingSource.js
deleted file mode 100644
index 7044b1f..0000000
--- a/src/views/ui-elements/typography/NamingSource.js
+++ /dev/null
@@ -1,29 +0,0 @@
-import { Card, CardHeader, CardTitle, CardText, CardBody } from 'reactstrap'
-
-const NamingSource = () => {
- return (
-
-
- Naming a source
-
-
-
-
- Add a <footer className="blockquote-footer">
for identifying
- the source. Wrap the name of the source work in <cite>
.
-
-
-
- Being the richest man in the cemetery doesn't matter to me. Going to bed at night saying we've done
- something wonderful, that's what matters to me.
-
-
- Steve Jobs
- Entrepreneur
-
-
-
-
- )
-}
-export default NamingSource
diff --git a/src/views/ui-elements/typography/index.js b/src/views/ui-elements/typography/index.js
deleted file mode 100644
index af6ad88..0000000
--- a/src/views/ui-elements/typography/index.js
+++ /dev/null
@@ -1,114 +0,0 @@
-import { Fragment } from 'react'
-import { Row, Col } from 'reactstrap'
-import Breadcrumbs from '@components/breadcrumbs'
-import HTMLHeadings from './HTMLHeadings'
-import LightBoldHeadings from './LightBoldHeadings'
-import CustomizingHeadings from './CustomizingHeadings'
-import HeadingColors from './HeadingColors'
-import DisplayHeadings from './DisplayHeadings'
-import BlockquoteDefault from './BlockquoteDefault'
-import NamingSource from './NamingSource'
-import BlockquoteStyling from './BlockquoteStyling'
-import BlockquoteAvatar from './BlockquotesAvatar'
-import ListUnstyled from './ListUnstyled'
-import ListUnordered from './ListUnordered'
-import ListOrdered from './ListOrdered'
-import ListIcons from './ListIcons'
-import ListInline from './ListInline'
-import DescriptionList from './DescriptionList'
-import DescriptionListVertical from './DescriptionListVertical'
-import DescriptionListText from './DescriptionListText'
-
-const Typography = () => {
- return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
BlockQuotes
-
- For quoting blocks of content from another source within your document. Wrap{' '}
- <blockquote className="blockquote">
around any HTML as the quote.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Lists
-
- All lists - <ul>
, <ol>
, and <dl>
- have their
- margin-top removed and a margin-bottom: 1rem
. Nested lists have no margin-bottom
- .
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Description list alignment
-
- Align terms and descriptions horizontally by using our grid system’s predefined classes (or semantic
- mixins). For longer terms, you can optionally add a .text-truncate
class to truncate the text
- with an ellipsis.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- )
-}
-export default Typography