Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
02d71ce4
Commit
02d71ce4
authored
Dec 17, 2020
by
Lyza Danger Gardner
Committed by
Lyza Gardner
Dec 18, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add `useUserFilterOptions` hook
parent
6bf8e3b9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
162 additions
and
0 deletions
+162
-0
use-filter-options-test.js
src/sidebar/components/hooks/test/use-filter-options-test.js
+111
-0
use-filter-options.js
src/sidebar/components/hooks/use-filter-options.js
+51
-0
No files found.
src/sidebar/components/hooks/test/use-filter-options-test.js
0 → 100644
View file @
02d71ce4
import
{
mount
}
from
'enzyme'
;
import
{
createElement
}
from
'preact'
;
import
{
useUserFilterOptions
}
from
'../use-filter-options'
;
import
{
$imports
}
from
'../use-filter-options'
;
describe
(
'sidebar/components/hooks/use-user-filter-options'
,
()
=>
{
let
fakeStore
;
let
lastUserOptions
;
// Mount a dummy component to be able to use the hook
function
DummyComponent
()
{
lastUserOptions
=
useUserFilterOptions
();
}
function
annotationFixtures
()
{
return
[
{
user
:
'acct:dingbat@localhost'
,
user_info
:
{
display_name
:
'Ding Bat'
},
},
{
user
:
'acct:abalone@localhost'
,
user_info
:
{
display_name
:
'Aba Lone'
},
},
{
user
:
'acct:bananagram@localhost'
,
user_info
:
{
display_name
:
'Zerk'
},
},
{
user
:
'acct:dingbat@localhost'
,
user_info
:
{
display_name
:
'Ding Bat'
},
},
];
}
beforeEach
(()
=>
{
fakeStore
=
{
allAnnotations
:
sinon
.
stub
().
returns
([]),
getFocusFilters
:
sinon
.
stub
().
returns
({}),
isFeatureEnabled
:
sinon
.
stub
().
returns
(
false
),
};
$imports
.
$mock
({
'../../store/use-store'
:
{
useStoreProxy
:
()
=>
fakeStore
},
});
});
afterEach
(()
=>
{
$imports
.
$restore
();
});
it
(
'should return a user filter option for each user who has authored an annotation'
,
()
=>
{
fakeStore
.
allAnnotations
.
returns
(
annotationFixtures
());
mount
(
<
DummyComponent
/>
);
assert
.
deepEqual
(
lastUserOptions
,
[
{
value
:
'abalone'
,
display
:
'abalone'
},
{
value
:
'bananagram'
,
display
:
'bananagram'
},
{
value
:
'dingbat'
,
display
:
'dingbat'
},
]);
});
it
(
'should use display names if feature flag enabled'
,
()
=>
{
fakeStore
.
allAnnotations
.
returns
(
annotationFixtures
());
fakeStore
.
isFeatureEnabled
.
withArgs
(
'client_display_names'
).
returns
(
true
);
mount
(
<
DummyComponent
/>
);
assert
.
deepEqual
(
lastUserOptions
,
[
{
value
:
'abalone'
,
display
:
'Aba Lone'
},
{
value
:
'dingbat'
,
display
:
'Ding Bat'
},
{
value
:
'bananagram'
,
display
:
'Zerk'
},
]);
});
it
(
'should add focused-user filter information if configured'
,
()
=>
{
fakeStore
.
allAnnotations
.
returns
(
annotationFixtures
());
fakeStore
.
isFeatureEnabled
.
withArgs
(
'client_display_names'
).
returns
(
true
);
fakeStore
.
getFocusFilters
.
returns
({
user
:
{
value
:
'carrotNumberOne'
,
display
:
'Number One Carrot'
},
});
mount
(
<
DummyComponent
/>
);
assert
.
deepEqual
(
lastUserOptions
,
[
{
value
:
'abalone'
,
display
:
'Aba Lone'
},
{
value
:
'dingbat'
,
display
:
'Ding Bat'
},
{
value
:
'carrotNumberOne'
,
display
:
'Number One Carrot'
},
{
value
:
'bananagram'
,
display
:
'Zerk'
},
]);
});
it
(
'always uses display name for focused user'
,
()
=>
{
fakeStore
.
allAnnotations
.
returns
(
annotationFixtures
());
fakeStore
.
isFeatureEnabled
.
withArgs
(
'client_display_names'
).
returns
(
false
);
fakeStore
.
getFocusFilters
.
returns
({
user
:
{
value
:
'carrotNumberOne'
,
display
:
'Numero Uno Zanahoria'
},
});
mount
(
<
DummyComponent
/>
);
assert
.
deepEqual
(
lastUserOptions
,
[
{
value
:
'abalone'
,
display
:
'abalone'
},
{
value
:
'bananagram'
,
display
:
'bananagram'
},
{
value
:
'dingbat'
,
display
:
'dingbat'
},
{
value
:
'carrotNumberOne'
,
display
:
'Numero Uno Zanahoria'
},
]);
});
});
src/sidebar/components/hooks/use-filter-options.js
0 → 100644
View file @
02d71ce4
import
{
useMemo
}
from
'preact/hooks'
;
import
{
useStoreProxy
}
from
'../../store/use-store'
;
import
{
username
}
from
'../../util/account-id'
;
/** @typedef {import('../../store/modules/filters').FilterOption} FilterOption */
/**
* Generate a list of users for filtering annotations; update when set of
* annotations or filter state changes meaningfully.
*
* @return {FilterOption[]}
*/
export
function
useUserFilterOptions
()
{
const
store
=
useStoreProxy
();
const
annotations
=
store
.
allAnnotations
();
const
focusFilters
=
store
.
getFocusFilters
();
const
showDisplayNames
=
store
.
isFeatureEnabled
(
'client_display_names'
);
return
useMemo
(()
=>
{
// Determine unique users (authors) in annotation collection
const
users
=
{};
annotations
.
forEach
(
annotation
=>
{
const
username_
=
username
(
annotation
.
user
);
const
displayValue
=
showDisplayNames
&&
annotation
.
user_info
?.
display_name
?
annotation
.
user_info
.
display_name
:
username_
;
users
[
username_
]
=
displayValue
;
});
// If user-focus is configured (even if not applied) add a filter
// option for that user. Note that this always respects the display
// value, even if `client_display_names` feature flags is not enabled:
// this matches current implementation of focus mode.
if
(
focusFilters
.
user
)
{
const
username_
=
username
(
focusFilters
.
user
.
value
)
||
focusFilters
.
user
.
value
;
users
[
username_
]
=
focusFilters
.
user
.
display
;
}
// Convert to `FilterOption` objects
const
userOptions
=
Object
.
keys
(
users
).
map
(
user
=>
{
return
{
display
:
users
[
user
],
value
:
user
};
});
userOptions
.
sort
((
a
,
b
)
=>
a
.
display
.
localeCompare
(
b
.
display
));
return
userOptions
;
},
[
annotations
,
focusFilters
,
showDisplayNames
]);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment