mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
172 lines
4.9 KiB
JavaScript
Executable File
172 lines
4.9 KiB
JavaScript
Executable File
import React from "react"
|
|
import config from "config"
|
|
import { Select } from "antd"
|
|
|
|
export default [
|
|
{
|
|
"id": "language",
|
|
"storaged": true,
|
|
"group": "general",
|
|
"component": "Select",
|
|
"icon": "MdTranslate",
|
|
"title": "Language",
|
|
"description": "Choose a language for the application",
|
|
"props": {
|
|
children: config.i18n.languages.map((language) => {
|
|
return <Select.Option value={language.locale}>{language.name}</Select.Option>
|
|
})
|
|
},
|
|
"emitEvent": "changeLanguage"
|
|
},
|
|
{
|
|
"id": "forceMobileMode",
|
|
"storaged": true,
|
|
"group": "general",
|
|
"component": "Switch",
|
|
"icon": "MdSmartphone",
|
|
"title": "Force Mobile Mode",
|
|
"description": "Force the application to run in mobile mode.",
|
|
"emitEvent": "forceMobileMode"
|
|
},
|
|
{
|
|
"id": "haptic_feedback",
|
|
"storaged": true,
|
|
"group": "general",
|
|
"component": "Switch",
|
|
"icon": "MdVibration",
|
|
"title": "Haptic Feedback",
|
|
"description": "Enable haptic feedback on touch events.",
|
|
},
|
|
{
|
|
"id": "selection_longPress_timeout",
|
|
"storaged": true,
|
|
"group": "general",
|
|
"component": "Slider",
|
|
"icon": "MdTimer",
|
|
"title": "Selection press delay",
|
|
"description": "Set the delay before the selection trigger is activated.",
|
|
"props": {
|
|
min: 300,
|
|
max: 2000,
|
|
step: 100,
|
|
marks: {
|
|
300: "0.3s",
|
|
600: "0.6s",
|
|
1000: "1s",
|
|
1500: "1.5s",
|
|
2000: "2s",
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"id": "notifications_sound",
|
|
"storaged": true,
|
|
"group": "notifications",
|
|
"component": "Switch",
|
|
"icon": "MdVolumeUp",
|
|
"title": "Notifications Sound",
|
|
"description": "Play a sound when a notification is received.",
|
|
},
|
|
{
|
|
"id": "notifications_vibrate",
|
|
"storaged": true,
|
|
"group": "notifications",
|
|
"component": "Switch",
|
|
"icon": "MdVibration",
|
|
"title": "Vibration",
|
|
"description": "Vibrate the device when a notification is received.",
|
|
"emitEvent": "changeNotificationsVibrate"
|
|
},
|
|
{
|
|
"id": "notifications_sound_volume",
|
|
"storaged": true,
|
|
"group": "notifications",
|
|
"component": "Slider",
|
|
"icon": "MdVolumeUp",
|
|
"title": "Sound Volume",
|
|
"description": "Set the volume of the sound when a notification is received.",
|
|
"props": {
|
|
tipFormatter: (value) => {
|
|
return `${value}%`
|
|
}
|
|
},
|
|
"emitEvent": "changeNotificationsSoundVolume"
|
|
},
|
|
{
|
|
"id": "edit_sidebar",
|
|
"storaged": true,
|
|
"group": "sidebar",
|
|
"component": "Button",
|
|
"icon": "Edit",
|
|
"title": "Edit Sidebar",
|
|
"emitEvent": "edit_sidebar",
|
|
"noStorage": true
|
|
},
|
|
{
|
|
"id": "collapseOnLooseFocus",
|
|
"storaged": true,
|
|
"group": "sidebar",
|
|
"component": "Switch",
|
|
"icon": "Columns",
|
|
"title": "Auto Collapse",
|
|
"description": "Collapse the sidebar when loose focus",
|
|
"emitEvent": "settingChanged.sidebar_collapse",
|
|
},
|
|
{
|
|
"id": "autoCollapseDelay",
|
|
"storaged": true,
|
|
"group": "sidebar",
|
|
"component": "Slider",
|
|
"icon": "MdTimer",
|
|
"dependsOn": {
|
|
"collapseOnLooseFocus": true
|
|
},
|
|
"title": "Auto Collapse timeout",
|
|
"description": "Set the delay before the sidebar is collapsed",
|
|
"props": {
|
|
min: 0,
|
|
max: 2000,
|
|
step: 100,
|
|
marks: {
|
|
0: "No delay",
|
|
600: "0.6s",
|
|
1000: "1s",
|
|
1500: "1.5s",
|
|
2000: "2s",
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"id": "feed_max_fetch",
|
|
"title": "Fetch max items",
|
|
"description": "Set the maximum number of items to load per fetch in the feed list",
|
|
"component": "Slider",
|
|
"icon": "MdFormatListNumbered",
|
|
"group": "posts",
|
|
"props": {
|
|
min: 5,
|
|
max: 50,
|
|
},
|
|
"storaged": true,
|
|
},
|
|
{
|
|
"id": "postCard_carrusel_auto",
|
|
"title": "Auto show post media",
|
|
"description": "Automatically show the post medias when the post has multiple medias",
|
|
"component": "Switch",
|
|
"icon": "MdPhotoCameraBack",
|
|
"group": "posts",
|
|
"storaged": true,
|
|
"emitEvent": "router.forceUpdate"
|
|
},
|
|
{
|
|
"id": "postCard_expansible_actions",
|
|
"title": "Expansible actions",
|
|
"description": "Automatically show or hide the actions bar",
|
|
"component": "Switch",
|
|
"icon": "MdCallToAction",
|
|
"group": "posts",
|
|
"storaged": true,
|
|
"emitEvent": "router.forceUpdate"
|
|
},
|
|
] |