mirror of
https://github.com/usememos/memos.git
synced 2025-04-03 12:21:15 +02:00
feat: additional script system setting (#467)
This commit is contained in:
parent
3775d5c9c2
commit
ceac53b6d0
@ -10,4 +10,6 @@ type SystemStatus struct {
|
|||||||
AllowSignUp bool `json:"allowSignUp"`
|
AllowSignUp bool `json:"allowSignUp"`
|
||||||
// Additional style.
|
// Additional style.
|
||||||
AdditionalStyle string `json:"additionalStyle"`
|
AdditionalStyle string `json:"additionalStyle"`
|
||||||
|
// Additional script.
|
||||||
|
AdditionalScript string `json:"additionalScript"`
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,8 @@ const (
|
|||||||
SystemSettingAllowSignUpName SystemSettingName = "allowSignUp"
|
SystemSettingAllowSignUpName SystemSettingName = "allowSignUp"
|
||||||
// SystemSettingAdditionalStyleName is the key type of additional style.
|
// SystemSettingAdditionalStyleName is the key type of additional style.
|
||||||
SystemSettingAdditionalStyleName SystemSettingName = "additionalStyle"
|
SystemSettingAdditionalStyleName SystemSettingName = "additionalStyle"
|
||||||
|
// SystemSettingAdditionalScriptName is the key type of additional script.
|
||||||
|
SystemSettingAdditionalScriptName SystemSettingName = "additionalScript"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (key SystemSettingName) String() string {
|
func (key SystemSettingName) String() string {
|
||||||
@ -20,6 +22,8 @@ func (key SystemSettingName) String() string {
|
|||||||
return "allowSignUp"
|
return "allowSignUp"
|
||||||
case SystemSettingAdditionalStyleName:
|
case SystemSettingAdditionalStyleName:
|
||||||
return "additionalStyle"
|
return "additionalStyle"
|
||||||
|
case SystemSettingAdditionalScriptName:
|
||||||
|
return "additionalScript"
|
||||||
}
|
}
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
@ -65,6 +69,12 @@ func (upsert SystemSettingUpsert) Validate() error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed to unmarshal system setting additional style value")
|
return fmt.Errorf("failed to unmarshal system setting additional style value")
|
||||||
}
|
}
|
||||||
|
} else if upsert.Name == SystemSettingAdditionalScriptName {
|
||||||
|
value := ""
|
||||||
|
err := json.Unmarshal([]byte(upsert.Value), &value)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("failed to unmarshal system setting additional script value")
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
return fmt.Errorf("invalid system setting name")
|
return fmt.Errorf("invalid system setting name")
|
||||||
}
|
}
|
||||||
|
@ -38,10 +38,11 @@ func (s *Server) registerSystemRoutes(g *echo.Group) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
systemStatus := api.SystemStatus{
|
systemStatus := api.SystemStatus{
|
||||||
Host: hostUser,
|
Host: hostUser,
|
||||||
Profile: s.Profile,
|
Profile: s.Profile,
|
||||||
AllowSignUp: false,
|
AllowSignUp: false,
|
||||||
AdditionalStyle: "",
|
AdditionalStyle: "",
|
||||||
|
AdditionalScript: "",
|
||||||
}
|
}
|
||||||
|
|
||||||
systemSettingList, err := s.Store.FindSystemSettingList(ctx, &api.SystemSettingFind{})
|
systemSettingList, err := s.Store.FindSystemSettingList(ctx, &api.SystemSettingFind{})
|
||||||
@ -59,6 +60,8 @@ func (s *Server) registerSystemRoutes(g *echo.Group) {
|
|||||||
systemStatus.AllowSignUp = value.(bool)
|
systemStatus.AllowSignUp = value.(bool)
|
||||||
} else if systemSetting.Name == api.SystemSettingAdditionalStyleName {
|
} else if systemSetting.Name == api.SystemSettingAdditionalStyleName {
|
||||||
systemStatus.AdditionalStyle = value.(string)
|
systemStatus.AdditionalStyle = value.(string)
|
||||||
|
} else if systemSetting.Name == api.SystemSettingAdditionalScriptName {
|
||||||
|
systemStatus.AdditionalScript = value.(string)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,6 +30,11 @@ function App() {
|
|||||||
styleEl.setAttribute("type", "text/css");
|
styleEl.setAttribute("type", "text/css");
|
||||||
document.head.appendChild(styleEl);
|
document.head.appendChild(styleEl);
|
||||||
}
|
}
|
||||||
|
if (status.additionalScript) {
|
||||||
|
const scriptEl = document.createElement("script");
|
||||||
|
scriptEl.innerHTML = status.additionalScript;
|
||||||
|
document.head.appendChild(scriptEl);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
@ -80,10 +80,6 @@ const PreferencesSection = () => {
|
|||||||
handleValueChanged={handleDefaultMemoVisibilityChanged}
|
handleValueChanged={handleDefaultMemoVisibilityChanged}
|
||||||
/>
|
/>
|
||||||
</label>
|
</label>
|
||||||
<label className="form-label selector">
|
|
||||||
<span className="normal-text">{t("setting.preference-section.fold-memo")}</span>
|
|
||||||
<Switch className="ml-2" checked={isFoldingEnabled} onChange={handleIsFoldingEnabledChanged} />
|
|
||||||
</label>
|
|
||||||
<label className="form-label selector">
|
<label className="form-label selector">
|
||||||
<span className="normal-text">{t("setting.preference-section.default-memo-sort-option")}</span>
|
<span className="normal-text">{t("setting.preference-section.default-memo-sort-option")}</span>
|
||||||
<Selector
|
<Selector
|
||||||
@ -93,6 +89,10 @@ const PreferencesSection = () => {
|
|||||||
handleValueChanged={handleMemoDisplayTsOptionChanged}
|
handleValueChanged={handleMemoDisplayTsOptionChanged}
|
||||||
/>
|
/>
|
||||||
</label>
|
</label>
|
||||||
|
<label className="form-label selector">
|
||||||
|
<span className="normal-text">{t("setting.preference-section.enable-folding-memo")}</span>
|
||||||
|
<Switch className="ml-2" checked={isFoldingEnabled} onChange={handleIsFoldingEnabledChanged} />
|
||||||
|
</label>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -7,6 +7,7 @@ import "../../less/settings/preferences-section.less";
|
|||||||
interface State {
|
interface State {
|
||||||
allowSignUp: boolean;
|
allowSignUp: boolean;
|
||||||
additionalStyle: string;
|
additionalStyle: string;
|
||||||
|
additionalScript: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
const SystemSection = () => {
|
const SystemSection = () => {
|
||||||
@ -14,6 +15,7 @@ const SystemSection = () => {
|
|||||||
const [state, setState] = useState<State>({
|
const [state, setState] = useState<State>({
|
||||||
allowSignUp: false,
|
allowSignUp: false,
|
||||||
additionalStyle: "",
|
additionalStyle: "",
|
||||||
|
additionalScript: "",
|
||||||
});
|
});
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@ -22,6 +24,7 @@ const SystemSection = () => {
|
|||||||
setState({
|
setState({
|
||||||
allowSignUp: status.allowSignUp,
|
allowSignUp: status.allowSignUp,
|
||||||
additionalStyle: status.additionalStyle,
|
additionalStyle: status.additionalStyle,
|
||||||
|
additionalScript: status.additionalScript,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}, []);
|
}, []);
|
||||||
@ -51,6 +54,20 @@ const SystemSection = () => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleAdditionalScriptChanged = (value: string) => {
|
||||||
|
setState({
|
||||||
|
...state,
|
||||||
|
additionalScript: value,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSaveAdditionalScript = async () => {
|
||||||
|
await api.upsertSystemSetting({
|
||||||
|
name: "additionalScript",
|
||||||
|
value: JSON.stringify(state.additionalScript),
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="section-container preferences-section-container">
|
<div className="section-container preferences-section-container">
|
||||||
<p className="title-text">{t("common.basic")}</p>
|
<p className="title-text">{t("common.basic")}</p>
|
||||||
@ -58,12 +75,12 @@ const SystemSection = () => {
|
|||||||
<span className="normal-text">Allow user signup</span>
|
<span className="normal-text">Allow user signup</span>
|
||||||
<Switch size="sm" checked={state.allowSignUp} onChange={(event) => handleAllowSignUpChanged(event.target.checked)} />
|
<Switch size="sm" checked={state.allowSignUp} onChange={(event) => handleAllowSignUpChanged(event.target.checked)} />
|
||||||
</label>
|
</label>
|
||||||
<label className="form-label selector">
|
<div className="form-label selector">
|
||||||
<span className="normal-text">Additional style</span>
|
<span className="normal-text">Additional style</span>
|
||||||
<Button size="sm" onClick={handleSaveAdditionalStyle}>
|
<Button size="sm" onClick={handleSaveAdditionalStyle}>
|
||||||
Save
|
Save
|
||||||
</Button>
|
</Button>
|
||||||
</label>
|
</div>
|
||||||
<Textarea
|
<Textarea
|
||||||
className="w-full"
|
className="w-full"
|
||||||
sx={{
|
sx={{
|
||||||
@ -75,6 +92,23 @@ const SystemSection = () => {
|
|||||||
defaultValue={state.additionalStyle}
|
defaultValue={state.additionalStyle}
|
||||||
onChange={(event) => handleAdditionalStyleChanged(event.target.value)}
|
onChange={(event) => handleAdditionalStyleChanged(event.target.value)}
|
||||||
/>
|
/>
|
||||||
|
<div className="form-label selector mt-2">
|
||||||
|
<span className="normal-text">Additional script</span>
|
||||||
|
<Button size="sm" onClick={handleSaveAdditionalScript}>
|
||||||
|
Save
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
<Textarea
|
||||||
|
className="w-full"
|
||||||
|
sx={{
|
||||||
|
fontFamily: "monospace",
|
||||||
|
fontSize: "14px",
|
||||||
|
}}
|
||||||
|
minRows={5}
|
||||||
|
maxRows={10}
|
||||||
|
defaultValue={state.additionalScript}
|
||||||
|
onChange={(event) => handleAdditionalScriptChanged(event.target.value)}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -139,7 +139,7 @@
|
|||||||
},
|
},
|
||||||
"preference-section": {
|
"preference-section": {
|
||||||
"default-memo-visibility": "Default memo visibility",
|
"default-memo-visibility": "Default memo visibility",
|
||||||
"fold-memo": "Fold Memo",
|
"enable-folding-memo": "Enable folding memo",
|
||||||
"editor-font-style": "Editor font style",
|
"editor-font-style": "Editor font style",
|
||||||
"mobile-editor-style": "Mobile editor style",
|
"mobile-editor-style": "Mobile editor style",
|
||||||
"default-memo-sort-option": "Display by created/updated time",
|
"default-memo-sort-option": "Display by created/updated time",
|
||||||
|
@ -138,7 +138,7 @@
|
|||||||
},
|
},
|
||||||
"preference-section": {
|
"preference-section": {
|
||||||
"default-memo-visibility": "Chế độ memo mặc định",
|
"default-memo-visibility": "Chế độ memo mặc định",
|
||||||
"fold-memo": "nếp gấp Memo",
|
"enable-folding-memo": "Enable folding memo",
|
||||||
"editor-font-style": "Thay đổi font cho trình soạn thảo",
|
"editor-font-style": "Thay đổi font cho trình soạn thảo",
|
||||||
"mobile-editor-style": "Vị trí editor trên mobile",
|
"mobile-editor-style": "Vị trí editor trên mobile",
|
||||||
"default-memo-sort-option": "Sắp xếp theo thời gian đã tạo",
|
"default-memo-sort-option": "Sắp xếp theo thời gian đã tạo",
|
||||||
|
@ -139,7 +139,7 @@
|
|||||||
},
|
},
|
||||||
"preference-section": {
|
"preference-section": {
|
||||||
"default-memo-visibility": "默认 Memo 可见性",
|
"default-memo-visibility": "默认 Memo 可见性",
|
||||||
"fold-memo": "折叠 Memo",
|
"enable-folding-memo": "开启折叠 Memo",
|
||||||
"editor-font-style": "编辑器字体样式",
|
"editor-font-style": "编辑器字体样式",
|
||||||
"mobile-editor-style": "移动端编辑器样式",
|
"mobile-editor-style": "移动端编辑器样式",
|
||||||
"default-memo-sort-option": "按创建时间/更新时间显示",
|
"default-memo-sort-option": "按创建时间/更新时间显示",
|
||||||
|
1
web/src/types/modules/system.d.ts
vendored
1
web/src/types/modules/system.d.ts
vendored
@ -9,6 +9,7 @@ interface SystemStatus {
|
|||||||
// System settings
|
// System settings
|
||||||
allowSignUp: boolean;
|
allowSignUp: boolean;
|
||||||
additionalStyle: string;
|
additionalStyle: string;
|
||||||
|
additionalScript: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface SystemSetting {
|
interface SystemSetting {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user