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
fbcd5bf2
Commit
fbcd5bf2
authored
Mar 28, 2023
by
Alejandro Celaya
Committed by
Alejandro Celaya
Mar 30, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate toolbar module to TypeScript
parent
f58a5098
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
18 deletions
+22
-18
toolbar.tsx
src/annotator/toolbar.tsx
+22
-18
No files found.
src/annotator/toolbar.
js
→
src/annotator/toolbar.
tsx
View file @
fbcd5bf2
import
{
createRef
,
render
}
from
'preact'
;
import
type
{
RefObject
}
from
'preact'
;
import
Toolbar
from
'./components/Toolbar'
;
/**
* @typedef ToolbarOptions
* @prop {() => void} createAnnotation
* @prop {(open: boolean) => void} setSidebarOpen
* @prop {(visible: boolean) => void} setHighlightsVisible
*/
export
type
ToolbarOptions
=
{
createAnnotation
:
()
=>
void
;
setSidebarOpen
:
(
open
:
boolean
)
=>
void
;
setHighlightsVisible
:
(
visible
:
boolean
)
=>
void
;
};
/**
* Controller for the toolbar on the edge of the sidebar.
...
...
@@ -16,20 +16,26 @@ import Toolbar from './components/Toolbar';
* highlight visibility etc.
*/
export
class
ToolbarController
{
private
_container
:
HTMLElement
;
private
_newAnnotationType
:
'annotation'
|
'note'
;
private
_useMinimalControls
:
boolean
;
private
_highlightsVisible
:
boolean
;
private
_sidebarOpen
:
boolean
;
private
_closeSidebar
:
()
=>
void
;
private
_toggleSidebar
:
()
=>
void
;
private
_toggleHighlights
:
()
=>
void
;
private
_createAnnotation
:
()
=>
void
;
private
_sidebarToggleButton
:
RefObject
<
HTMLElement
>
;
/**
* @param {HTMLElement} container - Element into which the toolbar is rendered
* @param {ToolbarOptions} options
* @param container - Element into which the toolbar is rendered
*/
constructor
(
container
,
o
ptions
)
{
constructor
(
container
:
HTMLElement
,
options
:
ToolbarO
ptions
)
{
const
{
createAnnotation
,
setSidebarOpen
,
setHighlightsVisible
}
=
options
;
this
.
_container
=
container
;
this
.
_useMinimalControls
=
false
;
/** @type {'annotation'|'note'} */
this
.
_newAnnotationType
=
'note'
;
this
.
_highlightsVisible
=
false
;
this
.
_sidebarOpen
=
false
;
...
...
@@ -43,13 +49,13 @@ export class ToolbarController {
};
/** Reference to the sidebar toggle button. */
this
.
_sidebarToggleButton
=
createRef
();
this
.
_sidebarToggleButton
=
createRef
<
HTMLElement
>
();
this
.
render
();
}
getWidth
()
{
const
content
=
/** @type {HTMLElement} */
(
this
.
_container
.
firstChild
)
;
const
content
=
this
.
_container
.
firstChild
as
HTMLElement
;
return
content
.
getBoundingClientRect
().
width
;
}
...
...
@@ -106,11 +112,9 @@ export class ToolbarController {
/**
* Return the DOM element that toggles the sidebar's visibility.
*
* @type {HTMLButtonElement}
*/
get
sidebarToggleButton
()
{
return
this
.
_sidebarToggleButton
.
current
;
return
this
.
_sidebarToggleButton
.
current
as
HTMLButtonElement
;
}
render
()
{
...
...
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