mirror of
https://github.com/open-webui/open-webui
synced 2025-05-19 20:57:54 +00:00
refac: openwebui.com integration
This commit is contained in:
parent
32a8884c0c
commit
1c7dd7b859
@ -138,13 +138,9 @@
|
|||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
window.addEventListener('message', async (event) => {
|
window.addEventListener('message', async (event) => {
|
||||||
if (
|
if (
|
||||||
![
|
!['https://openwebui.com', 'https://www.openwebui.com', 'http://localhost:5173'].includes(
|
||||||
'https://ollamahub.com',
|
event.origin
|
||||||
'https://www.ollamahub.com',
|
)
|
||||||
'https://openwebui.com',
|
|
||||||
'https://www.openwebui.com',
|
|
||||||
'http://localhost:5173'
|
|
||||||
].includes(event.origin)
|
|
||||||
)
|
)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -57,13 +57,9 @@
|
|||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
window.addEventListener('message', async (event) => {
|
window.addEventListener('message', async (event) => {
|
||||||
if (
|
if (
|
||||||
![
|
!['https://openwebui.com', 'https://www.openwebui.com', 'http://localhost:5173'].includes(
|
||||||
'https://ollamahub.com',
|
event.origin
|
||||||
'https://www.ollamahub.com',
|
)
|
||||||
'https://openwebui.com',
|
|
||||||
'https://www.openwebui.com',
|
|
||||||
'http://localhost:5173'
|
|
||||||
].includes(event.origin)
|
|
||||||
)
|
)
|
||||||
return;
|
return;
|
||||||
const prompt = JSON.parse(event.data);
|
const prompt = JSON.parse(event.data);
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
<script lang="ts">
|
|
||||||
import { goto } from '$app/navigation';
|
|
||||||
import { onMount } from 'svelte';
|
|
||||||
|
|
||||||
onMount(async () => {
|
|
||||||
window.addEventListener('message', async (event) => {
|
|
||||||
if (
|
|
||||||
![
|
|
||||||
'https://ollamahub.com',
|
|
||||||
'https://www.ollamahub.com',
|
|
||||||
'https://openwebui.com',
|
|
||||||
'https://www.openwebui.com',
|
|
||||||
'http://localhost:5173'
|
|
||||||
].includes(event.origin)
|
|
||||||
)
|
|
||||||
return;
|
|
||||||
const prompts = JSON.parse(event.data);
|
|
||||||
sessionStorage.modelfile = JSON.stringify(prompts);
|
|
||||||
|
|
||||||
goto('/workspace/prompts/create');
|
|
||||||
});
|
|
||||||
|
|
||||||
if (window.opener ?? false) {
|
|
||||||
window.opener.postMessage('loaded', '*');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
Loading…
Reference in New Issue
Block a user