save
This commit is contained in:
parent
5041a3c5a3
commit
804a618053
5
.wundergraph/operations/Cloudron.graphql
Normal file
5
.wundergraph/operations/Cloudron.graphql
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
query {
|
||||||
|
cloudron_getProfile {
|
||||||
|
email
|
||||||
|
}
|
||||||
|
}
|
@ -1,6 +0,0 @@
|
|||||||
query Dragons {
|
|
||||||
spacex_dragons {
|
|
||||||
name
|
|
||||||
active
|
|
||||||
}
|
|
||||||
}
|
|
11
.wundergraph/operations/Me.graphql
Normal file
11
.wundergraph/operations/Me.graphql
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
query {
|
||||||
|
system_db_users_me {
|
||||||
|
id
|
||||||
|
first_name
|
||||||
|
last_name
|
||||||
|
avatar {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
external_identifier
|
||||||
|
}
|
||||||
|
}
|
5195
.wundergraph/schemas/cloudron.json
Normal file
5195
.wundergraph/schemas/cloudron.json
Normal file
File diff suppressed because it is too large
Load Diff
181
.wundergraph/schemas/placeholder.json
Normal file
181
.wundergraph/schemas/placeholder.json
Normal file
@ -0,0 +1,181 @@
|
|||||||
|
{
|
||||||
|
"openapi": "3.0.0",
|
||||||
|
"info": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"title": "JSON Placeholder API",
|
||||||
|
"description": "See https://jsonplaceholder.typicode.com/"
|
||||||
|
},
|
||||||
|
"servers": [
|
||||||
|
{
|
||||||
|
"url": "https://jsonplaceholder.typicode.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"paths": {
|
||||||
|
"/posts": {
|
||||||
|
"get": {
|
||||||
|
"description": "Returns all posts",
|
||||||
|
"tags": [
|
||||||
|
"Posts"
|
||||||
|
],
|
||||||
|
"operationId": "getPosts",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Successful response",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/PostsList"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/users": {
|
||||||
|
"get": {
|
||||||
|
"description": "Returns all users",
|
||||||
|
"tags": [
|
||||||
|
"Users"
|
||||||
|
],
|
||||||
|
"operationId": "getUsers",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Successful response",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/UserList"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/users/{id}": {
|
||||||
|
"get": {
|
||||||
|
"description": "Returns a user by id",
|
||||||
|
"tags": [
|
||||||
|
"Users"
|
||||||
|
],
|
||||||
|
"operationId": "getUser",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"name": "id",
|
||||||
|
"in": "path",
|
||||||
|
"required": true,
|
||||||
|
"description": "The user id.",
|
||||||
|
"schema": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int64"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Successful response",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/User"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"404": {
|
||||||
|
"description": "User not found"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/posts/{id}": {
|
||||||
|
"get": {
|
||||||
|
"description": "Returns a post by id",
|
||||||
|
"tags": [
|
||||||
|
"Posts"
|
||||||
|
],
|
||||||
|
"operationId": "getPost",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"name": "id",
|
||||||
|
"in": "path",
|
||||||
|
"required": true,
|
||||||
|
"description": "The user id.",
|
||||||
|
"schema": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int64"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Successful response",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/Post"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"404": {
|
||||||
|
"description": "Post not found"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"components": {
|
||||||
|
"schemas": {
|
||||||
|
"PostsList": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/Post"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"UserList": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/User"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Post": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"id",
|
||||||
|
"userId",
|
||||||
|
"title"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "integer"
|
||||||
|
},
|
||||||
|
"userId": {
|
||||||
|
"type": "integer"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"User": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "integer"
|
||||||
|
},
|
||||||
|
"name": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"username": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"email": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -9,11 +9,6 @@ dotenv.config();
|
|||||||
const directusSchema = fs.readFileSync(path.join(path.resolve(), './schemas/directus.graphql'), 'utf8');
|
const directusSchema = fs.readFileSync(path.join(path.resolve(), './schemas/directus.graphql'), 'utf8');
|
||||||
const directusSystemSchema = fs.readFileSync(path.join(path.resolve(), './schemas/directus_system.graphql'), 'utf8');
|
const directusSystemSchema = fs.readFileSync(path.join(path.resolve(), './schemas/directus_system.graphql'), 'utf8');
|
||||||
|
|
||||||
const spaceX = introspect.graphql({
|
|
||||||
apiNamespace: 'spacex',
|
|
||||||
url: 'https://spacex-api.fly.dev/graphql/',
|
|
||||||
});
|
|
||||||
|
|
||||||
const db = introspect.graphql({
|
const db = introspect.graphql({
|
||||||
apiNamespace: 'db',
|
apiNamespace: 'db',
|
||||||
loadSchemaFromString: directusSchema,
|
loadSchemaFromString: directusSchema,
|
||||||
@ -22,6 +17,25 @@ const db = introspect.graphql({
|
|||||||
.addStaticHeader('Authorization', new EnvironmentVariable('DIRECTUS', process.env.DIRECTUS))
|
.addStaticHeader('Authorization', new EnvironmentVariable('DIRECTUS', process.env.DIRECTUS))
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const placeholder = introspect.openApiV2({
|
||||||
|
apiNamespace: 'placeholder',
|
||||||
|
source: {
|
||||||
|
kind: "file",
|
||||||
|
filePath: "./schemas/placeholder.json"
|
||||||
|
},
|
||||||
|
baseURL: 'https://jsonplaceholder.typicode.com',
|
||||||
|
});
|
||||||
|
|
||||||
|
const cloudron = introspect.openApiV2({
|
||||||
|
apiNamespace: 'cloudron',
|
||||||
|
source: {
|
||||||
|
kind: "file",
|
||||||
|
filePath: "./schemas/cloudron.json"
|
||||||
|
},
|
||||||
|
headers: (builder) => builder
|
||||||
|
.addStaticHeader('Authorization', new EnvironmentVariable('CLOUDRON_API', process.env.CLOUDRON_API))
|
||||||
|
});
|
||||||
|
|
||||||
const system_db = introspect.graphql({
|
const system_db = introspect.graphql({
|
||||||
apiNamespace: 'system_db',
|
apiNamespace: 'system_db',
|
||||||
loadSchemaFromString: directusSystemSchema,
|
loadSchemaFromString: directusSystemSchema,
|
||||||
@ -32,7 +46,7 @@ const system_db = introspect.graphql({
|
|||||||
|
|
||||||
// configureWunderGraph emits the configuration
|
// configureWunderGraph emits the configuration
|
||||||
configureWunderGraphApplication({
|
configureWunderGraphApplication({
|
||||||
apis: [spaceX, db, system_db],
|
apis: [db, system_db, placeholder, cloudron],
|
||||||
server,
|
server,
|
||||||
operations,
|
operations,
|
||||||
generate: {
|
generate: {
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
"@sveltejs/adapter-static": "^2.0.3",
|
"@sveltejs/adapter-static": "^2.0.3",
|
||||||
"@sveltejs/kit": "^1.5.0",
|
"@sveltejs/kit": "^1.5.0",
|
||||||
"@tailwindcss/forms": "^0.5.6",
|
"@tailwindcss/forms": "^0.5.6",
|
||||||
"@tauri-apps/cli": "^1.4.0",
|
"@tauri-apps/cli": "2.0.0-alpha.14",
|
||||||
"@types/cookie": "^0.5.1",
|
"@types/cookie": "^0.5.1",
|
||||||
"@types/js-cookie": "^3.0.3",
|
"@types/js-cookie": "^3.0.3",
|
||||||
"@types/jsonwebtoken": "^9.0.2",
|
"@types/jsonwebtoken": "^9.0.2",
|
||||||
|
1453
pnpm-lock.yaml
generated
1453
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
7
src/lib/mockApps.js
Normal file
7
src/lib/mockApps.js
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
export const mockApps = [
|
||||||
|
{ name: 'cloud' },
|
||||||
|
{ name: 'pass'},
|
||||||
|
{ name: 'directus' },
|
||||||
|
{ name: 'penpot'}
|
||||||
|
];
|
||||||
|
|
@ -9,6 +9,8 @@
|
|||||||
<li><a href="/me/banking">Banking</a></li>
|
<li><a href="/me/banking">Banking</a></li>
|
||||||
<li><a href="/me/bookmarks">Bookmarks</a></li>
|
<li><a href="/me/bookmarks">Bookmarks</a></li>
|
||||||
<li><a href="/me/acc">Access Control</a></li>
|
<li><a href="/me/acc">Access Control</a></li>
|
||||||
|
<li><a href="/me/apps">Apps</a></li>
|
||||||
|
<li><a href="/me/resttest">REST</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</aside>
|
</aside>
|
||||||
|
@ -1,11 +1,47 @@
|
|||||||
<script>
|
<script lang="ts">
|
||||||
import HeaderMain from "$lib/layouts/HeaderMain.svelte";
|
import HeaderMain from "$lib/layouts/HeaderMain.svelte";
|
||||||
|
import { createQuery } from "../../lib/wundergraph";
|
||||||
|
import { Avatar } from "@skeletonlabs/skeleton";
|
||||||
|
|
||||||
|
const meQuery = createQuery({
|
||||||
|
operationName: "Me",
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<HeaderMain>
|
<HeaderMain>
|
||||||
<div slot="header">
|
<div slot="header">
|
||||||
<h1>Dashboard</h1>
|
<h1>Profile</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div slot="main">Welcome back, Samuel this is your Dashboard</div>
|
<div slot="main" class="h-full w-full overflow-scroll">
|
||||||
|
<div class="w-full h-full overflow-scroll">
|
||||||
|
{#if $meQuery.isLoading}
|
||||||
|
<p>Loading...</p>
|
||||||
|
{:else if $meQuery.error}
|
||||||
|
<pre>Error: {JSON.stringify($meQuery.error, null, 2)}</pre>
|
||||||
|
{:else}
|
||||||
|
<div class="container mx-auto p-8 space-y-8">
|
||||||
|
<div class="flex items-center space-x-4">
|
||||||
|
<Avatar
|
||||||
|
class="rounded-full w-24"
|
||||||
|
src={`https://directus.andert.me/assets/${
|
||||||
|
$meQuery.data.system_db_users_me?.avatar.id
|
||||||
|
}?access_token=${
|
||||||
|
import.meta.env.VITE_DIRECTUS_TEMPORARY_ACCESS_TOKEN
|
||||||
|
}`}
|
||||||
|
/>
|
||||||
|
<div>
|
||||||
|
<h3 class="h3">Welcome back</h3>
|
||||||
|
<h2 class="h2">
|
||||||
|
{$meQuery.data.system_db_users_me?.first_name}
|
||||||
|
{$meQuery.data.system_db_users_me?.last_name}
|
||||||
|
</h2>
|
||||||
|
{$meQuery.data.system_db_users_me?.external_identifier}
|
||||||
|
<p />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</HeaderMain>
|
</HeaderMain>
|
||||||
|
13
src/routes/me/apps/+page.svelte
Normal file
13
src/routes/me/apps/+page.svelte
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<!-- src/routes/apps/+page.svelte -->
|
||||||
|
<script>
|
||||||
|
import { mockApps } from "$lib/mockApps.js";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<h1>Apps List</h1>
|
||||||
|
<ul>
|
||||||
|
{#each mockApps as app}
|
||||||
|
<li>
|
||||||
|
<a href="/me/apps/{app.name}">{app.name}</a>
|
||||||
|
</li>
|
||||||
|
{/each}
|
||||||
|
</ul>
|
12
src/routes/me/apps/[name]/+page.js
Normal file
12
src/routes/me/apps/[name]/+page.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import { mockApps } from '$lib/mockApps';
|
||||||
|
|
||||||
|
export function load({ params }) {
|
||||||
|
const { name } = params;
|
||||||
|
const app = mockApps.find(a => a.name == name);
|
||||||
|
|
||||||
|
if (app) {
|
||||||
|
return { props: { app } };
|
||||||
|
}
|
||||||
|
|
||||||
|
return { status: 404 };
|
||||||
|
}
|
11
src/routes/me/apps/[name]/+page.svelte
Normal file
11
src/routes/me/apps/[name]/+page.svelte
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<script>
|
||||||
|
/** @type {import('./$types').PageData} */
|
||||||
|
export let data;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<iframe
|
||||||
|
src={`https://${data.props.app.name}.andert.me`}
|
||||||
|
width="100%"
|
||||||
|
height="100%"
|
||||||
|
/> -->
|
26
src/routes/me/resttest/+page.svelte
Normal file
26
src/routes/me/resttest/+page.svelte
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
import HeaderMain from "$lib/layouts/HeaderMain.svelte";
|
||||||
|
import { createQuery } from "../../../lib/wundergraph";
|
||||||
|
|
||||||
|
const cloudronQuery = createQuery({
|
||||||
|
operationName: "Cloudron",
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<HeaderMain>
|
||||||
|
<div slot="header">
|
||||||
|
<h1>Cloudron Test</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div slot="main" class="h-full w-full overflow-scroll">
|
||||||
|
<div class="w-full h-full overflow-scroll">
|
||||||
|
{#if $cloudronQuery.isLoading}
|
||||||
|
<p>Loading...</p>
|
||||||
|
{:else if $cloudronQuery.error}
|
||||||
|
<pre>Error: {JSON.stringify($cloudronQuery.error, null, 2)}</pre>
|
||||||
|
{:else}
|
||||||
|
<pre>{JSON.stringify($cloudronQuery.data, null, 2)}</pre>
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</HeaderMain>
|
Loading…
Reference in New Issue
Block a user