| Total Complexity | 15 |
| Complexity/F | 1 |
| Lines of Code | 29 |
| Function Count | 15 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | 2 | export const getPostTitle = state => state.post.content.title |
|
| 2 | |||
| 3 | 2 | export const getEditedTitle = state => state.post.editedContent.title |
|
| 4 | |||
| 5 | 2 | export const getPostSlug = state => state.post.content.slug |
|
| 6 | |||
| 7 | 2 | export const getEditedSlug = state => state.post.editedContent.slug |
|
| 8 | |||
| 9 | 2 | export const getPostBrief = state => state.post.content.brief |
|
| 10 | |||
| 11 | 2 | export const getEditedBrief = state => state.post.editedContent.brief |
|
| 12 | |||
| 13 | 2 | export const getPostAuthor = state => state.post.content.author |
|
| 14 | |||
| 15 | 2 | export const getEditedAuthor = state => state.post.editedContent.author |
|
| 16 | |||
| 17 | 2 | export const getPostTime = state => state.post.content.time |
|
| 18 | |||
| 19 | 2 | export const getEditedTime = state => state.post.editedContent.time |
|
| 20 | |||
| 21 | 2 | export const getPostTags = state => state.post.content.tag |
|
| 22 | |||
| 23 | 2 | export const getEditedTags = state => state.post.editedContent.tag |
|
| 24 | |||
| 25 | 2 | export const getEditedContent = state => state.post.editedContent.content |
|
| 26 | |||
| 27 | 2 | export const getSavingContent = state => state.post.editedContent |
|
| 28 | |||
| 29 | export const getIsPostLoading = state => state.post.loading |
||
| 30 |