foundry-component-library 0.2.39 → 0.2.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/Hero/Video.tsx +10 -0
- package/lib/components/HubsAccordion/Hub.tsx +2 -2
- package/lib/components/VideoTeaser/index.tsx +8 -2
- package/lib/components/VideoTeaser/styles.module.scss +0 -14
- package/lib/queries/getPageById.ts +53 -0
- package/lib/queries/index.ts +2 -0
- package/package.json +1 -1
|
@@ -34,8 +34,18 @@ const Video = ({ url }: { url: string }) => {
|
|
|
34
34
|
loop
|
|
35
35
|
muted
|
|
36
36
|
playsinline
|
|
37
|
+
config={{
|
|
38
|
+
file: {
|
|
39
|
+
attributes: {
|
|
40
|
+
playsInline: true,
|
|
41
|
+
webkitPlaysInline: true,
|
|
42
|
+
muted: true,
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
}}
|
|
37
46
|
/>
|
|
38
47
|
)}
|
|
48
|
+
asd
|
|
39
49
|
</div>
|
|
40
50
|
);
|
|
41
51
|
};
|
|
@@ -50,7 +50,7 @@ const Hub = ({
|
|
|
50
50
|
<div className={styles.tile}>
|
|
51
51
|
<a href={hub.uri}>
|
|
52
52
|
{(hub.slug === "content-campaigning" ||
|
|
53
|
-
hub.slug === "
|
|
53
|
+
hub.slug === "inhalte-kampagnen") && <TileBalls />}
|
|
54
54
|
</a>
|
|
55
55
|
<a href={hub.uri}>
|
|
56
56
|
{(hub.slug === "social-media-performance" ||
|
|
@@ -64,7 +64,7 @@ const Hub = ({
|
|
|
64
64
|
</a>
|
|
65
65
|
<a href={hub.uri}>
|
|
66
66
|
{(hub.slug === "strategy-positioning" ||
|
|
67
|
-
hub.slug === "
|
|
67
|
+
hub.slug === "strategie-positionierung") && <TileGlass />}
|
|
68
68
|
</a>
|
|
69
69
|
</div>
|
|
70
70
|
<div className={styles.title}>{hub.title}</div>
|
|
@@ -50,12 +50,18 @@ function VideoTeaser({ url }: { url: string }) {
|
|
|
50
50
|
muted={isMuted}
|
|
51
51
|
loop={true}
|
|
52
52
|
config={{
|
|
53
|
-
file: {
|
|
53
|
+
file: {
|
|
54
|
+
attributes: {
|
|
55
|
+
playsInline: true,
|
|
56
|
+
webkitPlaysInline: true,
|
|
57
|
+
muted: true,
|
|
58
|
+
poster: "/video-poster.jpg",
|
|
59
|
+
},
|
|
60
|
+
},
|
|
54
61
|
}}
|
|
55
62
|
/>
|
|
56
63
|
)}
|
|
57
64
|
</div>
|
|
58
|
-
<div className={styles.overlayMobile} />
|
|
59
65
|
</div>
|
|
60
66
|
</>
|
|
61
67
|
);
|
|
@@ -133,17 +133,3 @@
|
|
|
133
133
|
transform: translate(34.5%, 39.5%);
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
|
-
|
|
137
|
-
.overlayMobile {
|
|
138
|
-
position: absolute;
|
|
139
|
-
top: 0;
|
|
140
|
-
left: 0;
|
|
141
|
-
width: 100%;
|
|
142
|
-
height: 100%;
|
|
143
|
-
z-index: 2;
|
|
144
|
-
display: none;
|
|
145
|
-
|
|
146
|
-
@media #{$QUERY-sm} {
|
|
147
|
-
display: block;
|
|
148
|
-
}
|
|
149
|
-
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Page, Variables } from "../../lib/types";
|
|
2
|
+
import { request } from "./client";
|
|
3
|
+
import { ContactPage } from "./getContactPage";
|
|
4
|
+
|
|
5
|
+
export default async function getPageById(
|
|
6
|
+
id: string,
|
|
7
|
+
language: string,
|
|
8
|
+
): Promise<{ page: Page; contactPage: ContactPage }> {
|
|
9
|
+
const contactPage = language === "DE" ? "contact-de" : "contact";
|
|
10
|
+
|
|
11
|
+
const query = `
|
|
12
|
+
query GetPageById($id: ID!) {
|
|
13
|
+
page(id: $id, idType: DATABASE_ID) {
|
|
14
|
+
title
|
|
15
|
+
content
|
|
16
|
+
}
|
|
17
|
+
contactPage: page(id: "${contactPage}", idType: URI) {
|
|
18
|
+
customFieldsContact {
|
|
19
|
+
facebook
|
|
20
|
+
instagram
|
|
21
|
+
linkedin
|
|
22
|
+
berlinImage {
|
|
23
|
+
sourceUrl
|
|
24
|
+
}
|
|
25
|
+
berlinText
|
|
26
|
+
berlinEmail
|
|
27
|
+
berlinPhone
|
|
28
|
+
zurichImage {
|
|
29
|
+
sourceUrl
|
|
30
|
+
}
|
|
31
|
+
zurichText
|
|
32
|
+
zurichEmail
|
|
33
|
+
zurichPhone
|
|
34
|
+
newyorkImage {
|
|
35
|
+
sourceUrl
|
|
36
|
+
}
|
|
37
|
+
newyorkText
|
|
38
|
+
newyorkEmail
|
|
39
|
+
newyorkPhone
|
|
40
|
+
contactTeaserHeading
|
|
41
|
+
contactTeaserText
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
`;
|
|
46
|
+
|
|
47
|
+
const variables: Variables = { id, language };
|
|
48
|
+
const data: { page: Page; contactPage: ContactPage } = await request(
|
|
49
|
+
query,
|
|
50
|
+
variables,
|
|
51
|
+
);
|
|
52
|
+
return data;
|
|
53
|
+
}
|
package/lib/queries/index.ts
CHANGED
|
@@ -3,6 +3,7 @@ import getPosts from "./getPosts";
|
|
|
3
3
|
import getCategories from "./getCategories";
|
|
4
4
|
import getMetadataBySlug from "./getMetadataBySlug";
|
|
5
5
|
import getPageBySlug from "./getPageBySlug";
|
|
6
|
+
import getPageById from "./getPageById";
|
|
6
7
|
import getPostBySlug from "./getPostBySlug";
|
|
7
8
|
import getCaseBySlug from "./getCaseBySlug";
|
|
8
9
|
import getCaseById from "./getCaseById";
|
|
@@ -24,6 +25,7 @@ export {
|
|
|
24
25
|
getCategories,
|
|
25
26
|
getMetadataBySlug,
|
|
26
27
|
getPageBySlug,
|
|
28
|
+
getPageById,
|
|
27
29
|
getPostBySlug,
|
|
28
30
|
getCaseBySlug,
|
|
29
31
|
getCaseById,
|