diff --git a/index.html b/index.html index 612deda90..6e0827644 100644 --- a/index.html +++ b/index.html @@ -104,6 +104,33 @@ +
Request Body ⭥
diff --git a/script.js b/script.js index ec81d1c22..6e2b8b431 100644 --- a/script.js +++ b/script.js @@ -25,7 +25,8 @@ const app = new Vue({ status: '', headers: '', body: '' - } + }, + history: [] }, computed: { rawRequestBody() { @@ -65,6 +66,18 @@ const app = new Vue({ } }, methods: { + deleteHistory(entry) { + this.history.splice(this.history.indexOf(entry), 1) + }, + useHistory({ + method, + url, + path + }) { + this.method = method + this.url = url + this.path = path + }, collapse({ target }) { @@ -72,6 +85,14 @@ const app = new Vue({ document.getElementsByClassName(el)[0].classList.toggle('hidden') }, sendRequest() { + const d = new Date() + const n = d.toLocaleTimeString() + this.history.push({ + time: n, + method: this.method, + url: this.url, + path: this.path + }) this.$refs.response.scrollIntoView({ behavior: 'smooth' }) diff --git a/style.css b/style.css index d2762335b..ac167f0c9 100644 --- a/style.css +++ b/style.css @@ -88,7 +88,7 @@ fieldset { } legend { - color: #57b5f9; + color: var(--fg-color); font-weight: 700; cursor: pointer; } @@ -105,6 +105,14 @@ fieldset.request legend { color: #57b5f9; } +fieldset.history { + border-color: #9B9B9B; +} + +fieldset.history legend { + color: #9B9B9B; +} + fieldset.authentication { border-color: #B8E986; }