-
-
- {showPushSettings &&
}
-
-
+
+
+ {showPushSettings &&
}
+
+
-
-
- {showPushSettings &&
}
-
-
+
+
+ {showPushSettings &&
}
+
+
diff --git a/app/javascript/flavours/glitch/features/notifications/components/pill_bar_button.js b/app/javascript/flavours/glitch/features/notifications/components/pill_bar_button.js
new file mode 100644
index 0000000000..223b7f75ff
--- /dev/null
+++ b/app/javascript/flavours/glitch/features/notifications/components/pill_bar_button.js
@@ -0,0 +1,41 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import ImmutablePropTypes from 'react-immutable-proptypes';
+import classNames from 'classnames'
+
+export default class PillBarButton extends React.PureComponent {
+
+ static propTypes = {
+ prefix: PropTypes.string,
+ settings: ImmutablePropTypes.map.isRequired,
+ settingPath: PropTypes.array.isRequired,
+ label: PropTypes.node.isRequired,
+ onChange: PropTypes.func.isRequired,
+ disabled: PropTypes.bool,
+ }
+
+ onChange = () => {
+ const { settings, settingPath } = this.props;
+ this.props.onChange(settingPath, !settings.getIn(settingPath));
+ }
+
+ render () {
+ const { prefix, settings, settingPath, label, disabled } = this.props;
+ const id = ['setting-pillbar-button', prefix, ...settingPath].filter(Boolean).join('-');
+ const active = settings.getIn(settingPath);
+
+ return (
+
+ );
+ }
+
+}
diff --git a/app/javascript/flavours/glitch/styles/components/columns.scss b/app/javascript/flavours/glitch/styles/components/columns.scss
index 90aa5859db..aaf2c9572d 100644
--- a/app/javascript/flavours/glitch/styles/components/columns.scss
+++ b/app/javascript/flavours/glitch/styles/components/columns.scss
@@ -483,6 +483,50 @@
margin-right: 5px;
}
+.column-settings__pillbar {
+ display: flex;
+ overflow: hidden;
+ background-color: transparent;
+ border: 0;
+ border-radius: 4px;
+ margin-bottom: 10px;
+ align-items: stretch;
+}
+
+.pillbar-button {
+ border: 0;
+ color: #fafafa;
+ padding: 2px;
+ margin: 0;
+ margin-left: 2px;
+ font-size: inherit;
+ flex: auto;
+ background-color: $ui-base-color;
+ transition: background-color 0.2s ease;
+
+ &[disabled] {
+ cursor: not-allowed;
+ opacity: 0.5;
+ }
+
+ &:hover:not([disabled]) {
+ background-color: darken($ui-base-color, 10%);
+ }
+
+ &.active {
+ background-color: $ui-highlight-color;
+ }
+
+ &.active:hover:not([disabled]) {
+ background-color: lighten($ui-highlight-color, 10%);
+ }
+
+ /* TODO: check RTL? */
+ &:first-child {
+ margin-left: 0;
+ }
+}
+
.empty-column-indicator,
.error-column,
.follow_requests-unlocked_explanation {