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
0847618d
Commit
0847618d
authored
Aug 01, 2017
by
Robert Knight
Committed by
GitHub
Aug 01, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #513 from hypothesis/remove-view-switcher
Remove the view switcher component
parents
19505853
91061069
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1 addition
and
258 deletions
+1
-258
app.js
src/sidebar/app.js
+0
-1
sidebar-content.js
src/sidebar/components/sidebar-content.js
+0
-1
view-switcher-test.js
src/sidebar/components/test/view-switcher-test.js
+0
-73
view-switcher.js
src/sidebar/components/view-switcher.js
+0
-50
sidebar-content.html
src/sidebar/templates/sidebar-content.html
+1
-10
view-switcher.html
src/sidebar/templates/view-switcher.html
+0
-57
app.scss
src/styles/app.scss
+0
-1
view-switcher.scss
src/styles/view-switcher.scss
+0
-65
No files found.
src/sidebar/app.js
View file @
0847618d
...
...
@@ -177,7 +177,6 @@ module.exports = angular.module('h', [
.
component
(
'threadList'
,
require
(
'./components/thread-list'
))
.
component
(
'timestamp'
,
require
(
'./components/timestamp'
))
.
component
(
'topBar'
,
require
(
'./components/top-bar'
))
.
component
(
'viewSwitcher'
,
require
(
'./components/view-switcher'
))
.
directive
(
'formInput'
,
require
(
'./directive/form-input'
))
.
directive
(
'formValidate'
,
require
(
'./directive/form-validate'
))
...
...
src/sidebar/components/sidebar-content.js
View file @
0847618d
...
...
@@ -55,7 +55,6 @@ function SidebarContentController(
totalNotes
:
counts
.
notes
,
totalAnnotations
:
counts
.
annotations
,
totalOrphans
:
counts
.
orphans
,
viewSwitcherEnabled
:
features
.
flagEnabled
(
'view-switcher'
),
waitingToAnchorAnnotations
:
counts
.
anchoring
>
0
,
});
});
...
...
src/sidebar/components/test/view-switcher-test.js
deleted
100644 → 0
View file @
19505853
'use strict'
;
var
angular
=
require
(
'angular'
);
var
util
=
require
(
'../../directive/test/util'
);
describe
(
'viewSwitcher'
,
function
()
{
before
(
function
()
{
angular
.
module
(
'app'
,
[])
.
component
(
'viewSwitcher'
,
require
(
'../view-switcher'
));
});
beforeEach
(
function
()
{
var
fakeAnnotationUI
=
{
getState
:
sinon
.
stub
().
returns
({
frames
:
[
{
// The view switcher only shows after the first batch of
// annotations have been fetched.
isAnnotationFetchComplete
:
true
,
},
],
}),
};
var
fakeFeatures
=
{
flagEnabled
:
sinon
.
stub
().
returns
(
true
),
};
angular
.
mock
.
module
(
'app'
,
{
annotationUI
:
fakeAnnotationUI
,
features
:
fakeFeatures
,
});
});
context
(
'displays tabs, counts and selected tab'
,
function
()
{
it
(
'should display the tabs and counts of annotations and notes'
,
function
()
{
var
elem
=
util
.
createDirective
(
document
,
'viewSwitcher'
,
{
selectedTab
:
'annotation'
,
totalAnnotations
:
'123'
,
totalNotes
:
'456'
,
});
var
tabs
=
elem
[
0
].
querySelectorAll
(
'button'
);
assert
.
include
(
tabs
[
0
].
textContent
,
'Annotations'
);
assert
.
include
(
tabs
[
1
].
textContent
,
'Notes'
);
assert
.
include
(
tabs
[
0
].
textContent
,
'123'
);
assert
.
include
(
tabs
[
1
].
textContent
,
'456'
);
});
it
(
'should display annotations tab as selected'
,
function
()
{
var
elem
=
util
.
createDirective
(
document
,
'viewSwitcher'
,
{
selectedTab
:
'annotation'
,
totalAnnotations
:
'123'
,
totalNotes
:
'456'
,
});
var
tabs
=
elem
[
0
].
querySelectorAll
(
'button'
);
assert
.
isTrue
(
tabs
[
0
].
classList
.
contains
(
'is-selected'
));
});
it
(
'should display notes tab as selected'
,
function
()
{
var
elem
=
util
.
createDirective
(
document
,
'viewSwitcher'
,
{
selectedTab
:
'note'
,
totalAnnotations
:
'123'
,
totalNotes
:
'456'
,
});
var
tabs
=
elem
[
0
].
querySelectorAll
(
'button'
);
assert
.
isTrue
(
tabs
[
1
].
classList
.
contains
(
'is-selected'
));
});
});
});
src/sidebar/components/view-switcher.js
deleted
100644 → 0
View file @
19505853
'use strict'
;
var
uiConstants
=
require
(
'../ui-constants'
);
module
.
exports
=
{
controllerAs
:
'vm'
,
//@ngInject
controller
:
function
(
$element
,
annotationUI
,
features
)
{
this
.
TAB_ANNOTATIONS
=
uiConstants
.
TAB_ANNOTATIONS
;
this
.
TAB_NOTES
=
uiConstants
.
TAB_NOTES
;
this
.
TAB_ORPHANS
=
uiConstants
.
TAB_ORPHANS
;
this
.
selectTab
=
function
(
type
)
{
annotationUI
.
clearSelectedAnnotations
();
annotationUI
.
selectTab
(
type
);
};
this
.
orphansTabFlagEnabled
=
function
()
{
return
features
.
flagEnabled
(
'orphans_tab'
);
};
this
.
showViewSwitcher
=
function
()
{
var
frame
=
annotationUI
.
getState
().
frames
[
0
];
if
(
frame
&&
frame
.
isAnnotationFetchComplete
)
{
return
true
;
}
return
false
;
};
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
;
};
},
bindings
:
{
isLoading
:
'<'
,
isWaitingToAnchorAnnotations
:
'<'
,
selectedTab
:
'<'
,
totalAnnotations
:
'<'
,
totalNotes
:
'<'
,
totalOrphans
:
'<'
,
},
template
:
require
(
'../templates/view-switcher.html'
),
};
src/sidebar/templates/sidebar-content.html
View file @
0847618d
<selection-tabs
ng-if=
"!vm.
viewSwitcherEnabled && !vm.
search.query() && vm.selectedAnnotationCount() === 0"
ng-if=
"!vm.search.query() && vm.selectedAnnotationCount() === 0"
is-waiting-to-anchor-annotations=
"vm.waitingToAnchorAnnotations"
is-loading=
"vm.isLoading"
selected-tab=
"vm.selectedTab"
...
...
@@ -7,15 +7,6 @@
total-notes=
"vm.totalNotes"
total-orphans=
"vm.totalOrphans"
>
</selection-tabs>
<view-switcher
ng-if=
"vm.viewSwitcherEnabled && !vm.search.query() && vm.selectedAnnotationCount() === 0"
is-waiting-to-anchor-annotations=
"vm.waitingToAnchorAnnotations"
is-loading=
"vm.isLoading"
selected-tab=
"vm.selectedTab"
total-annotations=
"vm.totalAnnotations"
total-notes=
"vm.totalNotes"
total-orphans=
"vm.totalOrphans"
>
</view-switcher>
<search-status-bar
ng-show=
"!vm.isLoading()"
...
...
src/sidebar/templates/view-switcher.html
deleted
100644 → 0
View file @
19505853
<div
class=
"view-switcher"
ng-if=
"vm.showViewSwitcher()"
>
<button
class=
"view-switcher__tab"
ng-class=
"{'is-selected': vm.selectedTab === vm.TAB_ANNOTATIONS}"
h-on-touch=
"vm.selectTab(vm.TAB_ANNOTATIONS)"
>
<span
class=
"view-switcher__tab-label"
>
Annotations
</span>
<span
class=
"view-switcher__tab-count"
ng-if=
"vm.totalAnnotations > 0 && !vm.isWaitingToAnchorAnnotations"
>
{{ vm.totalAnnotations }}
</span>
</button>
<button
class=
"view-switcher__tab"
ng-class=
"{'is-selected': vm.selectedTab === vm.TAB_NOTES}"
h-on-touch=
"vm.selectTab(vm.TAB_NOTES)"
>
<span
class=
"view-switcher__tab-label"
>
Page Notes
</span>
<span
class=
"view-switcher__tab-count"
ng-if=
"vm.totalNotes > 0 && !vm.isWaitingToAnchorAnnotations"
>
{{ vm.totalNotes }}
</span>
</button>
<button
class=
"view-switcher__tab view-switcher__tab--orphan"
ng-class=
"{'is-selected': vm.selectedTab === vm.TAB_ORPHANS}"
h-on-touch=
"vm.selectTab(vm.TAB_ORPHANS)"
ng-if=
"vm.totalOrphans > 0 && !vm.isWaitingToAnchorAnnotations"
>
<span
class=
"view-switcher__tab-label"
>
Orphans
</span>
<span
class=
"view-switcher__tab-count"
>
{{ vm.totalOrphans }}
</span>
</button>
</div>
<div
ng-if=
"!vm.isLoading()"
class=
"view-switcher__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
/>
Create one by clicking the
<i
class=
"help-icon h-icon-note"
></i>
button.
</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
/>
Create one by selecting some text and clicking the
<i
class=
"help-icon h-icon-annotate"
></i>
button.
</p>
</div>
</div>
src/styles/app.scss
View file @
0847618d
...
...
@@ -31,7 +31,6 @@ $base-line-height: 20px;
@import
'./thread-list'
;
@import
'./tooltip'
;
@import
'./top-bar'
;
@import
'./view-switcher'
;
// Top-level styles
// ----------------
...
...
src/styles/view-switcher.scss
deleted
100644 → 0
View file @
19505853
.view-switcher
{
display
:
flex
;
justify-content
:
center
;
// These are the exact margins required to vertically align the top of the
// view switcher with the top of the Hide Highlights button to its left,
// and the top of the first annotation card below the view switcher with the
// top of the New Page Note button to its left.
margin-top
:
1px
;
margin-bottom
:
6px
;
}
.view-switcher__tab
{
@include
smallshadow
height
:
30px
;
// Same height as used for Hide Highlights and New Page Note
// buttons to left of view switcher.
padding-left
:
12px
;
padding-right
:
12px
;
background
:
$white
;
transition
:
background-color
.1s
linear
;
// This fixes the tabs flashing gray for a moment each time you tap on one
// in iOS Safari.
-webkit-tap-highlight-color
:
rgba
(
0
,
0
,
0
,
0
);
border
:
1px
solid
$gray-lighter
;
cursor
:
pointer
;
user-select
:
none
;
}
.view-switcher__tab
{
border-right-width
:
0
;
}
.view-switcher__tab
:last-child
{
border-right-width
:
1px
;
}
.view-switcher__tab
:first-child
{
border-top-left-radius
:
4px
;
border-bottom-left-radius
:
4px
;
}
.view-switcher__tab
:last-child
{
border-top-right-radius
:
4px
;
border-bottom-right-radius
:
4px
;
}
.view-switcher__tab
:focus
{
outline
:
0
;
}
.
view-switcher__tab
:
:-
moz-focus-inner
{
border
:
0
;
}
.view-switcher__tab
:hover
,
.view-switcher__tab.is-selected
{
background-color
:
#e6e6e6
;
}
.view-switcher__empty-message
{
position
:
relative
;
top
:
10px
;
}
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