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
21f8fb57
Commit
21f8fb57
authored
Jun 22, 2020
by
Lyza Danger Gardner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor and extract panel pattern
parent
ab363d7f
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
149 additions
and
156 deletions
+149
-156
help-panel.js
src/sidebar/components/help-panel.js
+44
-42
molecules.scss
src/styles/mixins/molecules.scss
+78
-0
panel.scss
src/styles/mixins/panel.scss
+0
-69
annotation-share-control.scss
src/styles/sidebar/components/annotation-share-control.scss
+4
-2
help-panel.scss
src/styles/sidebar/components/help-panel.scss
+12
-13
sidebar-content-error.scss
src/styles/sidebar/components/sidebar-content-error.scss
+2
-2
sidebar-panel.scss
src/styles/sidebar/components/sidebar-panel.scss
+2
-2
thread-card.scss
src/styles/sidebar/components/thread-card.scss
+4
-20
toast-messages.scss
src/styles/sidebar/components/toast-messages.scss
+3
-5
tutorial.scss
src/styles/sidebar/components/tutorial.scss
+0
-1
No files found.
src/sidebar/components/help-panel.js
View file @
21f8fb57
...
...
@@ -99,11 +99,12 @@ function HelpPanel({ auth, session }) {
panelName
=
{
uiConstants
.
PANEL_HELP
}
onActiveChanged
=
{
onActiveChanged
}
>
<
div
className
=
"u-layout-row"
>
<
div
className
=
"help-panel__content"
>
<
div
className
=
"help-panel__subtitle"
>
<
h3
className
=
"help-panel__sub-panel-title"
>
{
subPanelTitles
[
activeSubPanel
]}
<
/h3
>
<
div
className
=
"help-panel__footer
"
>
<
div
className
=
"help-panel__navigation
"
>
{
activeSubPanel
===
'versionInfo'
&&
(
<
button
className
=
"help-panel__sub-panel-link"
...
...
@@ -132,7 +133,7 @@ function HelpPanel({ auth, session }) {
)}
<
/div
>
<
/div
>
<
div
className
=
"help-panel__
content"
>
<
div
className
=
"help-panel__sub
content"
>
{
activeSubPanel
===
'tutorial'
&&
<
Tutorial
/>
}
{
activeSubPanel
===
'versionInfo'
&&
(
<
VersionInfo
versionData
=
{
versionData
}
/
>
...
...
@@ -145,6 +146,7 @@ function HelpPanel({ auth, session }) {
/>
<
HelpPanelTab
linkText
=
"New support ticket"
url
=
{
supportTicketURL
}
/
>
<
/div
>
<
/div
>
<
/SidebarPanel
>
);
}
...
...
src/styles/mixins/molecules.scss
View file @
21f8fb57
@use
"../variables"
as
var
;
@use
"./buttons"
;
@use
"./layout"
;
@use
"./utils"
;
...
...
@@ -90,3 +91,80 @@
);
}
}
/**
* Base styles for a "panel"-like element, with appropriate
* padding, heading and close-button styles.
*/
@mixin
panel
{
@include
card
;
&
__header
{
@include
layout
.
row
(
$align
:
center
);
@include
utils
.
border-bottom
;
padding-bottom
:
1em
;
}
&
__header-icon
{
margin-right
:
0
.5em
;
}
&
__title
{
@include
var
.
font-big
;
color
:
var
.
$color-brand
;
font-weight
:
700
;
}
&
__button
{
@include
buttons
.
button--labeled
;
}
&
__button--primary
{
@include
buttons
.
button--primary
;
}
&
__actions
{
@include
layout
.
row
(
right
);
@include
layout
.
horizontal-rhythm
(
10px
);
}
}
/**
* `panel` with tighter margins and padding, for use in more confined spaces
*/
@mixin
panel--compact
{
@include
panel
;
padding
:
0
.75em
;
&
__header
{
padding
:
0
;
border-bottom
:
none
;
}
}
/**
* Styled external-linked "tabs" with icons, intended for use in a panel
*/
@mixin
panel-tabs
{
@include
layout
.
row
(
$align
:
center
);
&
__tab
{
@include
utils
.
font-large
;
@include
utils
.
border-right
;
flex
:
1
1
;
text-align
:
center
;
color
:
var
.
$color-text-light
;
&
:last-of-type
{
border-right
:
none
;
}
}
&
__link
{
color
:
var
.
$color-text-light
;
}
&
__icon
{
@include
utils
.
icon--xsmall
;
}
}
src/styles/mixins/panel.scss
deleted
100644 → 0
View file @
ab363d7f
@use
"../variables"
as
var
;
@use
"./buttons"
;
@use
"./layout"
;
@use
"./utils"
;
/**
* Base styles for a "panel"-like element, with appropriate
* padding, heading and close-button styles.
*/
@mixin
panel
{
@include
utils
.
border
;
background-color
:
var
.
$color-background
;
border-radius
:
2px
;
&
__header
{
@include
layout
.
row
(
$align
:
center
);
@include
utils
.
border-bottom
;
padding
:
1em
0
;
margin
:
0
1em
;
}
&
__header-icon
{
margin-right
:
0
.5em
;
}
&
__title
{
@include
var
.
font-big
;
color
:
var
.
$color-brand
;
font-weight
:
700
;
}
&
__content
{
margin
:
1em
;
margin-top
:
0
;
}
&
__button
{
@include
buttons
.
button--labeled
;
margin-left
:
1em
;
}
&
__button--primary
{
@include
buttons
.
button--primary
;
margin-left
:
1em
;
}
&
__actions
{
display
:
flex
;
justify-content
:
flex-end
;
}
}
/**
* `panel` with tighter margins and padding, for use in more confined spaces
*/
@mixin
panel--compact
{
@include
panel
;
&
__header
{
padding
:
0
.75em
0
;
margin
:
0
0
.75em
;
border-bottom
:
none
;
}
&
__content
{
margin
:
0
.75em
;
margin-top
:
0
;
}
}
src/styles/sidebar/components/annotation-share-control.scss
View file @
21f8fb57
@use
'../../mixins/buttons'
;
@use
'../../mixins/layout'
;
@use
'../../mixins/
panel
'
;
@use
'../../mixins/
molecules
'
;
@use
"../../mixins/utils"
;
@use
"../../variables"
as
var
;
...
...
@@ -9,7 +9,7 @@
}
.annotation-share-panel
{
@include
panel
.
panel--compact
;
@include
molecules
.
panel--compact
;
position
:
absolute
;
right
:
5px
;
bottom
:
32px
;
...
...
@@ -38,12 +38,14 @@
}
&
__arrow
{
margin
:
0
;
color
:
var
.
$grey-3
;
fill
:
white
;
transform
:
rotateX
(
180deg
);
position
:
absolute
;
z-index
:
100
;
right
:
0px
;
bottom
:
-8px
;
}
.share-links__icon
{
...
...
src/styles/sidebar/components/help-panel.scss
View file @
21f8fb57
...
...
@@ -4,17 +4,24 @@
@use
"../../variables"
as
var
;
.help-panel
{
&
__content
{
@include
layout
.
vertical_rhythm
;
}
&
__subtitle
{
@include
layout
.
row
(
$justify
:
right
,
$align
:
center
);
}
&
__sub-panel-title
{
@include
var
.
font-big
;
margin
:
0
;
padding
:
0
.5em
0
;
flex-grow
:
1
;
font-weight
:
500
;
}
&
__content
{
&
__
sub
content
{
@include
utils
.
border-top
;
@include
utils
.
border-bottom
;
padding
:
0
.5em
;
padding
:
0
.5em
0
;
a
{
text-decoration
:
underline
;
...
...
@@ -25,13 +32,6 @@
@include
utils
.
icon--xsmall
;
}
&
__footer
{
padding
:
0
.5em
0
;
margin-left
:
auto
;
display
:
flex
;
align-items
:
center
;
}
&
__sub-panel-link
{
@include
buttons
.
reset-native-btn-styles
;
@include
layout
.
row
(
$align
:
center
);
...
...
@@ -51,8 +51,7 @@
&
__tab
{
@include
var
.
font-big
;
@include
utils
.
border-right
;
flex
:
1
1
0px
;
margin-top
:
0
.5em
;
flex
:
1
1
;
text-align
:
center
;
color
:
var
.
$color-text-light
;
...
...
src/styles/sidebar/components/sidebar-content-error.scss
View file @
21f8fb57
@use
"../../mixins/
panel
"
;
@use
"../../mixins/
molecules
"
;
@use
"../../variables"
as
var
;
.sidebar-content-error
{
@include
panel
.
panel
;
@include
molecules
.
panel
;
position
:
relative
;
margin-bottom
:
0
.75em
;
}
src/styles/sidebar/components/sidebar-panel.scss
View file @
21f8fb57
@use
"../../mixins/
panel
"
;
@use
"../../mixins/
molecules
"
;
.sidebar-panel
{
@include
panel
.
panel
;
@include
molecules
.
panel
;
position
:
relative
;
margin-bottom
:
0
.75em
;
}
src/styles/sidebar/components/thread-card.scss
View file @
21f8fb57
@use
"../../variables"
as
var
;
@use
"../../mixins/layout"
;
@use
"../../mixins/molecules"
;
@use
"../../mixins/utils"
;
.thread-card
{
padding
:
1em
;
border-radius
:
2px
;
box-shadow
:
0px
1px
1px
0px
rgba
(
0
,
0
,
0
,
0
.1
);
@include
molecules
.
card
;
cursor
:
pointer
;
background-color
:
var
.
$white
;
&
.is-focused
{
box-shadow
:
0px
2px
3px
0px
rgba
(
0
,
0
,
0
,
0
.15
);
}
&
--theme-clean
{
// Give a little more space so that the border appears centered
// between cards
padding-bottom
:
1
.5em
;
border-bottom
:
1px
solid
var
.
$grey-2
;
box-shadow
:
none
;
&
:hover
{
box-shadow
:
none
;
}
}
}
src/styles/sidebar/components/toast-messages.scss
View file @
21f8fb57
@use
"../../mixins/
panel
"
;
@use
"../../mixins/
molecules
"
;
@use
"../../mixins/layout"
;
@use
"../mixins/responsive"
;
@use
"../../variables"
as
var
;
...
...
@@ -36,12 +36,10 @@
}
.toast-message
{
@include
panel
.
panel
;
@include
layout
.
row
;
@include
molecules
.
card-frame
;
@include
layout
.
row
(
$align
:
center
)
;
position
:
relative
;
width
:
100%
;
box-shadow
:
0px
2px
3px
0px
rgba
(
0
,
0
,
0
,
0
.15
);
border-radius
:
2px
;
margin-bottom
:
0
.75em
;
&
--success
{
...
...
src/styles/sidebar/components/tutorial.scss
View file @
21f8fb57
...
...
@@ -3,7 +3,6 @@
.tutorial
{
&
__list
{
margin-top
:
0em
;
padding-left
:
2em
;
}
...
...
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