mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
4444377b11
GitOrigin-RevId: b17697c7b52c991a06efcbffa0227b6021c5bc8d
60 lines
1.2 KiB
TypeScript
60 lines
1.2 KiB
TypeScript
import type {
|
|
FontFamily,
|
|
LineHeight,
|
|
OverallTheme,
|
|
} from '../../../../../modules/source-editor/frontend/js/extensions/theme'
|
|
import type {
|
|
Keybindings,
|
|
PdfViewer,
|
|
ProjectCompiler,
|
|
} from '../../../../../types/project-settings'
|
|
import { postJSON } from '../../../infrastructure/fetch-json'
|
|
|
|
export type UserSettings = {
|
|
pdfViewer: PdfViewer
|
|
autoComplete: boolean
|
|
autoPairDelimiters: boolean
|
|
syntaxValidation: boolean
|
|
editorTheme: string
|
|
overallTheme: OverallTheme
|
|
mode: Keybindings
|
|
fontSize: string
|
|
fontFamily: FontFamily
|
|
lineHeight: LineHeight
|
|
}
|
|
|
|
export type ProjectSettings = {
|
|
compiler: ProjectCompiler
|
|
imageName: string
|
|
rootDocId: string
|
|
spellCheckLanguage: string
|
|
}
|
|
|
|
type SaveUserSettings = Partial<
|
|
UserSettings & {
|
|
spellCheckLanguage: ProjectSettings['spellCheckLanguage']
|
|
}
|
|
>
|
|
|
|
export function saveUserSettings(data: SaveUserSettings) {
|
|
postJSON('/user/settings', {
|
|
body: {
|
|
...data,
|
|
},
|
|
})
|
|
}
|
|
|
|
type SaveProjectSettings = {
|
|
projectId: string
|
|
} & Partial<ProjectSettings>
|
|
|
|
export const saveProjectSettings = async ({
|
|
projectId,
|
|
...data
|
|
}: SaveProjectSettings) => {
|
|
await postJSON<never>(`/project/${projectId}/settings`, {
|
|
body: {
|
|
...data,
|
|
},
|
|
})
|
|
}
|