File size: 707 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { withStorageKey } from '@automattic/state-utils';
import {
	SUPPORT_ARTICLE_DIALOG_OPEN,
	SUPPORT_ARTICLE_DIALOG_CLOSE,
} from 'calypso/state/action-types';

export default withStorageKey(
	'inlineSupportArticle',
	(
		state = {
			postId: null,
			postUrl: null,
			blogId: null,
		},
		action
	) => {
		switch ( action.type ) {
			case SUPPORT_ARTICLE_DIALOG_OPEN: {
				const {
					postId,
					postUrl = null,
					actionLabel = null,
					actionUrl = null,
					blogId = null,
				} = action;

				return {
					postUrl,
					postId,
					actionLabel,
					actionUrl,
					blogId,
				};
			}
			case SUPPORT_ARTICLE_DIALOG_CLOSE:
				return {
					...state,
				};
		}

		return state;
	}
);