Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4536 Rev 4537
Línea 2... Línea 2...
2
import React, { useEffect, useState } from 'react'
2
import React, { useEffect, useState } from 'react'
3
import FeedSection from '../../../../../dashboard/templates/linkedin/Feed/FeedSection';
3
import FeedSection from '../../../../../dashboard/templates/linkedin/Feed/FeedSection';
4
import GroupInfo from '../../../../../group/view/templates/linkedin/components/GroupInfo'
4
import GroupInfo from '../../../../../group/view/templates/linkedin/components/GroupInfo'
5
import { setTimelineUrl } from '../../../../../redux/feed/feed.actions';
5
import { setTimelineUrl } from '../../../../../redux/feed/feed.actions';
6
import { axios } from '../../../../../utils';
6
import { axios } from '../../../../../utils';
-
 
7
import AboutCompany from '../components/AboutCompany';
Línea 7... Línea 8...
7
 
8
 
Línea 8... Línea 9...
8
const View = ({ backendVars }) => {
9
const View = ({ backendVars }) => {
9
 
10
 
Línea 46... Línea 47...
46
                        type='company'
47
                        type='company'
47
                    />
48
                    />
48
                </div>
49
                </div>
49
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
50
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
50
                    {!isFollower
51
                    {!isFollower
51
                        ? <h1>Información</h1>
52
                        ? <AboutCompany {...backendVars} />
52
                        : <FeedSection
53
                        : <FeedSection
53
                            routeTimeline={backendVars.timeline}
54
                            routeTimeline={backendVars.timeline}
54
                            backendVars={{
55
                            backendVars={{
55
                                ...backendVars,
56
                                ...backendVars,
56
                                image: `/storage/type/company/code/${backendVars.groupId}/${backendVars.image ? `filename/${backendVars.image}` : ""}`
57
                                image: `/storage/type/company/code/${backendVars.companyId}/${backendVars.image ? `filename/${backendVars.image}` : ""}`
57
                            }}
58
                            }}
58
                        />
59
                        />
59
                    }
60
                    }
60
                </div>
61
                </div>
61
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
62
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
62
 
-
 
-
 
63
                    <AboutCompany {...backendVars} />
63
                </div>
64
                </div>
64
            </div>
65
            </div>
65
        </main>
66
        </main>
66
    )
67
    )
67
}
68
}