aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionViewBase.tsx
diff options
context:
space:
mode:
authorSam Wilkins <abdullah_ahmed@brown.edu>2019-03-18 01:43:50 -0400
committerSam Wilkins <abdullah_ahmed@brown.edu>2019-03-18 01:43:50 -0400
commit34f3b837334eb3d4a9416a8397c88cbd1ca421e0 (patch)
treeb94e5e29e1cce19e5a13df8fd1fee280ba8813dd /src/client/views/collections/CollectionViewBase.tsx
parent748412d972bd466a372fcf384448d3a00b42ee9f (diff)
flashier remote cursors
Diffstat (limited to 'src/client/views/collections/CollectionViewBase.tsx')
-rw-r--r--src/client/views/collections/CollectionViewBase.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/collections/CollectionViewBase.tsx b/src/client/views/collections/CollectionViewBase.tsx
index 02ee49a38..9b5c88d14 100644
--- a/src/client/views/collections/CollectionViewBase.tsx
+++ b/src/client/views/collections/CollectionViewBase.tsx
@@ -14,7 +14,7 @@ import { CollectionView } from "./CollectionView";
import { RouteStore } from "../../../server/RouteStore";
import { TupleField } from "../../../fields/TupleField";
import { DashUserModel } from "../../../server/authentication/models/user_model";
-import { UserUtils } from "../../../server/authentication/models/user_utils";
+import { CurrentUserUtils } from "../../../server/authentication/models/current_user_utils";
export interface CollectionViewProps {
fieldKey: Key;
@@ -53,7 +53,7 @@ export class CollectionViewBase extends React.Component<SubCollectionViewProps>
protected setCursorPosition(position: [number, number]) {
let ind;
let doc = this.props.Document;
- let id = UserUtils.currentUserId;
+ let id = CurrentUserUtils.id;
if (id) {
doc.GetOrCreateAsync<ListField<CursorEntry>>(KeyStore.Cursors, ListField, field => {
let cursors = field.Data;
@@ -71,7 +71,7 @@ export class CollectionViewBase extends React.Component<SubCollectionViewProps>
protected getCursors(): CursorEntry[] {
let doc = this.props.Document;
- let id = UserUtils.currentUserId;
+ let id = CurrentUserUtils.id;
let cursors = doc.GetList<CursorEntry>(KeyStore.Cursors, []);
let notMe = cursors.filter(entry => entry.Data[0] !== id);
return id ? notMe : [];