-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(UI): Provide relative route for UI #231
Conversation
@orpiske @Croway I provided this PR and tried to run the router directly but I was having the following error:
I guess I need to provide a different folder than |
In addition to that, could be possible that some dependencies weren't updated? I'm seeing changes in the |
how are you running it? it could be related to some cleanups I did yesterday |
Interesting, I cloned your repo, and it is trying to connect to And is kind of expected since Moreover, I think that |
@lordrip the issue with using is
in case of VITE_API_URL = "/", |
I did the following change to the vite.config.ts:
and created a Anyway, I do not know if .env files are a good practice here, but I think that this way we have more freedom (running UI and wanaku-router in different servers for example) Right now, a cors configuration is created only for quarkus dev run
|
@Croway I didn't consider the automatic openapi client 🤔 , thanks for the heads-up. I might be missing something here but I don't think we need env files nor prod mode for vite 🤔 Here's my reasoning, when running the UI ( When running through quinoa, the webapp should already be built, therefore we have the quarkus config providing the env variable that ultimately gets into the |
I think you're right, it looks like we're bootstraping the UI in dev mode when running |
I'll try to run the project again and try the different combinations, but all in all, although we might not need the |
When running the UI through quinoa, you will be accessing it through a quarkus endpoint, whereas when running the UI in standalone mode you will be accessing it from another server. This is important because depending on where you are running from, the API address will change. The solution is to set a relative route in the `application.properties` file so the services are call relative to the providing host. For local development, a default value of `http://localhost:8080` is provided. fix: wanaku-ai#229
9a8ee92
to
e59c925
Compare
ui/src/custom-fetch.ts
Outdated
const baseUrl = VITE_API_URL || window.location.origin; | ||
const url = new URL(baseUrl + contextUrl, baseUrl); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First, we calculate the baseUrl
by checking whether the VITE_API_URL
env variable was set, otherwise, we fall back to the URL from where the UI is being served.
After that, we pass it to the URL constructor to build the URL considering the baseUrl
https://developer.mozilla.org/en-US/docs/Web/API/URL#usage_notes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Croway this took care of both running the UI through mvn quarkus:dev
and building the CLI locally and running it in PROD
mode.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@orpiske when you have the time, please check it again, especially around serving the router from a different port 🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure thing. I will re-review it today, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sounds good!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lordrip shouldn't it be new URL(contextUrl, baseUrl)
?
@lordrip I have just tried the latest code and here's the results:
For the LLMChat it still keeps trying to access localhost:8080 ![]() |
@orpiske it might be because of this line when it connects as mcp client: https://github.com/wanaku-ai/wanaku/blob/main/ui/src/Pages/LLMChat/LLMChatPage.tsx#L185 |
Thanks @ibek! @lordrip @Croway Please, do you know how we could adjust this so it picks the variable that you have set? |
@orpiske can you re-execute the tests? |
It's working!!! Thanks! |
Context
When running the UI through quinoa, you will be accessing it through a quarkus endpoint, whereas when running the UI in standalone mode you will be accessing it from another server. This is important because depending on where you are running from, the API address will change.
The solution is to set a relative route in the
application.properties
file so the services are call relative to the providing host.For local development, a default value of
http://localhost:8080
is provided.fix: #229