Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync #74

Merged
merged 4 commits into from
Jan 21, 2025
Merged

sync #74

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions components/Layout/Footer/Footer.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@
<div class='md:grid {{footerContainerClasses}}'>
{% if withNewsletter %}
<div class='Footer-newsletter mb-[50px] md:mb-0 md:pt-[50px] md:pl-[50px] lg:pt-[100px]'>
<div class='font-semibold paragraph-1'>Newsletter</div>
<div class='font-semibold paragraph-1'>{{'Newsletter'|trans}}</div>
<div class='mb-4 paragraph-5'>Suivez nos dernières actualités & promotions</div>
{% include '@components/Molecules/Button/Button.html.twig' with {text: 'Je m\'inscris', type: 'primary', isFill: true, classes: "Button--large w-full md:w-auto"} %}
</div>
{% endif %}
<div class='Footer-store-infos mb-[30px] md:py-[50px] md:pl-[40px] md:mb-0 lg:pt-[100px] lg:pb-[90px] {{footerStoreInfosClasses}}'>
<div class='mb-1 font-semibold paragraph-1'>Nom de l'entreprise</div>
<div class='mb-1 font-semibold paragraph-1'>{{attr('config', 'store_name')}}</div>
<div class='Footer-store-infos-address'>
<div class='paragraph-5'>Adresse première ligne <br> Complément d'adresse <br> 00000 Ville-sur-Fleuve <br> PAYS</div>
<div class='my-4 paragraph-5'>Tel. +33 00 00 00 00 00</div>
<div class='paragraph-5'>{{attr('config', 'store_address1')}} <br> {{attr('config', 'store_address2')}} <br> {{attr('config', 'store_zipcode')}} {{attr('config', 'store_city')}} <br> {{attr('config', 'store_country')}}</div>
<div class='my-4 paragraph-5'>Tel. {{attr('config', 'store_phone')}}</div>
</div>
{% include '@components/Molecules/Button/Button.html.twig' with {text: 'Contactez nous', type: 'primary', icon_right: "email", isFill: true, classes: "w-full md:w-auto Button--secondary Button--large"} %}
{% include '@components/Molecules/Button/Button.html.twig' with {href:"/contact", text: 'Contact Us'|trans, type: 'primary', icon_right: "email", isFill: true, classes: "w-full md:w-auto Button--secondary Button--large"} %}
</div>
<ul class='lg:pt-[100px] {{footerLinksClasses}}'>
{% set footerLinkClass = 'underline hover:no-underline focus:no-underline hover:opacity-75 focus:opacity-75' %}
Expand Down Expand Up @@ -60,6 +60,6 @@
</div>
</div>

<div class='text-grey indication indication-small'>© OpenStudio - {{ 'now' | date('Y') }}</div>
<div class='text-grey indication indication-small'>© <a href="https://www.openstudio.fr/">OpenStudio</a> - {{ 'now' | date('Y') }}</div>
</div>
</footer>
8 changes: 5 additions & 3 deletions components/Molecules/Fields/FieldInput/FieldInput.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{% set unit = unit|default(null) %}
{% set verificationCode = verificationCode|default(false) %}

{% if error %}
{% if errors %}
{% set classes = classes ~ ' FieldInput--error' %}
{% endif %}
{% if success %}
Expand Down Expand Up @@ -80,7 +80,9 @@
</div>
{% endif %}
</div>
{% if error %}
<span class='FieldInput-error'>{{ error }}</span>
{% if errors %}
{% for error in errors %}
<span class='FieldInput-error'>{{ error }}</span>
{% endfor %}
{% endif %}
</div>
12 changes: 12 additions & 0 deletions components/Molecules/Fields/FieldInput/fieldInput.css
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,15 @@
}
}
}

.FieldInput + .FieldInput {
@apply mt-6;
}

[class*='gap-'] > .FieldInput + .FieldInput {
margin-top: inherit;
}

.FieldInput + .SnackBar--error {
@apply mt-3 mb-6;
}
5 changes: 5 additions & 0 deletions components/Molecules/Fields/FieldTextArea/FieldTextArea.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.FieldInput--textArea {
.FieldInput-input {
min-height: 200px;
}
}
51 changes: 51 additions & 0 deletions components/Molecules/Fields/FieldTextArea/FieldTextArea.html.twig
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{% set classes = classes|default('') %}
{% set success = success|default(false) %}
{% set size = size|default(false) %}
{% set disabled = disabled|default(false) %}
{% set optional = optional|default(false) %}
{% set tooltip = tooltip|default(false) %}
{% set name = name|default('') %}
{% set label = label|default('') %}
{% set value = value|default(null) %}
{% set placeholder = placeholder|default(null) %}
{% set button = button|default(null) %}
{% set errors = errors|default(null) %}


{% if errors %}
{% set classes = classes ~ ' FieldInput--error' %}
{% endif %}
{% if success %}
{% set classes = classes ~ ' FieldInput--success' %}
{% endif %}


<div class='FieldInput FieldInput--textArea{{ classes }}' {% if disabled %} disabled {% endif %}>
<div class='FieldInput-header'>
<label for='{{ name }}' class='FieldInput-label'>
{{ label }}
{% if optional and label %}
({{'optional' | trans}})
{% endif %}
</label>
{% if tooltip %}
{% include '../../Tooltip/Tooltip.html.twig' with {tooltip: tooltip, position: 'bottom'} %}
{% endif %}
</div>
<div class='FieldInput-blockInput'>
<textarea
class='FieldInput-input'
name='{{ name }}'
id='{{ name }}'
{% if value %} value='{{ value }}' {% endif %}
{% if not optional %} required {% endif %}
{% if placeholder %} placeholder='{{ placeholder }}{% if optional and not label %} ({{'optional' | trans}}){% endif %}' {% endif %}
></textarea>
</div>

{% if errors %}
{% for error in errors %}
<span class='FieldInput-error'>{{ error }}</span>
{% endfor %}
{% endif %}
</div>
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"thelia/thelia-blocks-module": "dev-twig",
"thelia/twig-engine-module": "dev-twig",
"thelia/header-highlights-module": "dev-main",
"twig/extra-bundle": "^3.17"
"twig/extra-bundle": "^3.17",
"twig/intl-extra": "^3.17"
},
"autoload": {
"psr-4": {
Expand Down
13 changes: 13 additions & 0 deletions contact-success.html.twig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{% extends 'contact.html.twig' %}

{% block contactFormTitle %}
<div class="my-12 mb-12 text-center">
<h2 class="mb-4 h2">{{ 'Thanks !' | trans }}</h2>
</div>
{% endblock %}

{% block contactForm %}
<div class="my-12 mb-12 text-center">
<p class="text-lg font-medium">{{'Thanks for your message, we will contact as soon as possible.'|trans}}</p>
</div>
{% endblock %}
28 changes: 28 additions & 0 deletions contact.html.twig
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{% extends 'base.html.twig' %}

{% block title %}{{ 'Contact Us' | trans }}{% endblock %}

{% block body %}
<div class="max-w-[400px] mx-auto w-full px-[25px] pt-[30px] pb-[54px] lg:px-0 lg:pt-[50px] lg:pb-[120px] ">
{% set form = getForm("thelia.front.contact") %}

{% block contactFormTitle %}
<h2 class="mb-4 h2">{{ 'Contact Us' | trans }}</h2>
{% endblock %}

{% block contactForm %}

{{ form_start(form) }}

{{form_rest(form)}}

{{ form_errors(form) }}


{% include "@components/Molecules/Button/Button.html.twig" with { text: 'Send' | trans, classes: "w-max mt-6", type: "submit" } %}

{{ form_end(form) }}
{% endblock %}

</div>
{% endblock %}
28 changes: 26 additions & 2 deletions form/fields.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,59 @@
{% set widget_attr = form.vars.attr %}
{% set label = label is defined ? label : form.vars.label %}
{% set placeholder = placeholder is defined ? placeholder : form.vars.placeholder is defined ? form.vars.placeholder : null %}

{% set errors = [] %}

{% for error in form.vars.errors %}
{% set errors = errors + [error.message] %}
{% endfor %}

{% if type == 'checkbox' %}
{% elseif type == 'filter' %}
{% include '@formTwig/fields/filter.html.twig' with {choices: form.vars.choices, title: form.vars.label, values: widget_value} %}
{{ form_errors(form) }}
{% elseif type == 'sort' %}
{% include '@formTwig/fields/sort.html.twig' with {choices: form.vars.choices, title: form.vars.label, values: widget_value} %}
{{ form_errors(form) }}
{% elseif type == 'choice' %}
{% include '@formTwig/fields/choice.html.twig' with {choices: form.vars.choices, title: form.vars.label, values: widget_value } %}
{{ form_errors(form) }}
{% elseif type == 'text' or type == 'email' %}
{% include "@components/Molecules/Fields/FieldInput/FieldInput.html.twig" with {
label: label,
name: form.vars.full_name,
type: type,
placeholder: placeholder,
required: form.vars.required,
errors: errors
} %}

{% elseif type == 'password' %}
{% include "@components/Molecules/Fields/FieldInput/FieldInput.html.twig" with {
label: label,
name: form.vars.full_name,
type: type,
placeholder: placeholder,
required: form.vars.required,
errors: errors
} %}
{% include "@components/Molecules/PasswordControls/PasswordControls.html.twig" %}
{% elseif type == 'textarea' %}
{% include "@components/Molecules/Fields/FieldTextArea/FieldTextArea.html.twig" with {
label: label,
name: form.vars.full_name,
placeholder: placeholder,
required: form.vars.required,
errors: errors
} %}
{% else %}
{# Appel du rendu par défaut si vous n'avez pas besoin de personnaliser davantage #}
{{ block('form_widget_simple') }}
{{ form_errors(form) }}
{% endif %}
{# Erreurs #}
{{ form_errors(form) }}




{% endblock %}

Expand All @@ -43,6 +66,7 @@
{% endfor %}
{% endblock %}


{% block fieldset_row %}
{% set class = form.vars.attr.class|default('') %}
{% set label = form.vars.label|default(null) %}
Expand Down
Loading
Loading