Reorganized utils files

This commit is contained in:
mgabdev
2019-07-27 21:49:17 -04:00
parent 7fe0390698
commit dd6129e218
29 changed files with 23 additions and 23 deletions

View File

@@ -40,7 +40,7 @@ import { TIMELINE_DELETE } from '../actions/timelines';
import { STORE_HYDRATE } from '../actions/store';
import { REDRAFT } from '../actions/statuses';
import { Map as ImmutableMap, List as ImmutableList, OrderedSet as ImmutableOrderedSet, fromJS } from 'immutable';
import uuid from '../uuid';
import uuid from '../utils/uuid';
import { me } from '../initial_state';
import { unescapeHTML } from '../utils/html';

View File

@@ -5,7 +5,7 @@ import {
import { CONTEXT_FETCH_SUCCESS } from '../actions/statuses';
import { TIMELINE_DELETE, TIMELINE_UPDATE } from '../actions/timelines';
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
import compareId from '../compare_id';
import compareId from '../utils/compare_id';
const initialState = ImmutableMap({
inReplyTos: ImmutableMap(),

View File

@@ -8,7 +8,7 @@ import {
CONVERSATIONS_UPDATE,
CONVERSATIONS_READ,
} from '../actions/conversations';
import compareId from '../compare_id';
import compareId from '../utils/compare_id';
const initialState = ImmutableMap({
items: ImmutableList(),

View File

@@ -16,7 +16,7 @@ import {
} from '../actions/accounts';
import { TIMELINE_DELETE, TIMELINE_DISCONNECT } from '../actions/timelines';
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
import compareId from '../compare_id';
import compareId from '../utils/compare_id';
const initialState = ImmutableMap({
items: ImmutableList(),

View File

@@ -4,7 +4,7 @@ import { STORE_HYDRATE } from '../actions/store';
import { EMOJI_USE } from '../actions/emojis';
import { LIST_DELETE_SUCCESS, LIST_FETCH_FAIL } from '../actions/lists';
import { Map as ImmutableMap, fromJS } from 'immutable';
import uuid from '../uuid';
import uuid from '../utils/uuid';
const initialState = ImmutableMap({
saved: true,

View File

@@ -18,7 +18,7 @@ import {
ACCOUNT_UNFOLLOW_SUCCESS,
} from '../actions/accounts';
import { Map as ImmutableMap, List as ImmutableList, fromJS } from 'immutable';
import compareId from '../compare_id';
import compareId from '../utils/compare_id';
import { GROUP_REMOVE_STATUS_SUCCESS } from '../actions/groups';
const initialState = ImmutableMap();