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
25d8df56
Unverified
Commit
25d8df56
authored
Jul 24, 2019
by
Kyle Keating
Committed by
GitHub
Jul 24, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1269 from hypothesis/react-selection-tabs
Add react selection-tabs component
parents
8813b8cf
1efb767b
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
388 additions
and
272 deletions
+388
-272
selection-tabs.js
src/sidebar/components/selection-tabs.js
+201
-43
selection-tabs-test.js
src/sidebar/components/test/selection-tabs-test.js
+182
-166
index.js
src/sidebar/index.js
+4
-1
selection-tabs.html
src/sidebar/templates/selection-tabs.html
+0
-61
sidebar-content.html
src/sidebar/templates/sidebar-content.html
+1
-1
No files found.
src/sidebar/components/selection-tabs.js
View file @
25d8df56
'use strict'
;
const
classnames
=
require
(
'classnames'
);
const
propTypes
=
require
(
'prop-types'
);
const
{
createElement
}
=
require
(
'preact'
);
const
{
Fragment
}
=
require
(
'preact'
);
const
NewNoteBnt
=
require
(
'./new-note-btn'
);
const
sessionUtil
=
require
(
'../util/session-util'
);
const
uiConstants
=
require
(
'../ui-constants'
);
const
useStore
=
require
(
'../store/use-store'
);
const
{
withServices
}
=
require
(
'../util/service-context'
);
module
.
exports
=
{
controllerAs
:
'vm'
,
//@ngInject
controller
:
function
(
$element
,
store
,
features
,
session
,
settings
)
{
this
.
TAB_ANNOTATIONS
=
uiConstants
.
TAB_ANNOTATIONS
;
this
.
TAB_NOTES
=
uiConstants
.
TAB_NOTES
;
this
.
TAB_ORPHANS
=
uiConstants
.
TAB_ORPHANS
;
this
.
isThemeClean
=
settings
.
theme
===
'clean'
;
this
.
enableExperimentalNewNoteButton
=
settings
.
enableExperimentalNewNoteButton
;
this
.
selectTab
=
function
(
type
)
{
store
.
clearSelectedAnnotations
();
store
.
selectTab
(
type
);
};
this
.
showAnnotationsUnavailableMessage
=
function
()
{
return
(
this
.
selectedTab
===
this
.
TAB_ANNOTATIONS
&&
this
.
totalAnnotations
===
0
&&
!
this
.
isWaitingToAnchorAnnotations
);
};
this
.
showNotesUnavailableMessage
=
function
()
{
return
this
.
selectedTab
===
this
.
TAB_NOTES
&&
this
.
totalNotes
===
0
;
};
this
.
showSidebarTutorial
=
function
()
{
return
sessionUtil
.
shouldShowSidebarTutorial
(
session
.
state
);
};
},
bindings
:
{
isLoading
:
'<'
,
isWaitingToAnchorAnnotations
:
'<'
,
selectedTab
:
'<'
,
totalAnnotations
:
'<'
,
totalNotes
:
'<'
,
totalOrphans
:
'<'
,
},
template
:
require
(
'../templates/selection-tabs.html'
),
/**
* Display name of the tab and annotation count.
*/
function
Tab
({
children
,
count
,
isWaitingToAnchor
,
onChangeTab
,
selected
,
type
,
})
{
return
(
<
a
className
=
{
classnames
(
'selection-tabs__type'
,
{
'is-selected'
:
selected
,
})}
onMouseDown
=
{
onChangeTab
.
bind
(
this
,
type
)}
onTouchStart
=
{
onChangeTab
.
bind
(
this
,
type
)}
>
{
children
}
{
count
>
0
&&
!
isWaitingToAnchor
&&
(
<
span
className
=
"selection-tabs__count"
>
{
count
}
<
/span
>
)}
<
/a
>
);
}
Tab
.
propTypes
=
{
/**
* Child components.
*/
children
:
propTypes
.
node
.
isRequired
,
/**
* The total annotations for this tab.
*/
count
:
propTypes
.
number
.
isRequired
,
/**
* Are there any annotations still waiting to anchor?
*/
isWaitingToAnchor
:
propTypes
.
bool
.
isRequired
,
/**
* Callback when this tab is active with type as a parameter.
*/
onChangeTab
:
propTypes
.
func
.
isRequired
,
/**
* Is this tab currently selected?
*/
selected
:
propTypes
.
bool
.
isRequired
,
/**
* The type value for this tab. One of
* 'annotation', 'note', or 'orphan'.
*/
type
:
propTypes
.
oneOf
([
'annotation'
,
'note'
,
'orphan'
]).
isRequired
,
};
/**
* Tabbed display of annotations and notes.
*/
function
SelectionTabs
({
isWaitingToAnchorAnnotations
,
isLoading
,
selectedTab
,
totalAnnotations
,
totalNotes
,
totalOrphans
,
settings
,
session
,
})
{
// actions
const
store
=
useStore
(
store
=>
({
clearSelectedAnnotations
:
store
.
clearSelectedAnnotations
,
selectTab
:
store
.
selectTab
,
}));
const
isThemeClean
=
settings
.
theme
===
'clean'
;
const
selectTab
=
function
(
type
)
{
store
.
clearSelectedAnnotations
();
store
.
selectTab
(
type
);
};
const
showAnnotationsUnavailableMessage
=
selectedTab
===
uiConstants
.
TAB_ANNOTATIONS
&&
totalAnnotations
===
0
&&
!
isWaitingToAnchorAnnotations
;
const
showNotesUnavailableMessage
=
selectedTab
===
uiConstants
.
TAB_NOTES
&&
totalNotes
===
0
;
const
showSidebarTutorial
=
sessionUtil
.
shouldShowSidebarTutorial
(
session
.
state
);
return
(
<
Fragment
>
<
div
className
=
{
classnames
(
'selection-tabs'
,
{
'selection-tabs--theme-clean'
:
isThemeClean
,
})}
>
<
Tab
count
=
{
totalAnnotations
}
isWaitingToAnchor
=
{
isWaitingToAnchorAnnotations
}
selected
=
{
selectedTab
===
uiConstants
.
TAB_ANNOTATIONS
}
type
=
{
uiConstants
.
TAB_ANNOTATIONS
}
onChangeTab
=
{
selectTab
}
>
Annotations
<
/Tab
>
<
Tab
count
=
{
totalNotes
}
isWaitingToAnchor
=
{
isWaitingToAnchorAnnotations
}
selected
=
{
selectedTab
===
uiConstants
.
TAB_NOTES
}
type
=
{
uiConstants
.
TAB_NOTES
}
onChangeTab
=
{
selectTab
}
>
Page
Notes
<
/Tab
>
{
totalOrphans
>
0
&&
(
<
Tab
count
=
{
totalOrphans
}
isWaitingToAnchor
=
{
isWaitingToAnchorAnnotations
}
selected
=
{
selectedTab
===
uiConstants
.
TAB_ORPHANS
}
type
=
{
uiConstants
.
TAB_ORPHANS
}
onChangeTab
=
{
selectTab
}
>
Orphans
<
/Tab
>
)}
<
/div
>
{
selectedTab
===
uiConstants
.
TAB_NOTES
&&
settings
.
enableExperimentalNewNoteButton
&&
<
NewNoteBnt
/>
}
{
!
isLoading
&&
(
<
div
className
=
"selection-tabs__empty-message"
>
{
showNotesUnavailableMessage
&&
(
<
div
className
=
"annotation-unavailable-message"
>
<
p
className
=
"annotation-unavailable-message__label"
>
There
are
no
page
notes
in
this
group
.
{
settings
.
enableExperimentalNewNoteButton
&&
!
showSidebarTutorial
&&
(
<
div
className
=
"annotation-unavailable-message__tutorial"
>
Create
one
by
clicking
the
{
' '
}
<
i
className
=
"help-icon h-icon-note"
/>
button
.
<
/div
>
)}
<
/p
>
<
/div
>
)}
{
showAnnotationsUnavailableMessage
&&
(
<
div
className
=
"annotation-unavailable-message"
>
<
p
className
=
"annotation-unavailable-message__label"
>
There
are
no
annotations
in
this
group
.
{
!
showSidebarTutorial
&&
(
<
div
className
=
"annotation-unavailable-message__tutorial"
>
Create
one
by
selecting
some
text
and
clicking
the
{
' '
}
<
i
className
=
"help-icon h-icon-annotate"
/>
button
.
<
/div
>
)}
<
/p
>
<
/div
>
)}
<
/div
>
)}
<
/Fragment
>
);
}
SelectionTabs
.
propTypes
=
{
/**
* Are we waiting on any annotations from the server?
*/
isLoading
:
propTypes
.
bool
.
isRequired
,
/**
* Are there any annotations still waiting to anchor?
*/
isWaitingToAnchorAnnotations
:
propTypes
.
bool
.
isRequired
,
/**
* The currently selected tab (annotations, notes or orphans).
*/
selectedTab
:
propTypes
.
oneOf
([
'annotation'
,
'note'
,
'orphan'
]).
isRequired
,
/**
* The totals for each respect tab.
*/
totalAnnotations
:
propTypes
.
number
.
isRequired
,
totalNotes
:
propTypes
.
number
.
isRequired
,
totalOrphans
:
propTypes
.
number
.
isRequired
,
// Injected services.
settings
:
propTypes
.
object
.
isRequired
,
session
:
propTypes
.
object
.
isRequired
,
};
SelectionTabs
.
injectedProps
=
[
'session'
,
'settings'
];
module
.
exports
=
withServices
(
SelectionTabs
);
src/sidebar/components/test/selection-tabs-test.js
View file @
25d8df56
This diff is collapsed.
Click to expand it.
src/sidebar/index.js
View file @
25d8df56
...
...
@@ -188,7 +188,10 @@ function startAngularApp(config) {
'newNoteBtn'
,
wrapReactComponent
(
require
(
'./components/new-note-btn'
))
)
.
component
(
'selectionTabs'
,
require
(
'./components/selection-tabs'
))
.
component
(
'selectionTabs'
,
wrapReactComponent
(
require
(
'./components/selection-tabs'
))
)
.
component
(
'sidebarContent'
,
require
(
'./components/sidebar-content'
))
.
component
(
'sidebarContentError'
,
...
...
src/sidebar/templates/selection-tabs.html
deleted
100644 → 0
View file @
8813b8cf
<!-- Tabbed display of annotations and notes. -->
<div
class=
"selection-tabs"
ng-class=
"{'selection-tabs--theme-clean' : vm.isThemeClean }"
>
<a
class=
"selection-tabs__type"
href=
"#"
ng-class=
"{'is-selected': vm.selectedTab === vm.TAB_ANNOTATIONS}"
h-on-touch=
"vm.selectTab(vm.TAB_ANNOTATIONS)"
>
Annotations
<span
class=
"selection-tabs__count"
ng-if=
"vm.totalAnnotations > 0 && !vm.isWaitingToAnchorAnnotations"
>
{{ vm.totalAnnotations }}
</span>
</a>
<a
class=
"selection-tabs__type"
href=
"#"
ng-class=
"{'is-selected': vm.selectedTab === vm.TAB_NOTES}"
h-on-touch=
"vm.selectTab(vm.TAB_NOTES)"
>
Page Notes
<span
class=
"selection-tabs__count"
ng-if=
"vm.totalNotes > 0 && !vm.isWaitingToAnchorAnnotations"
>
{{ vm.totalNotes }}
</span>
</a>
<a
class=
"selection-tabs__type selection-tabs__type--orphan"
ng-if=
"vm.totalOrphans > 0"
href=
"#"
ng-class=
"{'is-selected': vm.selectedTab === vm.TAB_ORPHANS}"
h-on-touch=
"vm.selectTab(vm.TAB_ORPHANS)"
>
Orphans
<span
class=
"selection-tabs__count"
ng-if=
"vm.totalOrphans > 0 && !vm.isWaitingToAnchorAnnotations"
>
{{ vm.totalOrphans }}
</span>
</a>
</div>
<new-note-btn
ng-if=
"vm.selectedTab === vm.TAB_NOTES && vm.enableExperimentalNewNoteButton"
>
</new-note-btn>
<div
ng-if=
"!vm.isLoading()"
class=
"selection-tabs__empty-message"
>
<div
ng-if=
"vm.showNotesUnavailableMessage()"
class=
"annotation-unavailable-message"
>
<p
class=
"annotation-unavailable-message__label"
>
There are no page notes in this group.
<br
/>
<div
ng-if=
"!vm.enableExperimentalNewNoteButton && !vm.showSidebarTutorial()"
class=
"annotation-unavailable-message__tutorial"
>
Create one by clicking the
<i
class=
"help-icon h-icon-note"
></i>
button.
</div>
</p>
</div>
<div
ng-if=
"vm.showAnnotationsUnavailableMessage()"
class=
"annotation-unavailable-message"
>
<p
class=
"annotation-unavailable-message__label"
>
There are no annotations in this group.
<br
/>
<div
ng-if=
"!vm.showSidebarTutorial()"
class=
"annotation-unavailable-message__tutorial"
>
Create one by selecting some text and clicking the
<i
class=
"help-icon h-icon-annotate"
></i>
button.
</div>
</p>
</div>
</div>
src/sidebar/templates/sidebar-content.html
View file @
25d8df56
<selection-tabs
ng-if=
"vm.showSelectedTabs()"
is-waiting-to-anchor-annotations=
"vm.waitingToAnchorAnnotations"
is-loading=
"vm.isLoading"
is-loading=
"vm.isLoading
()
"
selected-tab=
"vm.selectedTab"
total-annotations=
"vm.totalAnnotations"
total-notes=
"vm.totalNotes"
...
...
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