-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathMessageFavoriteFieldsContext.ts
More file actions
48 lines (43 loc) · 1.71 KB
/
MessageFavoriteFieldsContext.ts
File metadata and controls
48 lines (43 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* <http://www.mongodb.com/licensing/server-side-public-license>.
*/
import React from 'react';
import Immutable from 'immutable';
import { singleton } from 'logic/singleton';
import type { FieldTypeMappingsList } from 'views/logic/fieldtypes/types';
import type { Message } from 'views/components/messagelist/Types';
import type { Stream } from 'logic/streams/types';
export type MessageFavoriteFieldsContextState = {
favoriteFields: Array<string>;
saveFavoriteField: (favorites: Array<string>) => void;
messageFields: FieldTypeMappingsList;
toggleField: (field: string) => void;
message: Message;
editableStreams: Array<Stream>;
setFieldsIsPending: boolean;
initialFavoriteFieldsByStream: Record<string, Array<string>>;
};
const MessageFavoriteFieldsContext = React.createContext<MessageFavoriteFieldsContextState>({
favoriteFields: [],
saveFavoriteField: () => {},
messageFields: Immutable.List([]),
toggleField: () => {},
message: undefined,
editableStreams: [],
setFieldsIsPending: false,
initialFavoriteFieldsByStream: {},
});
export default singleton('contexts.MessageFavoriteFieldsContext', () => MessageFavoriteFieldsContext);