chore: lint

This commit is contained in:
liyasthomas
2021-06-16 19:13:07 +05:30
parent 0a4251825b
commit 3559d98df1
8 changed files with 42 additions and 10 deletions

View File

@@ -198,7 +198,11 @@ export default Vue.extend({
}, },
removeCollection() { removeCollection() {
// Cancel pick if picked collection is deleted // Cancel pick if picked collection is deleted
if (this.picked && this.picked.pickedType === "gql-my-collection" && this.picked.collectionIndex === this.collectionIndex) { if (
this.picked &&
this.picked.pickedType === "gql-my-collection" &&
this.picked.collectionIndex === this.collectionIndex
) {
this.$emit("select", { picked: null }) this.$emit("select", { picked: null })
} }
removeGraphqlCollection(this.collectionIndex) removeGraphqlCollection(this.collectionIndex)

View File

@@ -182,7 +182,11 @@ export default Vue.extend({
}, },
removeFolder() { removeFolder() {
// Cancel pick if the picked folder is deleted // Cancel pick if the picked folder is deleted
if (this.picked && this.picked.pickedType === "gql-my-folder" && this.picked.folderPath === this.folderPath) { if (
this.picked &&
this.picked.pickedType === "gql-my-folder" &&
this.picked.folderPath === this.folderPath
) {
this.$emit("select", { picked: null }) this.$emit("select", { picked: null })
} }

View File

@@ -123,7 +123,12 @@ export default Vue.extend({
}, },
removeRequest() { removeRequest() {
// Cancel pick if the picked request is deleted // Cancel pick if the picked request is deleted
if (this.picked && this.picked.pickedType === "gql-my-request" && this.picked.folderPath === this.folderPath && this.picked.requestIndex === this.requestIndex) { if (
this.picked &&
this.picked.pickedType === "gql-my-request" &&
this.picked.folderPath === this.folderPath &&
this.picked.requestIndex === this.requestIndex
) {
this.$emit("select", { picked: null }) this.$emit("select", { picked: null })
} }

View File

@@ -532,7 +532,11 @@ export default {
removeCollection({ collectionsType, collectionIndex, collectionID }) { removeCollection({ collectionsType, collectionIndex, collectionID }) {
if (collectionsType.type === "my-collections") { if (collectionsType.type === "my-collections") {
// Cancel pick if picked collection is deleted // Cancel pick if picked collection is deleted
if (this.picked && this.picked.pickedType === "my-collection" && this.picked.collectionIndex === collectionIndex) { if (
this.picked &&
this.picked.pickedType === "my-collection" &&
this.picked.collectionIndex === collectionIndex
) {
this.$emit("select", { picked: null }) this.$emit("select", { picked: null })
} }
@@ -543,7 +547,11 @@ export default {
}) })
} else if (collectionsType.type === "team-collections") { } else if (collectionsType.type === "team-collections") {
// Cancel pick if picked collection is deleted // Cancel pick if picked collection is deleted
if (this.picked && this.picked.pickedType === "teams-collection" && this.picked.collectionID === collectionID) { if (
this.picked &&
this.picked.pickedType === "teams-collection" &&
this.picked.collectionID === collectionID
) {
this.$emit("select", { picked: null }) this.$emit("select", { picked: null })
} }

View File

@@ -195,7 +195,11 @@ export default {
removeFolder() { removeFolder() {
// TODO: Bubble it up ? // TODO: Bubble it up ?
// Cancel pick if picked folder was deleted // Cancel pick if picked folder was deleted
if (this.picked && this.picked.pickedType === "my-folder" && this.picked.folderPath === this.folderPath) { if (
this.picked &&
this.picked.pickedType === "my-folder" &&
this.picked.folderPath === this.folderPath
) {
this.$emit("select", { picked: null }) this.$emit("select", { picked: null })
} }
removeRESTFolder(this.folderPath) removeRESTFolder(this.folderPath)

View File

@@ -190,7 +190,11 @@ export default {
removeFolder() { removeFolder() {
if (this.collectionsType.selectedTeam.myRole !== "VIEWER") { if (this.collectionsType.selectedTeam.myRole !== "VIEWER") {
// Cancel pick if picked collection folder was deleted // Cancel pick if picked collection folder was deleted
if (this.picked && this.picked.pickedType === "teams-folder" && this.picked.folderID === this.folder.id) { if (
this.picked &&
this.picked.pickedType === "teams-folder" &&
this.picked.folderID === this.folder.id
) {
this.$emit("select", { picked: null }) this.$emit("select", { picked: null })
} }

View File

@@ -9,7 +9,8 @@
readonly readonly
:value="entry.url" :value="entry.url"
:placeholder="$t('empty_req_name')" :placeholder="$t('empty_req_name')"
class="bg-transparent" class="cursor-pointer text-sm bg-transparent"
@click="$emit('use-entry')"
/> />
</li> </li>
<button <button

View File

@@ -2,9 +2,10 @@
<div> <div>
<div class="show-on-large-screen"> <div class="show-on-large-screen">
<span <span
class="p-2 m-2 truncate" class="p-2 m-2 truncate inline-flex cursor-pointer items-center text-sm"
:class="entryStatus.className" :class="entryStatus.className"
:style="{ '--status-code': entry.status }" :style="{ '--status-code': entry.status }"
@click="$emit('use-entry')"
> >
{{ `${entry.method} \xA0 • \xA0 ${entry.status}` }} {{ `${entry.method} \xA0 • \xA0 ${entry.status}` }}
</span> </span>
@@ -15,7 +16,8 @@
readonly readonly
:value="entry.name" :value="entry.name"
:placeholder="$t('empty_req_name')" :placeholder="$t('empty_req_name')"
class="bg-transparent" class="cursor-pointer text-sm bg-transparent"
@click="$emit('use-entry')"
/> />
</li> </li>
<span> <span>