From b5fdfa651338bd691f296990330fc63b8cffdb5c Mon Sep 17 00:00:00 2001 From: Cavanaugh Richards Date: Thu, 22 Jun 2023 13:43:49 -0500 Subject: [PATCH] Add default object to client functions where the form data or query is optional --- src/http.ts | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/src/http.ts b/src/http.ts index b659339..e401adb 100644 --- a/src/http.ts +++ b/src/http.ts @@ -178,7 +178,7 @@ export class LemmyHttp { * * `HTTP.GET /site` */ - getSite(form: GetSite) { + getSite(form: GetSite = {}) { return this.#wrapper(HttpType.Get, "/site", form); } @@ -222,7 +222,7 @@ export class LemmyHttp { * * `HTTP.GET /modlog` */ - getModlog(form: GetModlog) { + getModlog(form: GetModlog = {}) { return this.#wrapper( HttpType.Get, "/modlog", @@ -270,7 +270,7 @@ export class LemmyHttp { * * `HTTP.GET /community` */ - getCommunity(form: GetCommunity) { + getCommunity(form: GetCommunity = {}) { return this.#wrapper( HttpType.Get, "/community", @@ -296,7 +296,7 @@ export class LemmyHttp { * * `HTTP.GET /community/list` */ - listCommunities(form: ListCommunities) { + listCommunities(form: ListCommunities = {}) { return this.#wrapper( HttpType.Get, "/community/list", @@ -413,7 +413,7 @@ export class LemmyHttp { * * `HTTP.GET /post` */ - getPost(form: GetPost) { + getPost(form: GetPost = {}) { return this.#wrapper(HttpType.Get, "/post", form); } @@ -496,7 +496,7 @@ export class LemmyHttp { * * `HTTP.GET /post/list` */ - getPosts(form: GetPosts) { + getPosts(form: GetPosts = {}) { return this.#wrapper( HttpType.Get, "/post/list", @@ -691,7 +691,7 @@ export class LemmyHttp { * * `HTTP.GET /comment/list` */ - getComments(form: GetComments) { + getComments(form: GetComments = {}) { return this.#wrapper( HttpType.Get, "/comment/list", @@ -883,7 +883,7 @@ export class LemmyHttp { * * `HTTP.GET /user` */ - getPersonDetails(form: GetPersonDetails) { + getPersonDetails(form: GetPersonDetails = {}) { return this.#wrapper( HttpType.Get, "/user", @@ -974,7 +974,7 @@ export class LemmyHttp { * * `HTTP.GET /user/get_captcha` */ - getCaptcha(form: GetCaptcha) { + getCaptcha(form: GetCaptcha = {}) { return this.#wrapper( HttpType.Get, "/user/get_captcha", @@ -1246,7 +1246,7 @@ export class LemmyHttp { * * `HTTP.Get /federated_instances` */ - async getFederatedInstances(form: GetFederatedInstances) { + async getFederatedInstances(form: GetFederatedInstances = {}) { return this.#wrapper( HttpType.Get, "/federated_instances", @@ -1335,9 +1335,7 @@ export class LemmyHttp { } } -function encodeGetParams( - p: BodyType = {} -): string { +function encodeGetParams(p: BodyType): string { return Object.entries(p) .filter(kv => !!kv[1]) .map(kv => kv.map(encodeURIComponent).join("="))