Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
Website
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
Website
Commits
9b12fe2c
Verified
Commit
9b12fe2c
authored
3 years ago
by
Jonas Leder
Browse files
Options
Downloads
Patches
Plain Diff
load comments from graphQL
parent
f132ba2c
No related branches found
Branches containing commit
No related tags found
1 merge request
!8
Rewrite API endpoint to graphql
Pipeline
#7176
passed
3 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
js/customElements/commentsDisplay.js
+37
-40
37 additions, 40 deletions
js/customElements/commentsDisplay.js
with
37 additions
and
40 deletions
js/customElements/commentsDisplay.js
+
37
−
40
View file @
9b12fe2c
class
commentsDisplay
extends
HTMLElement
{
constructor
()
{
super
();
let
path
=
window
.
location
.
pathname
;
let
pageName
=
path
.
split
(
"
/
"
).
pop
();
let
xhr
=
new
XMLHttpRequest
();
xhr
.
onreadystatechange
=
()
=>
{
if
(
xhr
.
readyState
===
4
)
{
if
(
xhr
.
status
===
200
)
{
let
comments
=
JSON
.
parse
(
xhr
.
responseText
);
comments
.
forEach
((
element
)
=>
{
const
h3
=
document
.
createElement
(
"
h3
"
);
h3
.
classList
.
add
(
"
commentTitle
"
);
h3
.
innerText
=
element
[
"
name
"
];
this
.
appendChild
(
h3
);
const
commentDiv
=
document
.
createElement
(
"
div
"
);
commentDiv
.
classList
.
add
(
"
comment
"
);
this
.
appendChild
(
commentDiv
);
const
image
=
document
.
createElement
(
"
img
"
);
image
.
src
=
element
[
"
gravatarURL
"
];
commentDiv
.
appendChild
(
image
);
const
article
=
document
.
createElement
(
"
article
"
);
article
.
classList
.
add
(
"
commentArticle
"
);
commentDiv
.
appendChild
(
article
);
const
commentText
=
document
.
createElement
(
"
p
"
);
commentText
.
classList
.
add
(
"
commentText
"
);
commentText
.
innerText
=
element
[
"
comment
"
];
article
.
appendChild
(
commentText
);
});
}
else
{
let
p
=
document
.
createElement
(
"
p
"
);
p
.
innerText
=
"
Leider konnte dieser Inhalt nicht geladen werden, bitte versuche die Seite neu zu laden oder komme später wieder zurück.
"
;
this
.
appendChild
(
p
);
this
.
getComments
()
}
}
}
async
getComments
()
{
var
graphql
=
JSON
.
stringify
({
query
:
'
query($article: String!) { comments(article: $article) { name comment gravatarURL }}
'
,
variables
:
{
"
article
"
:
window
.
location
.
pathname
}
xhr
.
open
(
"
GET
"
,
"
/API/projectComments.php?article=
"
+
pageName
);
xhr
.
send
();
})
var
requestOptions
=
{
method
:
'
POST
'
,
body
:
graphql
,
};
let
comments
=
(
await
(
await
fetch
(
"
http://localhost:1234/API/graphql.php
"
,
requestOptions
)).
json
()).
data
.
comments
;
comments
.
forEach
((
element
)
=>
{
const
h3
=
document
.
createElement
(
"
h3
"
);
h3
.
classList
.
add
(
"
commentTitle
"
);
h3
.
innerText
=
element
[
"
name
"
];
this
.
appendChild
(
h3
);
const
commentDiv
=
document
.
createElement
(
"
div
"
);
commentDiv
.
classList
.
add
(
"
comment
"
);
this
.
appendChild
(
commentDiv
);
const
image
=
document
.
createElement
(
"
img
"
);
image
.
src
=
element
[
"
gravatarURL
"
];
commentDiv
.
appendChild
(
image
);
const
article
=
document
.
createElement
(
"
article
"
);
article
.
classList
.
add
(
"
commentArticle
"
);
commentDiv
.
appendChild
(
article
);
const
commentText
=
document
.
createElement
(
"
p
"
);
commentText
.
classList
.
add
(
"
commentText
"
);
commentText
.
innerText
=
element
[
"
comment
"
];
article
.
appendChild
(
commentText
);
});
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment