-
Notifications
You must be signed in to change notification settings - Fork 14
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
Move assets into separate file #301
base: staging
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
@font-face { | ||
font-family: 'themix'; | ||
src: url('https://cdn.skauting.cz/fonts/TheMix_LT_400.eot'); | ||
src: url('https://cdn.skauting.cz/fonts/TheMix_LT_400.eot? #iefix') format('embedded-opentype'); | ||
src: url('https://cdn.skauting.cz/fonts/TheMix_LT_400.woff') format('woff'), | ||
url('https://cdn.skauting.cz/fonts/TheMix_LT_400.woff2') format('woff2'), | ||
url('https://cdn.skauting.cz/fonts/TheMix_LT_400.otf') format('opentype'), | ||
url('https://cdn.skauting.cz/fonts/TheMix_LT_400.svg#themix') format('svg'); | ||
font-weight: 400; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'themix'; | ||
src: url('https://cdn.skauting.cz/fonts/TheMix_LT_400i.eot'); | ||
src: url('https://cdn.skauting.cz/fonts/TheMix_LT_400i.eot? #iefix') format('embedded-opentype'); | ||
src: url('https://cdn.skauting.cz/fonts/TheMix_LT_400i.woff') format('woff'), | ||
url('https://cdn.skauting.cz/fonts/TheMix_LT_400i.woff2') format('woff2'), | ||
url('https://cdn.skauting.cz/fonts/TheMix_LT_400i.otf') format('opentype'), | ||
url('https://cdn.skauting.cz/fonts/TheMix_LT_400i.svg#themix') format('svg'); | ||
font-weight: 400; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'themix'; | ||
src: url('https://cdn.skauting.cz/fonts/TheMix_LT_700.eot'); | ||
src: url('https://cdn.skauting.cz/fonts/TheMix_LT_700.eot? #iefix') format('embedded-opentype'); | ||
src: url('https://cdn.skauting.cz/fonts/TheMix_LT_700.woff') format('woff'), | ||
url('https://cdn.skauting.cz/fonts/TheMix_LT_700.woff2') format('woff2'), | ||
url('https://cdn.skauting.cz/fonts/TheMix_LT_700.otf') format('opentype'), | ||
url('https://cdn.skauting.cz/fonts/TheMix_LT_700.svg#themix') format('svg'); | ||
font-weight: 700; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'themix'; | ||
src: url('https://cdn.skauting.cz/fonts/TheMix_LT_700i.eot'); | ||
src: url('https://cdn.skauting.cz/fonts/TheMix_LT_700i.eot? #iefix') format('embedded-opentype'); | ||
src: url('https://cdn.skauting.cz/fonts/TheMix_LT_700i.woff') format('woff'), | ||
url('https://cdn.skauting.cz/fonts/TheMix_LT_700i.woff2') format('woff2'), | ||
url('https://cdn.skauting.cz/fonts/TheMix_LT_700i.otf') format('opentype'), | ||
url('https://cdn.skauting.cz/fonts/TheMix_LT_700i.svg#themix') format('svg'); | ||
font-weight: 700; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'skautbold'; | ||
src: url('https://cdn.skauting.cz/fonts/skaut-bold-webfont.eot'); | ||
src: url('https://cdn.skauting.cz/fonts/skaut-bold-webfont.eot? #iefix') format('embedded-opentype'); | ||
src: url('https://cdn.skauting.cz/fonts/skaut-bold-webfont.woff') format('woff'), | ||
url('https://cdn.skauting.cz/fonts/skaut-bold-webfont.otf') format('opentype'), | ||
url('https://cdn.skauting.cz/fonts/skaut-bold-webfont.svg#skautbold') format('svg'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
|
||
:root { | ||
background: var(--color-background); | ||
--border-radius: 6px; | ||
font-family: 'themix', sans-serif; | ||
box-sizing: border-box; | ||
color: var(--color-main); | ||
color-scheme: light dark; | ||
accent-color: var(--color-main); | ||
} | ||
|
||
@media (prefers-color-scheme: light) { | ||
:root { | ||
--color-background: #e6ebed; | ||
--color-card-background: #f9f9f9; | ||
--color-input-background: #ffffff; | ||
--color-main: #0D71B9; | ||
--color-accent: #b9550d; | ||
--color-fading: #a6d9ff; | ||
--color-light: #3ba5f1; | ||
--color-dark: #06375a; | ||
--color-grey: #636363; | ||
--color-link: #0000ee; | ||
--color-link-visited: #551a8b; | ||
} | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
:root { | ||
--color-background: #212121; | ||
--color-card-background: #252525; | ||
--color-input-background: #2f2f2f; | ||
--color-main: #85A2D5; | ||
--color-accent: #d5b885; | ||
--color-fading: #1f2e3d; | ||
--color-light: #3e6ab5; | ||
--color-dark: #d1dcef; | ||
--color-grey: #888888; | ||
--color-link: lightskyblue; | ||
--color-link-visited: #ad76de; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -232,7 +232,7 @@ public function showIban(): bool | |
|
||
public function getSkautLogoPath(Participant $participant): string | ||
{ | ||
return '/SKAUT_horizontalni_logo_250.png'; | ||
return '/assets/SKAUT_horizontalni_logo_250.png'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. dtto v src/Event/Event.php |
||
} | ||
|
||
public function getSkautStampSignPath(Participant $participant): string | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
namespace kissj\Mailer; | ||
|
||
use kissj\Event\Event; | ||
use kissj\Participant\Participant; | ||
use kissj\Payment\Payment; | ||
use kissj\Payment\QrCodeService; | ||
|
@@ -224,7 +225,7 @@ private function sendMailFromTemplate( | |
$email->htmlTemplate('emails/' . $templateName . '.twig'); | ||
$email->context(array_merge($parameters, [ | ||
'fullRegistrationLink' => $this->settings->getFullUrlLink(), | ||
'eventImageExists' => is_file(__DIR__ . '/../../public/' . $event->logoUrl), | ||
'eventImageExists' => is_file(__DIR__ . '/../../public/' . Event::getFullLogoUrl($event->logoUrl)), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Není potřeba volat staticky, když máme k dispozici už konkrétní objekt, kde to je |
||
])); | ||
array_map(fn (string $attachment) => $email->attach($attachment), $attachments); | ||
foreach ($embeds as $embed) { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,23 @@ | |
use kissj\Participant\Troop\TroopLeader; | ||
use kissj\Participant\Troop\TroopParticipant; | ||
use kissj\User\UserStatus; | ||
use kissj\Event\Event; | ||
use Twig\Extension\AbstractExtension; | ||
use Twig\TwigTest; | ||
use Twig\TwigFunction; | ||
|
||
class TwigExtension extends AbstractExtension | ||
{ | ||
/** | ||
* @return TwigFunction[] | ||
*/ | ||
public function getFunctions() :array | ||
{ | ||
return [ | ||
new TwigFunction('eventLogo', [Event::class, 'getFullLogoUrl']), | ||
]; | ||
} | ||
|
||
Comment on lines
+23
to
+29
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. není potřeba, když se nebude volat staticky |
||
/** | ||
* @return TwigTest[] | ||
*/ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,16 @@ | |
<meta name="theme-color" content="#872e4e" media="(prefers-color-scheme: dark)"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<title>{% trans %}_layout.title{% endtrans %} - {{ event.readableName }} - kissj</title> | ||
<title>{% if event is not null %} | ||
{% trans %}_layout.title{% endtrans %} - {{ event.readableName }} | ||
{% else %} | ||
Kissj | ||
{% endif %} | ||
</title> | ||
|
||
<link rel="shortcut icon" href="/favicon-16x16.png" type="image/x-icon"> | ||
<link rel="shortcut icon" href="../../../public/assets/favicon-16x16.png" type="image/x-icon"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. dtto src/Event/Event.php |
||
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> | ||
<link rel="stylesheet" href="{{ base_path() }}/theme.css"> | ||
<link rel="stylesheet" href="{{ base_path() }}/styles.css"> | ||
{% if event.eventType.getStylesheetNameWithoutLeadingSlash is not null %} | ||
<link rel="stylesheet" href="{{ base_path() }}/{{ event.eventType.getStylesheetNameWithoutLeadingSlash }}"> | ||
|
@@ -31,7 +37,14 @@ | |
</head> | ||
|
||
<body class="wrapper"> | ||
<h1 class="text-center">{% trans %}_layout.title{% endtrans %} - {{ event.readableName }}</h1> | ||
<h1 class="text-center"> | ||
{% if event is not null %} | ||
{% trans %}_layout.title{% endtrans %} - {{ event.readableName }} | ||
{% else %} | ||
Kissj | ||
{% endif %} | ||
|
||
</h1> | ||
<div class="user text-right"> | ||
{% for localeSlug, localeText in event.eventType.getLanguages() %} | ||
<a href="?locale={{ localeSlug }}">{{ localeText }}</a>{% if not loop.last %} | {% endif%} | ||
|
@@ -89,9 +102,11 @@ | |
| <a href="https://devs.skauting.cz/" target="_blank">{% trans %}_layout.creator{% endtrans %}</a> | ||
| <a href="https://www.stojimezaukrajinou.cz/" target="_blank">🇺🇦 stojimezaukrajinou.cz</a> | ||
</span> | ||
{% if event is not null %} | ||
<a href="{{ event.webUrl }}" class="footer-item" target="_blank"> | ||
<img class="footer-logo" src="{{ event.logoUrl }}" alt="logo of {{ event.readableName }}"> | ||
<img class="footer-logo" src="{{ eventLogo(event.logoUrl) }}" alt="logo of {{ event.readableName }}"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. dtto src/Settings/TwigExtension.php |
||
</a> | ||
{% endif %} | ||
</footer> | ||
</body> | ||
</html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,7 @@ | |
<footer> | ||
{% if eventImageExists %} | ||
<a href="{{ event.webUrl }}" class="footer-item" target="_blank"> | ||
<img class="footer-logo" src="{{ email.image( event.logoUrl ) }}" alt="logo of {{ event.readableName }}"> | ||
<img class="footer-logo" src="{{ email.image(eventLogo(event.logoUrl)) }}" alt="logo of {{ event.readableName }}"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. dtto src/Settings/TwigExtension.php |
||
</a> | ||
{% endif %} | ||
</footer> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,7 +81,7 @@ | |
<footer> | ||
{% if eventImageExists %} | ||
<a href="{{ event.webUrl }}" class="footer-item" target="_blank"> | ||
<img class="footer-logo" src="{{ email.image( event.logoUrl ) }}" alt="logo of {{ event.readableName }}"> | ||
<img class="footer-logo" src="{{ email.image(eventLogo(event.logoUrl)) }}" alt="logo of {{ event.readableName }}"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. dtto src/Settings/TwigExtension.php |
||
</a> | ||
{% endif %} | ||
</footer> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Takto natvrdo vypálená adresa do kódu není dobře - když to budeme chtít přesunout, tak budeme muset změnit kód, což je špatně. Lepší by bylo toto zanést do infra, aby webserver hledal v této složce automaticky a kód appky to vůbec nemusel vědět