Compare commits

...

5 Commits

Author SHA1 Message Date
llaniau c73b08c1aa referencement 2020-09-07 18:44:54 +02:00
llaniau b6e4347abb Mise a jour Borganisation cliente 2020-09-07 15:58:55 +02:00
llaniau adb9d2ccde Changement de la page Help pour intéger les pages comment faire un cv video 2020-09-03 17:35:11 +02:00
llaniau edd7f705ab Cv video detachement 2020-09-02 18:39:08 +02:00
llaniau ea372ba0f2 AccountEtape3 modif du lien Front 2020-09-02 08:53:53 +02:00
19 changed files with 94 additions and 43 deletions
+2
View File
@@ -6,6 +6,7 @@ import AssignmentIcon from '@material-ui/icons/Assignment';
import RoomIcon from '@material-ui/icons/Room';
import LocationOnIcon from '@material-ui/icons/LocationOn';
import BusinessCenterIcon from '@material-ui/icons/BusinessCenter';
import Business from '@material-ui/icons/Business';
import Typography from '@material-ui/core/Typography';
const variantIcon = {
@@ -13,6 +14,7 @@ const variantIcon = {
room: RoomIcon,
location_on: LocationOnIcon,
business_center: BusinessCenterIcon,
business: Business,
};
const styles = theme => ({
@@ -6,12 +6,14 @@ import RoomIcon from '@material-ui/icons/Room';
import LocationOnIcon from '@material-ui/icons/LocationOn';
import BusinessCenterIcon from '@material-ui/icons/BusinessCenter';
import Typography from '@material-ui/core/Typography';
import Business from '@material-ui/icons/Business';
const variantIcon = {
assignment: AssignmentIcon,
room: RoomIcon,
location_on: LocationOnIcon,
business_center: BusinessCenterIcon,
business: Business,
};
const styles = theme => ({
+1 -1
View File
@@ -41,7 +41,7 @@ const styles = theme => ({
},
},
textFieldSmall: {
width: '32%',
width: '48%',
'&:disabled': {
color: theme.palette.secondary.dark,
},
@@ -253,8 +253,8 @@ const AccountProfile = props => {
variant="body1">
<MailIcon className={classes.menuButton}/> : {user.email}<br/>
<PhoneIcon className={classes.menuButton}/> : {user.phone}<br/>
<LinkedInIcon className={classes.menuButton}/> : {(user.linkedin && user.linkedin !='' && user.linkedin != 'null') ? <a href={user.linkedin} target="_blank">{user.linkedin}</a> : 'Non renseigné'}<br/>
<PublicIcon className={classes.menuButton}/> : {(user.website && user.website !='' && user.website != 'null') ? <a href={user.website} target="_blank">{user.website}</a> : 'Non renseigné'}
<LinkedInIcon className={classes.menuButton}/> : {(user.linkedin && user.linkedin !='' && user.linkedin != 'null') ? <a href={user.linkedin} target="_blank">Lien sur mon linkendIn</a> : 'Non renseigné'}<br/>
<PublicIcon className={classes.menuButton}/> : {(user.website && user.website !='' && user.website != 'null') ? <a href={user.website} target="_blank">Lien sur mon site</a> : 'Non renseigné'}
</Typography>
<Typography className={classes.dateText} color="textSecondary" variant="body1"></Typography>
</div>
+9 -8
View File
@@ -157,7 +157,7 @@ const styles = theme => ({
objectFit: 'contain',
},
title: {
fontSize: '1em',
fontSize: '1.3em',
fontWeight: '500',
[theme.breakpoints.up('md')]: {
paddingTop: theme.spacing(2),
@@ -165,7 +165,7 @@ const styles = theme => ({
},
offreTitle: {
[theme.breakpoints.up('md')]: {
fontSize: '1.2em',
fontSize: '1.3em',
fontWeight: '600',
},
},
@@ -192,7 +192,7 @@ const styles = theme => ({
textAlign: 'center',
},
companyName: {
fontSize: '0.9em',
fontSize: '1.3em',
fontWeight: '300',
[theme.breakpoints.up('md')]: {
fontSize: '1em',
@@ -211,18 +211,18 @@ const styles = theme => ({
},
iconTextIcon: {
color: theme.palette.offerlistitem.icon,
fontSize: '1em',
fontSize: '1.3em',
},
iconTextText: {
fontWeight: 'lighter',
color: theme.palette.offerlistitem.text,
fontSize: '0.7em',
fontSize: '1em',
paddingLeft: theme.spacing(1),
},
iconTextTextDesktop: {
fontWeight: 'lighter',
color: theme.palette.offerlistitem.text,
fontSize: '0.7em',
fontSize: '1em',
paddingLeft: theme.spacing(1),
width: '100%',
},
@@ -340,7 +340,7 @@ function OffreDetail(props) {
</Typography>
<a href={entrepriseLink} >
<Typography gutterBottom variant="subtitle1" className={classes.companyName}>
{offre.beneficiaire ? offre.beneficiaire : offre.company.brand_name ? offre.company.brand_name : ""}
{offre.company.brand_name ? offre.company.brand_name : ""}
</Typography>
</a>
{offre.is_promoted && (
@@ -401,6 +401,7 @@ function OffreDetail(props) {
<section className={classes.IconTextContainerDesktop}>
<IconTextInline classes={{ icon: classes.iconTextIcon, text: classes.iconTextText }} variant="assignment" text={offre.extra.contract_type} />
<IconTextInline classes={{ icon: classes.iconTextIcon, text: classes.iconTextText }} variant="location_on" text={offre.location.gmap_address.formatted_address} />
{offre.beneficiaire && (<IconTextInline classes={{ icon: classes.iconTextIcon, text: classes.iconTextText }} variant="business" text={offre.beneficiaire} /> )}
</section>
</Hidden>
<SimpleCollapse>
@@ -448,7 +449,7 @@ function OffreDetail(props) {
<a href={entrepriseLink}>
<div className={classes.discoverContainerImage}>
<img src={isWidthUp('sm', props.width) ? imgUrlDesktop : imgUrl} alt="company" />
<img src={isWidthUp('sm', props.width) ? imgUrlDesktop : imgUrl} alt={offre.company.brand_name && offre.company.brand_name} />
<KeyboardArrowleftIcon className={classes.iconPlay} />
</div>
</a>
+10 -8
View File
@@ -53,12 +53,12 @@ const styles = theme => ({
width: '75%',
},
jobTitle: {
fontSize: '1em',
fontSize: '1.2em',
fontWeight: 'bold',
color: theme.palette.offerlistitem.title,
},
companyTitle: {
fontSize: '0.8em',
fontSize: '1.2em',
fontWeight: '300',
color: theme.palette.offerlistitem.title,
},
@@ -96,11 +96,11 @@ const styles = theme => ({
},
iconTextIcon: {
color: theme.palette.offerlistitem.icon,
fontSize: '0.8em',
fontSize: '1.2em',
},
iconTextText: {
color: theme.palette.offerlistitem.text,
fontSize: '0.6em',
fontSize: '1em',
paddingLeft: theme.spacing(1),
},
chip: {
@@ -149,9 +149,9 @@ class OffreRowComponent extends React.Component {
<Typography
variant="headline"
variant="h6"
component="h4"
component="h3"
className={classes.companyTitle}>
{rowData.beneficiaire ? "Pour le compte de "+rowData.beneficiaire : companyR.brand_name ? companyR.brand_name : "Non renseigné"}
{companyR.brand_name ? companyR.brand_name : "Non renseigné"}
</Typography>
<div>
{rowData.is_promoted && (
@@ -160,8 +160,10 @@ class OffreRowComponent extends React.Component {
{!rowData.is_promoted && (
<Fragment>
<IconText classes={{ root: classes.iconText, icon: classes.iconTextIcon, text: classes.iconTextText }} variant="location_on" text={rowData.extra.contract_type} />
<IconText classes={{ root: classes.iconText, icon: classes.iconTextIcon, text: classes.iconTextText }} variant="business_center" text={rowData.location.gmap_address.formatted_address} />
<IconText classes={{ root: classes.iconText, icon: classes.iconTextIcon, text: classes.iconTextText }} variant="business_center" text={rowData.extra.contract_type} />
<IconText classes={{ root: classes.iconText, icon: classes.iconTextIcon, text: classes.iconTextText }} variant="location_on" text={rowData.location.gmap_address.formatted_address} />
{rowData.beneficiaire ? <IconText classes={{ root: classes.iconText, icon: classes.iconTextIcon, text: classes.iconTextText }} variant="business" text={rowData.beneficiaire} /> : ""}
</Fragment>
)}
+1 -1
View File
@@ -113,7 +113,7 @@ class Tile extends React.Component {
/>
<KeyboardArrowleftIcon className={classes.iconPlay} />
<div className={classes.logoContainer}>
<Avatar className={classes.logo} src={logoUrl} alt="company"/>
<Avatar className={classes.logo} src={logoUrl} alt={rowData.title}/>
</div>
{ children }
</CardContent>
+8 -4
View File
@@ -10,11 +10,11 @@ const styles = theme => ({
flexDirection: 'column',
justifyContent: 'space-between',
position: 'absolute',
top: '51%',
top: '44%',
width: '100%',
},
companyTitle: {
fontSize: '0.8em',
fontSize: '1em',
fontWeight: '100',
padding: theme.spacing(0, 2),
marginTop: '4vh',
@@ -24,7 +24,7 @@ const styles = theme => ({
},
},
jobTitle: {
fontSize: '1em',
fontSize: '1.2em',
padding: theme.spacing(0, 2),
minHeight: '8vh',
[theme.breakpoints.up('lg')]: {
@@ -59,7 +59,7 @@ class TileOffre extends React.Component {
component="h4"
align="center"
className={classes.companyTitle}>
{tile.company.brand_name && tile.company.brand_name} {tile.beneficiaire && " / "+tile.beneficiaire }
{tile.company.brand_name && tile.company.brand_name}
</Typography>
<Typography
gutterBottom
@@ -82,6 +82,10 @@ class TileOffre extends React.Component {
{tile.extra && tile.extra.contract_type &&
<IconText classes={{ root: classes.rootIconText }} variant="assignment" text={tile.extra.contract_type} />
}
{tile.beneficiaire &&
<IconText classes={{ root: classes.rootIconText }} variant="business" text={tile.beneficiaire} />
}
</section>
</Fragment>
);
+3 -3
View File
@@ -40,9 +40,9 @@ module.exports = withPlugins(
}],
[{
publicRuntimeConfig: {
symphonyUrl: 'https://www.talentstube.com',
symphonyUrl: 'https://recruteur.talentstube.com',
blogUrl: 'https://blog.talentstube.com',
frontServerUrl: 'https://app.talentstube.com',
frontServerUrl: 'https://www.talentstube.com',
adListDefaultUrl: '/statique/images/default/default_picture_company.svg',
cachedMediaUrl: '/media/cache/profile_thumb/uploads/img/',
postedContentUrl: '/uploads/img/',
@@ -50,7 +50,7 @@ module.exports = withPlugins(
ReCAPTCHA: {
"siteKey": "6LdyqLwUAAAAADKI5uC7d5W9VqVgzd8VEmMU2Yi-"
},
applicationServerPublicKey: 'BC9XGBLNGm0RWczR4IjEPWQ9_P1BmlvT-oaVgr_GJTI2OZtT85olmi3xzQhgZF4-Bi0rPafpa8vqt5pudQ4Na6w'
applicationServerPublicKey: 'BNFyiyPiLH97Dgc0m1vXluUNaCN6y3Hkgd4YcqS2lVkP8my3tq2D5gM5g7cY6R4VxC7GljSzkLRu+k+oO+2TtjU='
}
}]
],
+1
View File
@@ -147,6 +147,7 @@ class Candidature extends React.Component {
<LayoutCandidature>
<Head>
<title key="title">Candidature</title>
<meta name="robots" content="noindex, nofollow"></meta>
</Head>
<Fragment>
<div className={classes.container}>
+1
View File
@@ -45,6 +45,7 @@ class Candidatures extends React.Component {
<LayoutGrid backLink="/">
<Head>
<title key="title">Candidatures</title>
<meta name="robots" content="noindex, nofollow"></meta>
</Head>
{/* TODO */}
+1 -1
View File
@@ -31,7 +31,7 @@ class Conseils extends React.Component {
<title>Quelques conseils !</title>
<meta name="description" content="Quelques conseils !" />
<meta key="robots" name="robots" content="noindex, nofollow"></meta>
<link rel="canonical" href="https://app.talentstube.com" />
</Head>
<section className={classes.container}>
<VideoVimeo videoId='356411947' autoplay='1' />
+32 -3
View File
@@ -8,8 +8,8 @@ import { withStyles } from '@material-ui/core/styles';
import Layout from "../components/templates/Layout"
import Footer from '../components/organisms/Footer';
import Link from 'next/link';
import Head from 'next/head'
import VideoVimeo from './../components/atoms/VideoVimeo'
import Head from 'next/head';
import VideoVimeo from './../components/atoms/VideoVimeo';
const styles = theme => ({
root: {
@@ -102,6 +102,7 @@ function Help(props) {
<Layout>
<Head>
<title key="title">Recrutement vidéo : fonctionnement Talents Tube</title>
<meta key="robots" name="robots" content="noindex, nofollow"></meta>
</Head>
<section className={classes.root}>
<Typography gutterBottom component="h1"
@@ -128,7 +129,35 @@ function Help(props) {
gutterBottom>
Suivez nos conseils pour postuler simplement aux offres demploi. La vidéo de motivation vous permet de dévoiler votre personnalité, vos compétences, votre parcours, vos valeurs, vos soft-skills, votre ambition,…. et bien plus encore.
</Typography>
<Typography gutterBottom component="h2"
className={classes.subTitle}>
Comment réussir votre CV vidéo
</Typography>
<Typography
className={classes.text}
gutterBottom>
Suivez ce <a href="https://blog.talentstube.com/faire-cv-video" target="_blank" >lien</a>
</Typography>
<Typography gutterBottom component="h2"
className={classes.subTitle}>
Accompagnement à la création d'un CV vidéo professionnel
</Typography>
<Typography
className={classes.text}
gutterBottom>
Suivez ce <a href="https://blog.talentstube.com/accompagnement-cv-video" target="_blank" >lien</a>
</Typography>
<Typography gutterBottom component="h2"
className={classes.subTitle}>
Pourquoi faire un CV vidéo ?
</Typography>
<Typography
className={classes.text}
gutterBottom>
Suivez ce <a href="https://blog.talentstube.com/faire-cv-video" target="_blank" >lien</a>
</Typography>
</section>
+14 -7
View File
@@ -13,6 +13,8 @@ import { fetchAdsRequest, togglePromotedFilterRequest} from '../actions/ads'
import { AdsSelector } from '../reducers/ads'
import { TextField } from '@material-ui/core';
import Head from 'next/head'
import OgHead from '../components/atoms/OgHead';
import getConfig from 'next/config'
const styles = theme => ({
@@ -84,15 +86,20 @@ class Offres extends React.Component {
const { classes } = this.props;
const countColor = this.props.promotedFilter ? classes.provided : classes.primary;
const btnClass = this.props.promotedFilter ? classes.buttonDefault : classes.buttonProvided;
const { publicRuntimeConfig } = getConfig();
const socialShareUrl = typeof window !== 'undefined' ? window.location
: publicRuntimeConfig.frontServerUrl + `/Offres`;
const DefaultUrl = publicRuntimeConfig.symphonyUrl + "/img/default_picture_svg"
const imgUrl = DefaultUrl ;
return (
<LayoutGrid backLink="/">
<Head>
<title key="title">Offres demploi en vidéo Talents Tube</title>
<meta name="description" content="Les offres d'emploi en vidéo." />
<meta key="robots" name="robots" content="noindex, nofollow"></meta>
</Head>
<OgHead seo_title="Offres demploi en vidéo Talents Tube"
seo_description="Les offres d'emploi en vidéo."
seo_url={socialShareUrl}
image={imgUrl}
seo_key="Recrutement, video"
></OgHead>
<Typography gutterBottom component="h1"
className={classes.title}>
+1 -1
View File
@@ -282,7 +282,7 @@ class Reponse extends React.Component {
<title>Candidature vidéo</title>
<meta name="description" content="Talent's tube, postulez en video." />
<meta key="robots" name="robots" content="noindex, nofollow"></meta>
<link rel="canonical" href="https://app.talentstube.com" />
</Head>
{/* https://codesandbox.io/s/ii0us */}
{ loading ?
+1
View File
@@ -107,6 +107,7 @@ class ResetPassword extends Component {
<Layout>
<Head>
<title key="title">Reset password</title>
<meta key="robots" name="robots" content="noindex, nofollow"></meta>
</Head>
<div className={classes.container}>
<Typography
+1
View File
@@ -30,6 +30,7 @@ export default function HorizontalNonLinearStepper() {
<Layout>
<Head>
<title key="title">Profile Talents Tube</title>
<meta key="robots" name="robots" content="noindex, nofollow"></meta>
</Head>
<div >
<AccountProfile />
+1 -1
View File
@@ -16,7 +16,7 @@ exports.sendConfirmationEmail = function (nom, prenom, tokenUrl, mail) {
const tranport = setup();
const email = {
from: process.env.EMAIL_FROM,
to: process.env.NODE_ENV === 'production'? mail : 'thomas.berrod@e-declic.com',
to: process.env.NODE_ENV === 'production'? mail : 'l.laniau@talentstube.com',
subject: `Bienvenue ${mail} 🔑`,
text: `
Bonjour ${prenom} ${nom},
+3 -3
View File
@@ -4,14 +4,14 @@ const formatDate = require("./formatDate");
// ROBOTS.txt
// const robotsTxt = `User-agent: *
// Sitemap: https://app.talentstube.com/sitemap_local.xml
// Sitemap: https://www.talentstube.com/sitemap_local.xml
// Disallow:`;
const robotsTxt = `# crawl setup
User-agent: *
Disallow: /Login*
# Sitemap
Sitemap: https://app.talentstube.com/sitemap_local.xml`
Sitemap: https://www.talentstube.com/sitemap_local.xml`
fs.writeFileSync("out/robots.txt", robotsTxt);
console.log("robots.txt saved!");
@@ -23,7 +23,7 @@ const sitemapXml = `<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
${Object.keys(pathsObj).map(
path => `<url>
<loc>https://app.talentstube.com${path}</loc>
<loc>https://www.talentstube.com${path}</loc>
<lastmod>${
pathsObj[path].lastModified
? formatDate(new Date(pathsObj[path].lastModified))