mirror of
https://github.com/strapi/strapi.git
synced 2025-10-30 09:23:28 +00:00
Attributes and relation Modals UI fix
This commit is contained in:
parent
8342dc79a7
commit
30985f9553
@ -1,8 +1,8 @@
|
|||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* BodyModal
|
* BodyModal
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
@ -14,9 +14,7 @@ function BodyModal({ children, ...rest }) {
|
|||||||
return (
|
return (
|
||||||
<ModalBody className={styles.bodyModal} {...rest}>
|
<ModalBody className={styles.bodyModal} {...rest}>
|
||||||
<div className="container-fluid">
|
<div className="container-fluid">
|
||||||
<div className="row">
|
<div className="row">{children}</div>
|
||||||
{children}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</ModalBody>
|
</ModalBody>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
.bodyModal {
|
.bodyModal {
|
||||||
padding: 2.2rem 1.4rem 0 1.4rem;
|
padding: 2.2rem 1.5rem 0 1.5rem;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,37 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
* StyledCustomCheckbox
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
import styled from 'styled-components';
|
||||||
|
|
||||||
|
const StyledCustomCheckbox = styled.div`
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 15px;
|
||||||
|
margin-top: -6px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
label {
|
||||||
|
cursor: pointer;
|
||||||
|
input[type='checkbox'] {
|
||||||
|
margin-left: 0;
|
||||||
|
margin-right: 13px;
|
||||||
|
}
|
||||||
|
input[type='checkbox'],
|
||||||
|
span {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
span {
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
input[type='number'] {
|
||||||
|
margin-top: -10px;
|
||||||
|
margin-bottom: -4px;
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
export default StyledCustomCheckbox;
|
||||||
@ -10,6 +10,8 @@ import { FormattedMessage } from 'react-intl';
|
|||||||
|
|
||||||
import { InputNumberWithErrors as InputNumber } from 'strapi-helper-plugin';
|
import { InputNumberWithErrors as InputNumber } from 'strapi-helper-plugin';
|
||||||
|
|
||||||
|
import StyledCustomCheckbox from './StyledCustomCheckbox';
|
||||||
|
|
||||||
class CustomCheckbox extends React.Component {
|
class CustomCheckbox extends React.Component {
|
||||||
// eslint-disable-line react/prefer-stateless-function
|
// eslint-disable-line react/prefer-stateless-function
|
||||||
state = {
|
state = {
|
||||||
@ -43,22 +45,18 @@ class CustomCheckbox extends React.Component {
|
|||||||
|
|
||||||
// TODO: remove inline after migrating to Buffet
|
// TODO: remove inline after migrating to Buffet
|
||||||
return (
|
return (
|
||||||
<div className="col-md-12" style={{ marginTop: -4, marginBottom: 9 }}>
|
<StyledCustomCheckbox>
|
||||||
<FormattedMessage id={label.id}>
|
<FormattedMessage id={label.id}>
|
||||||
{msg => (
|
{msg => (
|
||||||
<label
|
<label htmlFor={name}>
|
||||||
htmlFor={name}
|
|
||||||
style={{ fontWeight: '500', fontSize: 12, cursor: 'pointer' }}
|
|
||||||
>
|
|
||||||
<input
|
<input
|
||||||
style={{ marginLeft: 0, marginRight: 13 }}
|
|
||||||
checked={isChecked}
|
checked={isChecked}
|
||||||
name={name}
|
name={name}
|
||||||
id={name}
|
id={name}
|
||||||
onChange={this.handleChange}
|
onChange={this.handleChange}
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
/>
|
/>
|
||||||
{msg}
|
<span>{msg}</span>
|
||||||
</label>
|
</label>
|
||||||
)}
|
)}
|
||||||
</FormattedMessage>
|
</FormattedMessage>
|
||||||
@ -69,10 +67,9 @@ class CustomCheckbox extends React.Component {
|
|||||||
name={name}
|
name={name}
|
||||||
onChange={this.handleInputNumberChange}
|
onChange={this.handleInputNumberChange}
|
||||||
value={value || ''}
|
value={value || ''}
|
||||||
style={{ marginTop: -15 }}
|
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</StyledCustomCheckbox>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,20 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
* FormModal
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
import styled from 'styled-components';
|
||||||
|
|
||||||
|
const FormModal = styled.div`
|
||||||
|
width: 100%;
|
||||||
|
.form-check {
|
||||||
|
label {
|
||||||
|
input[type='checkbox'] + p {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
export default FormModal;
|
||||||
@ -1,6 +1,6 @@
|
|||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* StyedListRow
|
* StyledListRow
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -8,7 +8,7 @@ import styled from 'styled-components';
|
|||||||
|
|
||||||
import { colors } from 'strapi-helper-plugin';
|
import { colors } from 'strapi-helper-plugin';
|
||||||
|
|
||||||
const StyedListRow = styled.tr`
|
const StyledListRow = styled.tr`
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
p {
|
p {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
@ -59,4 +59,4 @@ const StyedListRow = styled.tr`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export default StyedListRow;
|
export default StyledListRow;
|
||||||
|
|||||||
@ -13,7 +13,7 @@ const RelationsWrapper = styled.div`
|
|||||||
}
|
}
|
||||||
hr {
|
hr {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 1.3rem 1.5rem 2.1rem 1.5rem;
|
margin: 1.4rem 1.5rem 2.1rem 1.5rem;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
background-color: rgba(14, 22, 34, 0.04);
|
background-color: rgba(14, 22, 34, 0.04);
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
.modal {
|
.modal {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
max-width: 92.1rem !important;
|
max-width: 92rem !important;
|
||||||
margin-left: auto !important;
|
margin-left: auto !important;
|
||||||
margin-right: auto !important;
|
margin-right: auto !important;
|
||||||
margin-top: 12.7rem !important;
|
margin-top: 12.7rem !important;
|
||||||
|
|||||||
@ -0,0 +1,20 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
* StyledAttributeForm
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
import styled from 'styled-components';
|
||||||
|
|
||||||
|
const StyledAttributeForm = styled.div`
|
||||||
|
width: 100%;
|
||||||
|
.form-check {
|
||||||
|
label {
|
||||||
|
input[type='checkbox'] + p {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
export default StyledAttributeForm;
|
||||||
@ -19,6 +19,7 @@ import ButtonModalSecondary from '../../components/ButtonModalSecondary';
|
|||||||
import ButtonModalSuccess from '../../components/ButtonModalSuccess';
|
import ButtonModalSuccess from '../../components/ButtonModalSuccess';
|
||||||
import CustomCheckbox from '../../components/CustomCheckbox';
|
import CustomCheckbox from '../../components/CustomCheckbox';
|
||||||
import FooterModal from '../../components/FooterModal';
|
import FooterModal from '../../components/FooterModal';
|
||||||
|
import FormModal from '../../components/FormModal';
|
||||||
import HeaderModal from '../../components/HeaderModal';
|
import HeaderModal from '../../components/HeaderModal';
|
||||||
import HeaderModalTitle from '../../components/HeaderModalTitle';
|
import HeaderModalTitle from '../../components/HeaderModalTitle';
|
||||||
import HeaderModalNavContainer from '../../components/HeaderModalNavContainer';
|
import HeaderModalNavContainer from '../../components/HeaderModalNavContainer';
|
||||||
@ -286,7 +287,11 @@ class AttributeForm extends React.Component {
|
|||||||
</section>
|
</section>
|
||||||
</HeaderModal>
|
</HeaderModal>
|
||||||
<form onSubmit={this.handleSubmitAndContinue}>
|
<form onSubmit={this.handleSubmitAndContinue}>
|
||||||
<BodyModal>{showForm && currentForm.map(this.renderInput)}</BodyModal>
|
<FormModal>
|
||||||
|
<BodyModal>
|
||||||
|
{showForm && currentForm.map(this.renderInput)}
|
||||||
|
</BodyModal>
|
||||||
|
</FormModal>
|
||||||
<FooterModal>
|
<FooterModal>
|
||||||
<section>
|
<section>
|
||||||
<ButtonModalPrimary
|
<ButtonModalPrimary
|
||||||
|
|||||||
@ -143,7 +143,7 @@ class AttributesPickerModal extends React.Component {
|
|||||||
renderAttribute = (attribute, index) => {
|
renderAttribute = (attribute, index) => {
|
||||||
const { featureType } = this.props;
|
const { featureType } = this.props;
|
||||||
const { isDisplayed, nodeToFocus } = this.state;
|
const { isDisplayed, nodeToFocus } = this.state;
|
||||||
console.log(this.props);
|
|
||||||
if (attribute.type === featureType) {
|
if (attribute.type === featureType) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -18,6 +18,7 @@ import ButtonModalPrimary from '../../components/ButtonModalPrimary';
|
|||||||
import ButtonModalSecondary from '../../components/ButtonModalSecondary';
|
import ButtonModalSecondary from '../../components/ButtonModalSecondary';
|
||||||
import ButtonModalSuccess from '../../components/ButtonModalSuccess';
|
import ButtonModalSuccess from '../../components/ButtonModalSuccess';
|
||||||
import FooterModal from '../../components/FooterModal';
|
import FooterModal from '../../components/FooterModal';
|
||||||
|
import FormModal from '../../components/FormModal';
|
||||||
import HeaderModal from '../../components/HeaderModal';
|
import HeaderModal from '../../components/HeaderModal';
|
||||||
import HeaderModalNavContainer from '../../components/HeaderModalNavContainer';
|
import HeaderModalNavContainer from '../../components/HeaderModalNavContainer';
|
||||||
import HeaderModalTitle from '../../components/HeaderModalTitle';
|
import HeaderModalTitle from '../../components/HeaderModalTitle';
|
||||||
@ -312,7 +313,9 @@ class RelationForm extends React.Component {
|
|||||||
</section>
|
</section>
|
||||||
</HeaderModal>
|
</HeaderModal>
|
||||||
<form onSubmit={this.handleSubmitAndContinue}>
|
<form onSubmit={this.handleSubmitAndContinue}>
|
||||||
|
<FormModal>
|
||||||
<BodyModal>{showForm && content}</BodyModal>
|
<BodyModal>{showForm && content}</BodyModal>
|
||||||
|
</FormModal>
|
||||||
<FooterModal>
|
<FooterModal>
|
||||||
<section>
|
<section>
|
||||||
<ButtonModalPrimary
|
<ButtonModalPrimary
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
.relationWrapper {
|
.relationWrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 2.7rem 15px;
|
padding: 2.7rem 15px 3.3rem 15px;
|
||||||
.relationNatureWrapper {
|
.relationNatureWrapper {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -12,7 +12,7 @@
|
|||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
}
|
||||||
&:before {
|
&:before {
|
||||||
content: "";
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 20px;
|
top: 20px;
|
||||||
left: 0;
|
left: 0;
|
||||||
@ -35,8 +35,8 @@
|
|||||||
.relationBoxHeader {
|
.relationBoxHeader {
|
||||||
height: 3.6rem;
|
height: 3.6rem;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-top: .1rem;
|
padding-top: 0.1rem;
|
||||||
background-color: rgba(16,22,34,.04);
|
background-color: rgba(16, 22, 34, 0.04);
|
||||||
line-height: 3.6rem;
|
line-height: 3.6rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
@ -73,8 +73,11 @@
|
|||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
color: black;
|
color: black;
|
||||||
&:focus, &:active, &:hover, &:visited {
|
&:focus,
|
||||||
background-color: transparent!important;
|
&:active,
|
||||||
|
&:hover,
|
||||||
|
&:visited {
|
||||||
|
background-color: transparent !important;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
@ -107,7 +110,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.dropdownItem {
|
.dropdownItem {
|
||||||
height: 3.6rem;
|
height: 3.6rem;
|
||||||
border-bottom: 1px solid #f6f6f6;
|
border-bottom: 1px solid #f6f6f6;
|
||||||
@ -119,7 +121,8 @@
|
|||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
&:focus, &:active {
|
&:focus,
|
||||||
|
&:active {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
background-color: rgb(255, 255, 255) !important;
|
background-color: rgb(255, 255, 255) !important;
|
||||||
color: rgba(50, 55, 64, 0.75);
|
color: rgba(50, 55, 64, 0.75);
|
||||||
@ -138,7 +141,8 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.relationNaturePicker { /* stylelint-disable */
|
.relationNaturePicker {
|
||||||
|
/* stylelint-disable */
|
||||||
display: flex;
|
display: flex;
|
||||||
width: 29.5rem;
|
width: 29.5rem;
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -147,7 +151,7 @@
|
|||||||
padding-right: 25px;
|
padding-right: 25px;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
|
|
||||||
img:hover{
|
img:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -158,7 +162,7 @@
|
|||||||
top: 9.2rem;
|
top: 9.2rem;
|
||||||
height: 2px;
|
height: 2px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: #1C5DE7;
|
background-color: #1c5de7;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -174,15 +178,15 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
line-height: 22px;
|
line-height: 22px;
|
||||||
> span:nth-child(1), span:nth-child(3) {
|
> span:nth-child(1),
|
||||||
|
span:nth-child(3) {
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
}
|
}
|
||||||
> span:nth-child(2) {
|
> span:nth-child(2) {
|
||||||
color: #1C5DE7;
|
color: #1c5de7;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.divider {
|
.divider {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-top: 1.3rem;
|
margin-top: 1.3rem;
|
||||||
|
|||||||
@ -18,6 +18,7 @@ import ButtonModalPrimary from '../../components/ButtonModalPrimary';
|
|||||||
import ButtonModalSecondary from '../../components/ButtonModalSecondary';
|
import ButtonModalSecondary from '../../components/ButtonModalSecondary';
|
||||||
import ButtonModalSuccess from '../../components/ButtonModalSuccess';
|
import ButtonModalSuccess from '../../components/ButtonModalSuccess';
|
||||||
import FooterModal from '../../components/FooterModal';
|
import FooterModal from '../../components/FooterModal';
|
||||||
|
import FormModal from '../../components/FormModal';
|
||||||
import HeaderModal from '../../components/HeaderModal';
|
import HeaderModal from '../../components/HeaderModal';
|
||||||
import HeaderModalNavContainer from '../../components/HeaderModalNavContainer';
|
import HeaderModalNavContainer from '../../components/HeaderModalNavContainer';
|
||||||
import HeaderModalTitle from '../../components/HeaderModalTitle';
|
import HeaderModalTitle from '../../components/HeaderModalTitle';
|
||||||
@ -320,9 +321,11 @@ class RelationFormGroup extends React.Component {
|
|||||||
</section>
|
</section>
|
||||||
</HeaderModal>
|
</HeaderModal>
|
||||||
<form onSubmit={this.handleSubmitAndContinue}>
|
<form onSubmit={this.handleSubmitAndContinue}>
|
||||||
|
<FormModal>
|
||||||
<BodyModal>
|
<BodyModal>
|
||||||
<RelationsWrapper>{showForm && content}</RelationsWrapper>
|
<RelationsWrapper>{showForm && content}</RelationsWrapper>
|
||||||
</BodyModal>
|
</BodyModal>
|
||||||
|
</FormModal>
|
||||||
<FooterModal>
|
<FooterModal>
|
||||||
<section>
|
<section>
|
||||||
<ButtonModalPrimary
|
<ButtonModalPrimary
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user