Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6736 | Rev 6886 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6736 Rev 6738
Línea 12... Línea 12...
12
import AddProfileModal from '../../components/modals/AddProfileModal'
12
import AddProfileModal from '../../components/modals/AddProfileModal'
13
import LoaderContainer from '../../components/UI/LoaderContainer'
13
import LoaderContainer from '../../components/UI/LoaderContainer'
Línea 14... Línea 14...
14
 
14
 
15
const MyProfilesPage = () => {
15
const MyProfilesPage = () => {
16
  const [isShowAddModal, setIsShowAddModal] = useState(false)
-
 
17
  const [loading, setLoading] = useState(false)
16
  const [isShowAddModal, setIsShowAddModal] = useState(false)
-
 
17
  const [myProfiles, setMyProfiles] = useState([])
18
  const [myProfiles, setMyProfiles] = useState([])
18
  const [loading, setLoading] = useState(false)
-
 
19
  const [search, setSearch] = useState('')
19
  const [search, setSearch] = useState('')
20
 
20
  const labels = useSelector(({ intl }) => intl.labels)
21
  const labels = useSelector(({ intl }) => intl.labels)
Línea 21... Línea 22...
21
  const dispatch = useDispatch()
22
  const dispatch = useDispatch()
22
 
23
 
Línea 66... Línea 67...
66
          <Spinner />
67
          <Spinner />
67
        </LoaderContainer>
68
        </LoaderContainer>
68
      ) : (
69
      ) : (
69
        <ul className="companies-list">
70
        <ul className="companies-list">
70
          {myProfiles.length ? (
71
          {myProfiles.length ? (
71
            myProfiles.map(({ id, link_edit, link_delete, ...rest }) => (
72
            myProfiles.map(({ id, ...rest }) => (
72
              <ProfileItem
-
 
73
                key={id}
-
 
74
                {...rest}
-
 
75
                link_edit={link_edit}
-
 
76
                link_delete={link_delete}
-
 
77
                fetchCallback={getMyProfiles}
73
              <ProfileItem key={id} {...rest} fetchCallback={getMyProfiles} />
78
              />
-
 
79
            ))
74
            ))
80
          ) : (
75
          ) : (
81
            <EmptySection
76
            <EmptySection
82
              align="left"
77
              align="left"
83
              message={labels.datatable_szerorecords}
78
              message={labels.datatable_szerorecords}