File tree 6 files changed +91
-85
lines changed
6 files changed +91
-85
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,8 @@ module.exports = {
2
2
client : {
3
3
service : {
4
4
name : 'guide-api' ,
5
- url : 'https://api.graphql.guide/graphql' ,
5
+ url : 'https://api.graphql.guide/graphql'
6
6
} ,
7
- includes : [
8
- 'src/**/*.vue' ,
9
- 'src/**/*.js' ,
10
- ] ,
11
- } ,
12
- }
7
+ includes : [ 'src/**/*.vue' , 'src/**/*.js' ]
8
+ }
9
+ }
Original file line number Diff line number Diff line change 5
5
< meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6
6
< meta name ="viewport " content ="width=device-width,initial-scale=1.0 ">
7
7
< link rel ="icon " href ="<%= BASE_URL %>favicon.ico ">
8
- < title > < %= htmlWebpackPlugin.options.title % > </ title >
8
+ < title > The GraphQL Guide </ title >
9
9
</ head >
10
10
< body >
11
11
< div id ="app "> </ div >
Original file line number Diff line number Diff line change 1
1
<template >
2
- <div id =" app" >
3
- <img alt =" Vue logo" src =" ./assets/logo.png" />
4
- <TableOfContents />
5
- </div >
2
+ <img alt =" Vue logo" src =" ./assets/logo.png" />
3
+ <TableOfContents />
6
4
</template >
7
5
8
6
<script >
9
- import { provide } from ' vue'
10
7
import { ApolloClient , InMemoryCache } from ' @apollo/client/core'
11
8
import { DefaultApolloClient } from ' @vue/apollo-composable'
9
+ import { provide } from ' vue'
12
10
13
11
import TableOfContents from ' ./components/TableOfContents.vue'
14
12
@@ -27,5 +25,3 @@ export default {
27
25
}
28
26
}
29
27
</script >
30
-
31
- <style ></style >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <h2 >Sections</h2 >
3
+
4
+ <div v-if =" loading" >Loading...</div >
5
+
6
+ <div v-else-if =" error" >Error: {{ error.message }}</div >
7
+
8
+ <div v-else-if =" noSections" >This chapter has no sections</div >
9
+
10
+ <ul v-else >
11
+ <li v-for =" section of sections" :key =" section.id" >
12
+ {{ section.number }}. {{ section.title }}
13
+ </li >
14
+ </ul >
15
+ </template >
16
+
17
+ <script >
18
+ import { useQuery , useResult } from ' @vue/apollo-composable'
19
+ import { gql } from ' @apollo/client/core'
20
+ import { computed } from ' vue'
21
+
22
+ export default {
23
+ name: ' SectionList' ,
24
+ props: {
25
+ id: {
26
+ type: Number ,
27
+ required: true
28
+ }
29
+ },
30
+ setup (props ) {
31
+ const { result , loading , error } = useQuery (
32
+ gql `
33
+ query SectionList ($id : Int ! ) {
34
+ chapter (id : $id ) {
35
+ sections {
36
+ id
37
+ number
38
+ title
39
+ }
40
+ }
41
+ }
42
+ ` ,
43
+ props
44
+ )
45
+
46
+ const sections = useResult (result, [], data => data .chapter .sections )
47
+
48
+ return {
49
+ loading,
50
+ error,
51
+ noSections: computed (() => sections .value .length === 1 ),
52
+ sections
53
+ }
54
+ }
55
+ }
56
+ </script >
Original file line number Diff line number Diff line change 1
1
<template >
2
- <div class =" TableOfContents" >
2
+ <h1 >The GraphQL Guide</h1 >
3
+
4
+ <div v-if =" loading" >Loading...</div >
5
+
6
+ <div v-else-if =" error" >Error: {{ error.message }}</div >
7
+
8
+ <ul >
3
9
<li v-for =" chapter of chapters" :key =" chapter.id" >
4
- {{ chapter.title }}
10
+ <a @click =" updateCurrentSection(chapter.id)" >
11
+ {{ (chapter.number ? chapter.number + '. ' : '') + chapter.title }}
12
+ </a >
5
13
</li >
6
- </div >
14
+ </ul >
15
+
16
+ <SectionList v-bind:id =" currentSection" />
7
17
</template >
8
18
9
19
<script >
10
20
import { useQuery , useResult } from ' @vue/apollo-composable'
11
21
import { gql } from ' @apollo/client/core'
22
+ import { ref } from ' vue'
23
+
24
+ import SectionList from ' ./SectionList.vue'
25
+
26
+ const PREFACE_ID = - 2
12
27
13
28
export default {
14
29
name: ' TableOfContents' ,
30
+ components: {
31
+ SectionList
32
+ },
15
33
setup () {
16
34
const { result , loading , error } = useQuery (gql `
17
- query ChapterQuery {
35
+ query ChapterList {
18
36
chapters {
19
37
id
20
38
number
21
39
title
22
- sections {
23
- id
24
- number
25
- title
26
- }
27
40
}
28
41
}
29
42
` )
30
43
31
44
const chapters = useResult (result, [])
32
45
46
+ const currentSection = ref (PREFACE_ID )
47
+
33
48
return {
34
49
loading,
35
50
error,
36
- chapters
51
+ chapters,
52
+ currentSection,
53
+ updateCurrentSection : newSection => (currentSection .value = newSection)
37
54
}
38
55
}
39
56
}
40
57
</script >
41
-
42
- <style scoped></style >
You can’t perform that action at this time.
0 commit comments