🚚 Moving or renaming files
This commit is contained in:
@@ -50,7 +50,7 @@ export default {
|
||||
show: Boolean,
|
||||
},
|
||||
components: {
|
||||
modal: () => import("../../components/modal"),
|
||||
modal: () => import("../../components/ui/modal"),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -50,7 +50,7 @@ export default {
|
||||
collectionIndex: Number,
|
||||
},
|
||||
components: {
|
||||
modal: () => import("../../components/modal"),
|
||||
modal: () => import("../../components/ui/modal"),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -50,7 +50,7 @@ export default {
|
||||
editingCollectionIndex: Number,
|
||||
},
|
||||
components: {
|
||||
modal: () => import("../../components/modal"),
|
||||
modal: () => import("../../components/ui/modal"),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -47,7 +47,7 @@ export default {
|
||||
folderIndex: Number,
|
||||
},
|
||||
components: {
|
||||
modal: () => import("../../components/modal"),
|
||||
modal: () => import("../../components/ui/modal"),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -78,7 +78,7 @@ export default {
|
||||
requestIndex: Number,
|
||||
},
|
||||
components: {
|
||||
modal: () => import("../../components/modal"),
|
||||
modal: () => import("../../components/ui/modal"),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -88,7 +88,7 @@ export default {
|
||||
show: Boolean,
|
||||
},
|
||||
components: {
|
||||
modal: () => import("../../components/modal"),
|
||||
modal: () => import("../../components/ui/modal"),
|
||||
},
|
||||
computed: {
|
||||
collectionJson() {
|
||||
|
||||
@@ -113,7 +113,7 @@ import { fb } from "../../functions/fb"
|
||||
export default {
|
||||
components: {
|
||||
collection,
|
||||
"pw-section": () => import("../section"),
|
||||
"pw-section": () => import("../layout/section"),
|
||||
addCollection: () => import("./addCollection"),
|
||||
addFolder: () => import("./addFolder"),
|
||||
editCollection: () => import("./editCollection"),
|
||||
|
||||
@@ -86,7 +86,7 @@ export default {
|
||||
editingRequest: Object,
|
||||
},
|
||||
components: {
|
||||
modal: () => import("../../components/modal"),
|
||||
modal: () => import("../../components/ui/modal"),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -50,7 +50,7 @@ export default {
|
||||
show: Boolean,
|
||||
},
|
||||
components: {
|
||||
modal: () => import("../../components/modal"),
|
||||
modal: () => import("../../components/ui/modal"),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -126,7 +126,7 @@ export default {
|
||||
editingEnvironmentIndex: Number,
|
||||
},
|
||||
components: {
|
||||
modal: () => import("../../components/modal"),
|
||||
modal: () => import("../../components/ui/modal"),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -88,7 +88,7 @@ export default {
|
||||
show: Boolean,
|
||||
},
|
||||
components: {
|
||||
modal: () => import("../../components/modal"),
|
||||
modal: () => import("../../components/ui/modal"),
|
||||
},
|
||||
computed: {
|
||||
environmentJson() {
|
||||
|
||||
@@ -71,7 +71,7 @@ const updateOnLocalStorage = (propertyName, property) =>
|
||||
export default {
|
||||
components: {
|
||||
environment,
|
||||
"pw-section": () => import("../section"),
|
||||
"pw-section": () => import("../layout/section"),
|
||||
addEnvironment: () => import("./addEnvironment"),
|
||||
editEnvironment: () => import("./editEnvironment"),
|
||||
importExportEnvironment: () => import("./importExportEnvironment"),
|
||||
|
||||
@@ -320,15 +320,15 @@ ol {
|
||||
</style>
|
||||
|
||||
<script>
|
||||
import { findStatusGroup } from "../pages/index"
|
||||
import { fb } from "../functions/fb"
|
||||
import { findStatusGroup } from "../../pages/index"
|
||||
import { fb } from "../../functions/fb"
|
||||
|
||||
const updateOnLocalStorage = (propertyName, property) =>
|
||||
window.localStorage.setItem(propertyName, JSON.stringify(property))
|
||||
|
||||
export default {
|
||||
components: {
|
||||
"pw-section": () => import("./section"),
|
||||
"pw-section": () => import("../layout/section"),
|
||||
VirtualList: () => import("vue-virtual-scroll-list"),
|
||||
},
|
||||
data() {
|
||||
@@ -23,8 +23,8 @@ const DEFAULT_THEME = "twilight"
|
||||
|
||||
import ace from "ace-builds"
|
||||
import "ace-builds/webpack-resolver"
|
||||
import jsonParse from "../functions/jsonParse"
|
||||
import debounce from "../functions/utils/debounce"
|
||||
import jsonParse from "../../functions/jsonParse"
|
||||
import debounce from "../../functions/utils/debounce"
|
||||
|
||||
export default {
|
||||
props: {
|
||||
@@ -720,8 +720,8 @@ import { fb } from "../functions/fb"
|
||||
|
||||
export default {
|
||||
components: {
|
||||
logo: () => import("../components/logo"),
|
||||
modal: () => import("../components/modal"),
|
||||
logo: () => import("../components/layout/logo"),
|
||||
modal: () => import("../components/ui/modal"),
|
||||
login: () => import("../components/firebase/login"),
|
||||
},
|
||||
|
||||
|
||||
@@ -302,11 +302,11 @@
|
||||
</style>
|
||||
|
||||
<script>
|
||||
import AceEditor from "../components/ace-editor"
|
||||
import AceEditor from "../components/ui/ace-editor"
|
||||
|
||||
export default {
|
||||
components: {
|
||||
"pw-section": () => import("../components/section"),
|
||||
"pw-section": () => import("../components/layout/section"),
|
||||
Editor: AceEditor,
|
||||
},
|
||||
|
||||
|
||||
@@ -351,7 +351,7 @@ import axios from "axios"
|
||||
import * as gql from "graphql"
|
||||
import textareaAutoHeight from "../directives/textareaAutoHeight"
|
||||
import { commonHeaders } from "../functions/headers"
|
||||
import AceEditor from "../components/ace-editor"
|
||||
import AceEditor from "../components/ui/ace-editor"
|
||||
import QueryEditor from "../components/graphql/queryeditor"
|
||||
import { getPlatformSpecialKey } from "~/functions/platformutils"
|
||||
import { sendNetworkRequest } from "../functions/network"
|
||||
@@ -361,10 +361,10 @@ export default {
|
||||
textareaAutoHeight,
|
||||
},
|
||||
components: {
|
||||
"pw-section": () => import("../components/section"),
|
||||
"pw-section": () => import("../components/layout/section"),
|
||||
"gql-field": () => import("../components/graphql/field"),
|
||||
"gql-type": () => import("../components/graphql/type"),
|
||||
autocomplete: () => import("../components/autocomplete"),
|
||||
autocomplete: () => import("../components/ui/autocomplete"),
|
||||
Editor: AceEditor,
|
||||
QueryEditor: QueryEditor,
|
||||
},
|
||||
|
||||
@@ -1301,7 +1301,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import section from "../components/section"
|
||||
import section from "../components/layout/section"
|
||||
import url from "url"
|
||||
import querystring from "querystring"
|
||||
import { commonHeaders } from "../functions/headers"
|
||||
@@ -1310,7 +1310,7 @@ import parseCurlCommand from "../assets/js/curlparser.js"
|
||||
import getEnvironmentVariablesFromScript from "../functions/preRequest"
|
||||
import runTestScriptWithVariables from "../functions/postwomanTesting"
|
||||
import parseTemplateString from "../functions/templating"
|
||||
import AceEditor from "../components/ace-editor"
|
||||
import AceEditor from "../components/ui/ace-editor"
|
||||
import { tokenRequest, oauthRedirect } from "../assets/js/oauth"
|
||||
import { sendNetworkRequest } from "../functions/network"
|
||||
import { fb } from "../functions/fb"
|
||||
@@ -1370,10 +1370,10 @@ export default {
|
||||
},
|
||||
components: {
|
||||
"pw-section": section,
|
||||
"pw-toggle": () => import("../components/toggle"),
|
||||
"pw-modal": () => import("../components/modal"),
|
||||
history: () => import("../components/history"),
|
||||
autocomplete: () => import("../components/autocomplete"),
|
||||
"pw-toggle": () => import("../components/ui/toggle"),
|
||||
"pw-modal": () => import("../components/ui/modal"),
|
||||
history: () => import("../components/layout/history"),
|
||||
autocomplete: () => import("../components/ui/autocomplete"),
|
||||
collections: () => import("../components/collections"),
|
||||
saveRequestAs: () => import("../components/collections/saveRequestAs"),
|
||||
Editor: AceEditor,
|
||||
|
||||
@@ -1451,7 +1451,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import section from "../components/section"
|
||||
import section from "../components/layout/section"
|
||||
import url from "url"
|
||||
import querystring from "querystring"
|
||||
import { commonHeaders } from "../functions/headers"
|
||||
@@ -1460,7 +1460,7 @@ import parseCurlCommand from "../assets/js/curlparser.js"
|
||||
import getEnvironmentVariablesFromScript from "../functions/preRequest"
|
||||
import runTestScriptWithVariables from "../functions/postwomanTesting"
|
||||
import parseTemplateString from "../functions/templating"
|
||||
import AceEditor from "../components/ace-editor"
|
||||
import AceEditor from "../components/ui/ace-editor"
|
||||
import { tokenRequest, oauthRedirect } from "../assets/js/oauth"
|
||||
import { sendNetworkRequest } from "../functions/network"
|
||||
import { fb } from "../functions/fb"
|
||||
@@ -1524,9 +1524,9 @@ export default {
|
||||
components: {
|
||||
"pw-section": section,
|
||||
"pw-toggle": () => import("../components/toggle"),
|
||||
"pw-modal": () => import("../components/modal"),
|
||||
history: () => import("../components/history"),
|
||||
autocomplete: () => import("../components/autocomplete"),
|
||||
"pw-modal": () => import("../components/ui/modal"),
|
||||
history: () => import("../components/layout/history"),
|
||||
autocomplete: () => import("../components/ui/autocomplete"),
|
||||
collections: () => import("../components/collections"),
|
||||
saveRequestAs: () => import("../components/collections/saveRequestAs"),
|
||||
Editor: AceEditor,
|
||||
|
||||
@@ -168,7 +168,7 @@ div.log {
|
||||
<script>
|
||||
export default {
|
||||
components: {
|
||||
"pw-section": () => import("../components/section"),
|
||||
"pw-section": () => import("../components/layout/section"),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -211,8 +211,10 @@
|
||||
class="link"
|
||||
href="https://apollosoftware.xyz/legal/postwoman"
|
||||
target="_blank"
|
||||
rel="noopener">
|
||||
{{ $t("apollosw_privacy_policy") }} </a>.
|
||||
rel="noopener"
|
||||
>
|
||||
{{ $t("apollosw_privacy_policy") }} </a
|
||||
>.
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
@@ -243,8 +245,8 @@ import { fb } from "../functions/fb"
|
||||
|
||||
export default {
|
||||
components: {
|
||||
"pw-section": () => import("../components/section"),
|
||||
"pw-toggle": () => import("../components/toggle"),
|
||||
"pw-section": () => import("../components/layout/section"),
|
||||
"pw-toggle": () => import("../components/ui/toggle"),
|
||||
swatch: () => import("../components/settings/swatch"),
|
||||
},
|
||||
|
||||
@@ -341,7 +343,8 @@ export default {
|
||||
|
||||
FRAME_COLORS_ENABLED: this.$store.state.postwoman.settings.FRAME_COLORS_ENABLED || false,
|
||||
PROXY_ENABLED: this.$store.state.postwoman.settings.PROXY_ENABLED || false,
|
||||
PROXY_URL: this.$store.state.postwoman.settings.PROXY_URL || "https://postwoman.apollosoftware.xyz/",
|
||||
PROXY_URL:
|
||||
this.$store.state.postwoman.settings.PROXY_URL || "https://postwoman.apollosoftware.xyz/",
|
||||
PROXY_KEY: this.$store.state.postwoman.settings.PROXY_KEY || "",
|
||||
|
||||
EXTENSIONS_ENABLED:
|
||||
@@ -641,8 +644,8 @@ export default {
|
||||
fb.writeSettings("syncEnvironments", true)
|
||||
},
|
||||
resetProxy({ target }) {
|
||||
this.settings.PROXY_URL = `https://postwoman.apollosoftware.xyz/`;
|
||||
target.innerHTML = this.doneButton;
|
||||
this.settings.PROXY_URL = `https://postwoman.apollosoftware.xyz/`
|
||||
target.innerHTML = this.doneButton
|
||||
this.$toast.info(this.$t("cleared"), {
|
||||
icon: "clear_all",
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user