[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/graphql-mode 0f2b4b1604 077/122: Merge branch 'next'
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/graphql-mode 0f2b4b1604 077/122: Merge branch 'next' |
Date: |
Sat, 29 Jan 2022 08:03:35 -0500 (EST) |
branch: elpa/graphql-mode
commit 0f2b4b16049b7b4043575f0ec592305624a8775c
Merge: 52137014df 5971b69c8c
Author: David Vázquez Púa <davazp@gmail.com>
Commit: David Vázquez Púa <davazp@gmail.com>
Merge branch 'next'
---
graphql-mode.el | 42 +++++++++++++++++++++++-------------------
1 file changed, 23 insertions(+), 19 deletions(-)
diff --git a/graphql-mode.el b/graphql-mode.el
index 5387c3c9fc..197867d027 100644
--- a/graphql-mode.el
+++ b/graphql-mode.el
@@ -67,7 +67,7 @@
:type 'file
:group 'graphql)
-(defcustom graphql-headers '(("Content-Type" . "application/json"))
+(defcustom graphql-extra-headers '()
"Headers to send to the graphql endpoint."
:tag "GraphQL"
:type 'list
@@ -91,8 +91,11 @@ The query is sent as a HTTP POST request to the URL at
mutation or subscription). OPERATION is a name for the
operation. VARIABLES is the JSON string that specifies the values
of the variables used in the query."
- (with-temp-buffer
- (graphql-post-request graphql-url query operation variables)))
+ ;; Note that we need to get the value of graphql-url in the current
+ ;; before before we switch to the temporary one.
+ (let ((url graphql-url))
+ (with-temp-buffer
+ (graphql-post-request url query operation variables))))
(declare-function request "request")
(declare-function request-response-data "request")
@@ -108,18 +111,19 @@ VARIABLES list of variables for query operation"
(error "graphql-post-request needs the request package. \
Please install it and try again."))
(let* ((body (graphql-encode-json query operation variables))
+ (headers (append '(("Content-Type" . "application/json"))
graphql-extra-headers))
(response (request
- url
+ url
:type "POST"
:data body
- :headers graphql-headers
+ :headers headers
:parser 'json-read
:sync t
:complete (lambda (&rest _)
(message "%s" (if (string-equal "" operation)
url
(format "%s?operationName=%s"
- url operation)))))))
+ url operation)))))))
(json-encode (request-response-data response))))
(defun graphql-beginning-of-query ()
@@ -149,24 +153,24 @@ Please install it and try again."))
(graphql-end-of-query)
(point))))
(if (not (equal start end))
- (buffer-substring-no-properties start end)
+ (buffer-substring-no-properties start end)
(save-excursion
- (let ((saved-point (point))
- (line (thing-at-point 'line t)))
- (when (string-match-p (regexp-quote "}") line)
- (search-backward "}" (beginning-of-line)))
- (when (string-match-p (regexp-quote "{") line)
- (search-forward "{" (end-of-line)))
- (if (= (point) saved-point)
- nil
- (graphql-current-query)))))))
+ (let ((saved-point (point))
+ (line (thing-at-point 'line t)))
+ (when (string-match-p (regexp-quote "}") line)
+ (search-backward "}" (beginning-of-line)))
+ (when (string-match-p (regexp-quote "{") line)
+ (search-forward "{" (end-of-line)))
+ (if (= (point) saved-point)
+ nil
+ (graphql-current-query)))))))
(defun graphql-current-operation ()
"Return the name of the current graphql query."
(let* ((query
(save-excursion
(replace-regexp-in-string "^[ \t\n]*" ""
- (or (graphql-current-query) ""))))
+ (or (graphql-current-query) ""))))
(tokens
(split-string query "[ \f\t\n\r\v]+"))
(first (nth 0 tokens)))
@@ -255,7 +259,7 @@ Please install it and try again."))
'("type" "input" "interface" "fragment"
"query" "enum" "mutation" "subscription"
"Int" "Float" "String" "Boolean" "ID"
- "true" "false" "null"))
+ "true" "false" "null"))
(defun graphql-completion-at-point ()
"Return the list of candidates for completion.
@@ -268,7 +272,7 @@ This is the function to be used for the hook
`completion-at-point-functions'."
(defvar graphql-definition-regex
(concat "\\(" (regexp-opt '("type" "input" "interface" "fragment" "query"
- "mutation" "subscription" "enum")) "\\)"
+ "mutation" "subscription" "enum")) "\\)"
"[[:space:]]+\\(\\_<.+?\\_>\\)")
"Keyword Regular Expressions.")
- [nongnu] elpa/graphql-mode d3aa4d66e0 013/122: Extract constants and values into separate variables, (continued)
- [nongnu] elpa/graphql-mode d3aa4d66e0 013/122: Extract constants and values into separate variables, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 1bff11f21c 056/122: fix the line-boundary issue to enhance {} sexp, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode ba5952590c 079/122: Merge pull request #22 from cbowdon/master, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 061d6d0b34 001/122: Initial commit, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode cbd07029fa 009/122: Better indentation of closing pairs, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 096df5b167 005/122: Basic line indentation, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 3965a4c370 046/122: add request dependency, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 52137014df 073/122: Update packages, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode c3471642f5 072/122: Merge pull request #19 from cbowdon/master, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 880701685d 038/122: Add some types/field to the test schema, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 0f2b4b1604 077/122: Merge branch 'next',
ELPA Syncer <=
- [nongnu] elpa/graphql-mode d0a85fe1d3 067/122: Shorten long lines, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 7aa3532aed 026/122: Don't depend on json-mode, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 0b41444096 028/122: Add installation notes, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 43434aa6d5 061/122: Format some docs and docstrings, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 8b2fe76635 057/122: fix a recursive bug in graphql-current-operation, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode f3cfd9fc1e 062/122: Don't send the query as a query parameter, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 301d2419a0 012/122: Prompt the user for the GraphQL, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 17c2150ff6 058/122: rebase branch 'queries support' into branch 'next', ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 83e3a73f21 033/122: Fix: don't add slash between url and query parameters, ELPA Syncer, 2022/01/29
- [nongnu] elpa/graphql-mode 22a4340ec3 044/122: add post body json support: query, operationName, variables, ELPA Syncer, 2022/01/29