Merge branch 'next' into edge-db
This commit is contained in:
@@ -250,7 +250,7 @@
|
||||
"no_destination_found": "No destination found",
|
||||
"new_error_network_already_exists": "Network {{network}} already configured for another team!",
|
||||
"new": {
|
||||
"saving_and_configuring_proxy": "Saving and configuring proxy...",
|
||||
"saving_and_configuring_proxy": "Saving...",
|
||||
"install_proxy": "This will install a proxy on the destination to allow you to access your applications and services without any manual configuration (recommended for Docker).<br><br>Databases will have their own proxy.",
|
||||
"add_new_destination": "Add New Destination",
|
||||
"predefined_destinations": "Predefined destinations"
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
import { writable, readable, type Writable, type Readable } from 'svelte/store';
|
||||
|
||||
interface AppSession {
|
||||
ipv4: string | null,
|
||||
ipv6: string | null,
|
||||
version: string | null,
|
||||
userId: string | null,
|
||||
teamId: string | null,
|
||||
@@ -17,6 +19,8 @@ interface AppSession {
|
||||
}
|
||||
export const loginEmail: Writable<string | undefined> = writable()
|
||||
export const appSession: Writable<AppSession> = writable({
|
||||
ipv4: null,
|
||||
ipv6: null,
|
||||
version: null,
|
||||
userId: null,
|
||||
teamId: null,
|
||||
@@ -31,7 +35,6 @@ export const appSession: Writable<AppSession> = writable({
|
||||
gitlab: null
|
||||
}
|
||||
});
|
||||
export const isTraefikUsed: Writable<boolean> = writable(false);
|
||||
export const disabledButton: Writable<boolean> = writable(false);
|
||||
export const status: Writable<any> = writable({
|
||||
application: {
|
||||
@@ -41,14 +44,16 @@ export const status: Writable<any> = writable({
|
||||
initialLoading: true
|
||||
},
|
||||
service: {
|
||||
initialLoading: true,
|
||||
isRunning: false,
|
||||
isExited: false,
|
||||
loading: false,
|
||||
isRunning: false
|
||||
initialLoading: true
|
||||
},
|
||||
database: {
|
||||
initialLoading: true,
|
||||
isRunning: false,
|
||||
isExited: false,
|
||||
loading: false,
|
||||
isRunning: false
|
||||
initialLoading: true
|
||||
}
|
||||
|
||||
});
|
||||
@@ -60,7 +65,6 @@ export const features = readable({
|
||||
|
||||
export const location: Writable<null | string> = writable(null)
|
||||
export const setLocation = (resource: any) => {
|
||||
console.log(GITPOD_WORKSPACE_URL)
|
||||
if (GITPOD_WORKSPACE_URL && resource.exposePort) {
|
||||
const { href } = new URL(GITPOD_WORKSPACE_URL);
|
||||
const newURL = href
|
||||
|
||||
Reference in New Issue
Block a user