Skip to content

Commit 003e815

Browse files
committedAug 22, 2021
Improved banner for latest blog post & bcp img
1 parent adbd4eb commit 003e815

File tree

6 files changed

+40
-26
lines changed

6 files changed

+40
-26
lines changed
 

‎website/src/blog/2021-07-20-rider-language-injection/2021-07-20-rider-language-injection.md

+13-14
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tags:
1313
"jetbrains",
1414
"rider",
1515
]
16-
featuredImage: "rider-language-injection.png"
16+
featuredImage: "hot-chocolate-rider-language-injection-banner.png"
1717
author: Pascal Senn
1818
authorUrl: https://github.com/pascal_senn
1919
authorImageUrl: https://avatars0.githubusercontent.com/u/14233220
@@ -51,14 +51,14 @@ package [Snapshooter](https://swisslife-oss.github.io/snapshooter/docs/get-start
5151

5252
```csharp
5353
[Fact]
54-
public void ExampleUseOfSnapshooter()
54+
public void ExampleUseOfSnapshooter()
5555
{
5656
// arrange
5757
var serviceToTest = new ServiceToTest();
58-
58+
5959
// act
6060
List<string> result = serviceToTest.GetSomeStrings();
61-
61+
6262
// assert
6363
result.MatchSnapshot();
6464
}
@@ -70,7 +70,7 @@ the name `schema.graphql`. You can configure the extension in a `.graphqlconfig`
7070

7171
The snapshot test to capture the schema could look like this:
7272

73-
*/test/ExampleProject.Tests/SchemaTests.cs*
73+
_/test/ExampleProject.Tests/SchemaTests.cs_
7474

7575
```csharp
7676
public class SchemaTests
@@ -97,7 +97,7 @@ public class SchemaTests
9797
The example from above creates a snapshot of the schema in `/test/ExampleProject.Tests/__snapshots__/schema.graphql`. You now
9898
have to make the GraphQL extension aware of this schema by creating a .graphqlconfig
9999

100-
*/test/ExampleProject.TestsYourProject.Tests/.graphqlconfig*
100+
_/test/ExampleProject.TestsYourProject.Tests/.graphqlconfig_
101101

102102
```json
103103
{
@@ -106,7 +106,7 @@ have to make the GraphQL extension aware of this schema by creating a .graphqlco
106106
}
107107
```
108108

109-
Now all *.gql and *.graphql files in your project will have proper syntax highlighting, IntelliSense and linting.
109+
Now all _.gql and _.graphql files in your project will have proper syntax highlighting, IntelliSense and linting.
110110

111111
## Inject GraphQL into strings
112112

@@ -145,18 +145,19 @@ public class PersonsIntegrationTests
145145
}
146146
```
147147

148-
The GraphQL extension now knows the schema, but Rider does not understand that the string contains a GraphQL query.
148+
The GraphQL extension now knows the schema, but Rider does not understand that the string contains a GraphQL query.
149149
To make Rider aware of string literals that contain GraphQL queries, you have to add a new language injection provider.
150150

151151
1. Go To 'Preferences' and search for 'Language Injection'
152-
![Rider Preferences Window](./preferences.png)
153-
2. Add a new 'Generic Csharp' Language Injection
152+
![Rider Preferences Window](./preferences.png)
153+
2. Add a new 'Generic Csharp' Language Injection
154154
3. Select GraphQL in the Dropdown ID
155155
4. Add the following pattern
156156

157157
```text
158158
- csharpLiteralExpression().withText(string().matchesBrics("@?[\"'] *((query|mutation|subscription) .*) .*[\"']?"))
159159
```
160+
160161
![Rider language injection-settings](./language-injection-settings.png)
161162

162163
Now every string in C# that starts with either `query`, `mutation`, or `subscription` will be interpreted by Rider as a GraphQL Query.
@@ -165,11 +166,9 @@ Now every string in C# that starts with either `query`, `mutation`, or `subscrip
165166

166167
You can find an example project here [rider-language-injection-example](https://github.com/PascalSenn/rider-language-injection-example)
167168

169+
In case you have questions, [Join our Slack Channel](http://slack.chillicream.com/). We have a very welcoming and helpful community that is waiting for you.
168170

169-
170-
In case you have questions, [Join our Slack Channel](http://slack.chillicream.com/). We have a very welcoming and helpful community that is waiting for you.
171-
172-
If you like what we are doing at ChilliCream, head over to the [HotChocolate repository and **give us a star**](https://github.com/ChilliCream/hotchocolate).
171+
If you like what we are doing at ChilliCream, head over to the [HotChocolate repository and **give us a star**](https://github.com/ChilliCream/hotchocolate).
173172
It helps us to gain visibility and grow our already awesome community!
174173

175174
Thank you!
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,47 @@
11
import { graphql, useStaticQuery } from "gatsby";
22
import { GatsbyImage } from "gatsby-plugin-image";
33
import React, { FC } from "react";
4+
import styled from "styled-components";
45
import { GetBananaCakePopImageQuery } from "../../../graphql-types";
56

6-
export const BananaCakePop: FC = () => {
7+
export interface BananaCakePopProps {
8+
readonly shadow?: boolean;
9+
}
10+
11+
export const BananaCakePop: FC<BananaCakePopProps> = ({ shadow }) => {
712
const data = useStaticQuery<GetBananaCakePopImageQuery>(graphql`
813
query getBananaCakePopImage {
914
file(
1015
relativePath: { eq: "banana-cake-pop.png" }
1116
sourceInstanceName: { eq: "images" }
1217
) {
1318
childImageSharp {
14-
gatsbyImageData(
15-
layout: CONSTRAINED
16-
width: 1200
17-
)
19+
gatsbyImageData(layout: CONSTRAINED, width: 1200)
1820
}
1921
}
2022
}
2123
`);
2224

23-
return (
25+
return shadow ? (
26+
<Container>
27+
<GatsbyImage
28+
image={data.file?.childImageSharp?.gatsbyImageData}
29+
alt="Banana Cake Pop"
30+
/>
31+
</Container>
32+
) : (
2433
<GatsbyImage
2534
image={data.file?.childImageSharp?.gatsbyImageData}
2635
alt="Banana Cake Pop"
2736
/>
2837
);
2938
};
39+
40+
const Container = styled.div`
41+
padding: 30px;
42+
43+
.gatsby-image-wrapper {
44+
border-radius: var(--border-radius);
45+
box-shadow: 0 9px 18px rgba(0, 0, 0, 0.25);
46+
}
47+
`;
3.63 KB
Loading

‎website/src/pages/index.tsx

+3-6
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ import SonikaLogoSvg from "../images/companies/sonika.svg";
4242
import SweetGeeksLogoSvg from "../images/companies/sweetgeeks.svg";
4343
import SwissLifeLogoSvg from "../images/companies/swiss-life.svg";
4444
import SytadelleLogoSvg from "../images/companies/sytadelle.svg";
45+
import XMLogoSvg from "../images/companies/xm.svg";
4546
import ZioskLogoSvg from "../images/companies/ziosk.svg";
46-
import XMLogoSvg from "../images/companies/xm.svg"
4747
// Images
4848
import ContactUsSvg from "../images/contact-us.svg";
4949
import DashboardSvg from "../images/dashboard.svg";
@@ -75,10 +75,7 @@ const IndexPage: FC = () => {
7575
frontmatter {
7676
featuredImage {
7777
childImageSharp {
78-
gatsbyImageData(
79-
layout: CONSTRAINED
80-
width: 800
81-
)
78+
gatsbyImageData(layout: CONSTRAINED, width: 800)
8279
}
8380
}
8481
path
@@ -119,7 +116,7 @@ const IndexPage: FC = () => {
119116
</Slide>
120117
<Slide>
121118
<Link to="/docs/bananacakepop">
122-
<BananaCakePop />
119+
<BananaCakePop shadow />
123120
<SlideContent>
124121
<SlideTitle>Banana Cake Pop</SlideTitle>
125122
<SlideDescription>

0 commit comments

Comments
 (0)
Please sign in to comment.