Files
remark42/frontend/app/common/static_store.ts
T
Konstantin KrivleniaandUmputun 17be003652 #378 Emoji suggestions (#546)
* #378 add emoji suggestion

* #378 use lazy load for nodeEmoji

* #378 apply remark styles only for light theme

* #378 add dark theme

* #378 fix test

* #378 use permanent class names

*  #378 flip if else for readability
2020-01-13 18:26:32 -06:00

36 lines
888 B
TypeScript

import { Config } from './types';
import { QuerySettingsType, querySettings } from './settings';
interface StaticStoreType {
config: Config;
query: QuerySettingsType;
/** used in fetcher, fer example to set comment edit temiout */
serverClientTimeDiff?: number;
}
/**
* Represent store of values that and will not change, or doesn't need reactivity
*
* Initialized once at webpack's entry points (i.e remark.tsx)
*/
export const StaticStore: StaticStoreType = {
config: {
version: '',
edit_duration: 5000,
max_comment_size: 5000,
admins: [],
admin_email: '',
auth_providers: [],
critical_score: 0,
low_score: 0,
positive_score: false,
readonly_age: 0,
max_image_size: 0,
simple_view: false,
anon_vote: false,
email_notifications: false,
emoji_enabled: false,
},
query: querySettings as QuerySettingsType,
};