mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
35 lines
1.2 KiB
JavaScript
Executable File
35 lines
1.2 KiB
JavaScript
Executable File
function SettingStoragedValue(e){
|
|
try {
|
|
const fromStorage = JSON.parse(localStorage.getItem('app_settings'))
|
|
const Ite = fromStorage.map(item => {
|
|
return item.SettingID === e? item.value : null
|
|
})
|
|
const fr = Ite.filter(Boolean)
|
|
return fr.toString()
|
|
}
|
|
catch (error) {
|
|
return null
|
|
}
|
|
}
|
|
const fromStorage = JSON.parse(localStorage.getItem('app_settings'))
|
|
|
|
export var AppSettings = {
|
|
// Global Behaviors
|
|
InfiniteLoading: false,
|
|
InfiniteLogin: false,
|
|
InfiniteRegister: false,
|
|
DisableLogin: false,
|
|
DisableRegister: true,
|
|
DisablePasswordRecover: true,
|
|
disable_pro_tool: fromStorage? SettingStoragedValue('disable_pro_tool') : false,
|
|
force_showDevLogs: fromStorage? SettingStoragedValue('force_showDevLogs') : false,
|
|
SignForNotExpire: fromStorage? SettingStoragedValue('sessions_noexpire') : false,
|
|
auto_search_ontype: fromStorage? SettingStoragedValue('auto_search_ontype') : false,
|
|
auto_feedrefresh: fromStorage? SettingStoragedValue('auto_feedrefresh') : false,
|
|
auto_hide_postbar: fromStorage? SettingStoragedValue('auto_hide_postbar') : true,
|
|
MaxLengthPosts: '512',
|
|
CurrentBundle: 'light_ng',
|
|
// In KB
|
|
MaximunAPIPayload: '101376',
|
|
limit_post_catch: '20'
|
|
} |