Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 7325 Rev 7326
Línea 1... Línea 1...
1
import React, { useEffect, useRef, useState } from 'react'
1
import React, { useEffect, useRef, useState } from 'react'
2
import { axios } from '../../../utils'
2
import { axios } from '../../../utils'
3
import { useSelector } from 'react-redux'
3
import { useSelector } from 'react-redux'
-
 
4
import { Avatar, IconButton } from '@mui/material'
4
import styled from 'styled-components'
5
import styled from 'styled-components'
-
 
6
import Add from '@mui/icons-material/Add'
-
 
7
import ArrowBackIos from '@mui/icons-material/ArrowBackIos'
-
 
8
import PersonRemoveIcon from '@mui/icons-material/PersonRemove'
Línea 5... Línea 9...
5
 
9
 
6
import TextBox from './TextBox'
10
import TextBox from './TextBox'
7
import ChatList from './ChatList'
11
import ChatList from './ChatList'
8
import EmptySection from '../../UI/EmptySection'
12
import EmptySection from '../../UI/EmptySection'
9
import ConfirmModal from '../../modals/ConfirmModal'
13
import ConfirmModal from '../../modals/ConfirmModal'
10
import ConferenceModal from '../../modals/ConferenceModal'
-
 
11
import { Avatar, IconButton } from '@mui/material'
-
 
12
import { Add, ArrowBackIos } from '@mui/icons-material'
14
import ConferenceModal from '../../modals/ConferenceModal'
Línea 13... Línea 15...
13
import SearchInput from '../../UI/SearchInput'
15
import SearchInput from '../../UI/SearchInput'
14
 
16
 
15
const StyledShowOptions = styled.div`
17
const StyledShowOptions = styled.div`
Línea 308... Línea 310...
308
              onClick={() => {
310
              onClick={() => {
309
                handleConfirmModalShow()
311
                handleConfirmModalShow()
310
                modalActionUrl.current = entity?.url_leave
312
                modalActionUrl.current = entity?.url_leave
311
              }}
313
              }}
312
            >
314
            >
313
              <i className="fa fa-user-times"></i>
315
              <PersonRemoveIcon />
314
              Dejar grupo
316
              Dejar grupo
315
            </button>
317
            </button>
316
          </li>
318
          </li>
317
        )}
319
        )}
318
      </ul>
320
      </ul>