Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 2909 Rev 2911
Línea 114... Línea 114...
114
        sizes={sizes?.cover}
114
        sizes={sizes?.cover}
115
        edit={isEdit}
115
        edit={isEdit}
116
        editUrl={`/profile/my-profiles/cover/${userProfileId}/operation/upload`}
116
        editUrl={`/profile/my-profiles/cover/${userProfileId}/operation/upload`}
117
      />
117
      />
118
      <Widget.Body>
118
      <Widget.Body>
119
        <Row>
-
 
120
          <Avatar
119
        <Avatar
121
            src={image}
120
          src={image}
122
            alt={fullName}
121
          alt={fullName}
123
            styles={{
122
          styles={{
124
              width: { xs: '100px', lg: '150px' },
123
            width: { xs: '100px', lg: '150px' },
125
              height: { xs: '100px', lg: '150px' },
124
            height: { xs: '100px', lg: '150px' },
126
              mt: { xs: '-50px', lg: '-75px' },
125
            mt: { xs: '-50px', lg: '-75px' },
127
              border: '4px solid #fff',
126
            border: '4px solid #fff',
128
              backgroundColor: '#c9ced4',
127
            backgroundColor: '#c9ced4',
129
              cursor: isEdit ? 'pointer' : 'default'
128
            cursor: isEdit ? 'pointer' : 'default'
130
            }}
129
          }}
131
            url={`/profile/my-profiles/image/${userProfileId}/operation/upload`}
-
 
132
            edit
-
 
133
          />
130
        />
134
 
-
 
135
          {isEdit && (
-
 
136
            <IconButton onClick={() => setModalToShow('overview')}>
-
 
137
              <Edit />
-
 
138
            </IconButton>
-
 
139
          )}
-
 
140
        </Row>
-
 
Línea 141... Línea 131...
141
 
131
 
142
        <Typography variant='h2'>{fullName}</Typography>
132
        <Typography variant='h2'>{fullName}</Typography>
Línea 143... Línea 133...
143
        <Typography>{parse(settedOverview)}</Typography>
133
        <Typography>{parse(settedOverview)}</Typography>
Línea 151... Línea 141...
151
        </Row>
141
        </Row>
Línea 152... Línea 142...
152
 
142
 
153
        <Row>
143
        <Row>
154
          {showConnections && (
144
          {showConnections && (
-
 
145
            <Link to='/connection/my-connections'>
155
            <Link to='/connection/my-connections'>
146
              <Typography variant='body2'>
-
 
147
                {`${totalConnections} ${labels.connections}`}
156
              {`${totalConnections} ${labels.connections}`}
148
              </Typography>
157
            </Link>
149
            </Link>
158
          )}
150
          )}
159
          {showFollowing && (
151
          {showFollowing && (
-
 
152
            <Link onClick={(e) => e.preventDefault()}>
160
            <Link onClick={(e) => e.preventDefault()}>
153
              <Typography variant='body2'>
-
 
154
                {`${following} ${labels.following}`}
161
              {`${following} ${labels.following}`}
155
              </Typography>
162
            </Link>
156
            </Link>
163
          )}
157
          )}
Línea 164... Línea 158...
164
        </Row>
158
        </Row>