-
Notifications
You must be signed in to change notification settings - Fork 5
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
Ask AI page with the fixes mentioned earlier #3
Open
kitanoyoru
wants to merge
26
commits into
main
Choose a base branch
from
feat/ask-ai
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
202bd69
feat(layout): add logo
kitanoyoru 42cc91e
feat(buttons): add switch mode buttons in sidebar
kitanoyoru 19ef3af
feat: ask ai home page
kitanoyoru 05e291c
Add styles in ask-ai pages
Daer0n bc0a170
Little fixes
kitanoyoru f716058
Patch ask-ai page styles
Daer0n 4e4f72e
refactor: logo as button
kitanoyoru eae31a7
patch: input placeholder
kitanoyoru 5d0f2e6
feat: ask-ai input bar in answer page
kitanoyoru 26492c3
feat: styles in ask-ai answer
kitanoyoru 68dfe1c
Dev
kitanoyoru ce0a200
refactor: ask input component
kitanoyoru 79a8651
feat: get what is ims integration
kitanoyoru effbca3
Dev
kitanoyoru e22783e
Dev
kitanoyoru 97cc4a1
Dev
kitanoyoru 8233ead
Dev
kitanoyoru b956c23
fix(AskInput): reset input after submit
Daer0n 8edd35a
fix(AskAnswer): scroll down after new message
Daer0n 2f9ab69
feat(AskAnswer): show translate message
Daer0n 301988a
Merge branch 'main' into feat/ask-ai
kitanoyoru 45d6e1d
Dev
kitanoyoru 31c6249
Dev
kitanoyoru d43cd38
Dev
kitanoyoru ed480e2
Dev
kitanoyoru 68b1811
Merge branch 'main' into feat/ask-ai
kitanoyoru File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add styles in ask-ai pages
- Loading branch information
commit 05e291cc3450d9e36c32ddab1c2664f35744d78a
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
PORT=3000 | ||
API_URL="" | ||
API_URL="" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,34 @@ | ||
.pageWrapper { | ||
display: flex; | ||
width: 100%; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
display: flex; | ||
width: 100%; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.askMessage { | ||
margin-top: 252px; | ||
margin-bottom: 376px; | ||
display: flex; | ||
flex-direction: center; | ||
align-items: center; | ||
} | ||
|
||
.message { | ||
color: #6f6f6f; | ||
font-family: Roboto; | ||
font-size: 36px; | ||
font-style: normal; | ||
font-weight: 500; | ||
line-height: normal; | ||
} | ||
|
||
.dialogBox { | ||
margin-top: 70px; | ||
margin-bottom: 304px; | ||
max-width: 1457px; | ||
display: flex; | ||
flex-direction: center; | ||
align-items: center; | ||
} | ||
justify-content: center; | ||
margin-bottom: 304px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@import '~@assets/styles/variables/colors.scss'; | ||
@import '~@assets/styles/services.scss'; | ||
@import '~@assets/styles/mixins.scss'; | ||
|
||
.wrapper { | ||
position: relative; | ||
width: 100%; | ||
display: flex; | ||
height: $mainContentHeight; | ||
} | ||
|
||
.switch { | ||
position: absolute; | ||
right: 24px; | ||
top: 0; | ||
z-index: 5; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { TScLanguageTab } from 'ostis-ui-lib'; | ||
import { generatePath, Outlet, useLocation, useMatch, useNavigate } from 'react-router'; | ||
import { routes } from '@constants'; | ||
import { useDispatch } from '@hooks/redux'; | ||
import { setFormat } from '@store/commonSlice'; | ||
|
||
import styles from './AskMain.module.scss'; | ||
|
||
const Main = () => { | ||
return ( | ||
<div className={styles.wrapper}> | ||
<Outlet /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Main; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { lazy } from 'react'; | ||
|
||
export const AskMain = lazy(() => import(/* webpackChunkName: "askmain" */ './AskMain')); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
add empty line