Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
7058f0c8
Commit
7058f0c8
authored
Oct 28, 2023
by
Steven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: add docs link in settings
parent
f532ccdf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
2 deletions
+44
-2
SSOSection.tsx
web/src/components/Settings/SSOSection.tsx
+13
-1
StorageSection.tsx
web/src/components/Settings/StorageSection.tsx
+20
-1
SystemSection.tsx
web/src/components/Settings/SystemSection.tsx
+11
-0
No files found.
web/src/components/Settings/SSOSection.tsx
View file @
7058f0c8
import
{
Divider
}
from
"@mui/joy"
;
import
{
Divider
,
List
,
ListItem
}
from
"@mui/joy"
;
import
{
useEffect
,
useState
}
from
"react"
;
import
{
toast
}
from
"react-hot-toast"
;
import
{
Link
}
from
"react-router-dom"
;
import
*
as
api
from
"@/helpers/api"
;
import
{
useGlobalStore
}
from
"@/store/module"
;
import
{
useTranslate
}
from
"@/utils/i18n"
;
...
...
@@ -104,6 +105,17 @@ const SSOSection = () => {
</
div
>
</
div
>
))
}
<
div
className=
"w-full mt-8"
>
<
p
className=
"text-sm"
>
{
t
(
"common.learn-more"
)
}
</
p
>
<
List
component=
"ul"
marker=
"disc"
size=
"sm"
>
<
ListItem
>
<
Link
className=
"text-sm hover:underline hover:text-blue-600"
to=
"https://www.usememos.com/docs/get-started/keycloak"
>
Configuring Keycloak for Authentication
</
Link
>
</
ListItem
>
</
List
>
</
div
>
</
div
>
);
};
...
...
web/src/components/Settings/StorageSection.tsx
View file @
7058f0c8
import
{
Divider
,
IconButton
,
Radio
,
RadioGroup
}
from
"@mui/joy"
;
import
{
Divider
,
IconButton
,
List
,
ListItem
,
Radio
,
RadioGroup
}
from
"@mui/joy"
;
import
{
useEffect
,
useState
}
from
"react"
;
import
{
toast
}
from
"react-hot-toast"
;
import
{
Link
}
from
"react-router-dom"
;
import
*
as
api
from
"@/helpers/api"
;
import
{
useGlobalStore
}
from
"@/store/module"
;
import
{
useTranslate
}
from
"@/utils/i18n"
;
...
...
@@ -122,6 +123,24 @@ const StorageSection = () => {
</
div
>
))
}
</
div
>
<
div
className=
"w-full mt-4"
>
<
p
className=
"text-sm"
>
{
t
(
"common.learn-more"
)
}
</
p
>
<
List
component=
"ul"
marker=
"disc"
size=
"sm"
>
<
ListItem
>
<
Link
className=
"text-sm hover:underline hover:text-blue-600"
to=
"https://www.usememos.com/docs/get-started/local-storage"
>
Docs - Local storage
</
Link
>
</
ListItem
>
<
ListItem
>
<
Link
className=
"text-sm hover:underline hover:text-blue-600"
to=
"https://www.usememos.com/blog/choosing-a-storage-for-your-resource"
>
Choosing a Storage for Your Resource: Database, S3 or Local Storage?
</
Link
>
</
ListItem
>
</
List
>
</
div
>
</
div
>
);
};
...
...
web/src/components/Settings/SystemSection.tsx
View file @
7058f0c8
import
{
Button
,
Divider
,
Input
,
Switch
,
Textarea
,
Tooltip
}
from
"@mui/joy"
;
import
{
useEffect
,
useState
}
from
"react"
;
import
{
toast
}
from
"react-hot-toast"
;
import
{
Link
}
from
"react-router-dom"
;
import
*
as
api
from
"@/helpers/api"
;
import
{
formatBytes
}
from
"@/helpers/utils"
;
import
{
useGlobalStore
}
from
"@/store/module"
;
...
...
@@ -370,6 +371,16 @@ const SystemSection = () => {
value=
{
state
.
additionalScript
}
onChange=
{
(
event
)
=>
handleAdditionalScriptChanged
(
event
.
target
.
value
)
}
/>
<
div
className=
"w-full"
>
<
Link
className=
"text-gray-500 text-sm flex flex-row justify-start items-center mt-2 hover:underline hover:text-blue-600"
to=
"https://usememos.com/docs/get-started/custom-style-and-script"
target=
"_blank"
>
{
t
(
"common.learn-more"
)
}
<
Icon
.
ExternalLink
className=
"inline w-4 h-auto ml-1"
/>
</
Link
>
</
div
>
</
div
>
);
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment