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