Skip to content

Commit

Permalink
Merge f23d5ca into df0c275
Browse files Browse the repository at this point in the history
  • Loading branch information
timosta committed Feb 1, 2019
2 parents df0c275 + f23d5ca commit 566b7ac
Show file tree
Hide file tree
Showing 17 changed files with 171 additions and 129 deletions.
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"minimist": "^1.2.0",
"npmlog": "^4.1.2",
"plop": "^2.0.0",
"prettier": "^1.14.2",
"prettier": "^1.16.1",
"prettier-eslint": "^8.8.1",
"prop-types": "^15.6.1",
"raf": "^3.4.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,19 +93,18 @@ class CatalogTileViewCategory extends React.Component {
<div className={classes} {...props} ref={this.handleRef}>
<div className="catalog-tile-view-pf-category-header">
<span className="catalog-tile-view-pf-category-header-title">{title}</span>
{!viewAll &&
numShown < totalItems && (
<span className="pull-right">
<Button
bsStyle="link"
className="catalog-tile-view-pf-category-view-all pull-right"
style={{ marginRight: rightSpacerWidth }}
onClick={onViewAll}
>
{`${viewAllText} (${totalItems})`}
</Button>
</span>
)}
{!viewAll && numShown < totalItems && (
<span className="pull-right">
<Button
bsStyle="link"
className="catalog-tile-view-pf-category-view-all pull-right"
style={{ marginRight: rightSpacerWidth }}
onClick={onViewAll}
>
{`${viewAllText} (${totalItems})`}
</Button>
</span>
)}
</div>
<div className="catalog-tile-view-pf-category-body">
{catalogTiles}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,28 +277,27 @@ export class MockFilterExample extends React.Component {
{this.renderInput()}
</Filter>
</div>
{activeFilters &&
activeFilters.length > 0 && (
<Toolbar.Results>
<Filter.ActiveLabel>Active Filters:</Filter.ActiveLabel>
<Filter.List>
{activeFilters.map((item, index) => (
<Filter.Item key={index} onRemove={this.removeFilter} filterData={item}>
{item.label}
</Filter.Item>
))}
</Filter.List>
<a
href="#"
onClick={e => {
e.preventDefault();
this.clearFilters();
}}
>
Clear All Filters
</a>
</Toolbar.Results>
)}
{activeFilters && activeFilters.length > 0 && (
<Toolbar.Results>
<Filter.ActiveLabel>Active Filters:</Filter.ActiveLabel>
<Filter.List>
{activeFilters.map((item, index) => (
<Filter.Item key={index} onRemove={this.removeFilter} filterData={item}>
{item.label}
</Filter.Item>
))}
</Filter.List>
<a
href="#"
onClick={e => {
e.preventDefault();
this.clearFilters();
}}
>
Clear All Filters
</a>
</Toolbar.Results>
)}
</div>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,12 @@ class LoginCardSocialColumns extends React.Component {
return null;
}
const { expend, width } = this.state;
const expendButton = width > 768 &&
links.length > numberOfButtonsToShow && (
<Button bsStyle="link" bsClass="btn btn-link login-pf-social-toggle" onClick={this.toggleExpend}>
{expend ? 'Less' : 'More'} &nbsp;
<Icon name={`angle-${expend ? 'up' : 'down'}`} />
</Button>
);
const expendButton = width > 768 && links.length > numberOfButtonsToShow && (
<Button bsStyle="link" bsClass="btn btn-link login-pf-social-toggle" onClick={this.toggleExpend}>
{expend ? 'Less' : 'More'} &nbsp;
<Icon name={`angle-${expend ? 'up' : 'down'}`} />
</Button>
);

const doubleColumn = links.length > 4 ? 'login-pf-social-double-col' : '';
const moreItems = expend || width < 768 ? this.getHiddenListItems() : null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,8 @@ export class MockClientPaginationTable extends React.Component {

if (checked) {
const updatedSelections = [...new Set([...currentRows.map(r => r.id), ...selectedRows])];
const updatedRows = rows.map(
r => (updatedSelections.indexOf(r.id) > -1 ? MockClientPaginationTable.selectRow(r) : r)
const updatedRows = rows.map(r =>
updatedSelections.indexOf(r.id) > -1 ? MockClientPaginationTable.selectRow(r) : r
);
this.setState({
// important: you must update rows to force a re-render and trigger onRow hook
Expand All @@ -307,8 +307,8 @@ export class MockClientPaginationTable extends React.Component {
} else {
const ids = currentRows.map(r => r.id);
const updatedSelections = selectedRows.filter(r => !(ids.indexOf(r) > -1));
const updatedRows = rows.map(
r => (updatedSelections.indexOf(r.id) > -1 ? r : MockClientPaginationTable.deselectRow(r))
const updatedRows = rows.map(r =>
updatedSelections.indexOf(r.id) > -1 ? r : MockClientPaginationTable.deselectRow(r)
);
this.setState({
rows: updatedRows,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,30 +318,29 @@ export class MockToolbarExample extends React.Component {
<h5>40 Results</h5>
</Toolbar.Results>
))}
{activeFilters &&
activeFilters.length > 0 && (
<Toolbar.Results>
<h5>40 Results</h5>
<Filter.ActiveLabel>Active Filters:</Filter.ActiveLabel>
<Filter.List>
{activeFilters.map((item, index) => (
<Filter.Item key={index} onRemove={this.removeFilter} filterData={item}>
label=
{item.label}
</Filter.Item>
))}
</Filter.List>
<a
href="#"
onClick={e => {
e.preventDefault();
this.clearFilters();
}}
>
Clear All Filters
</a>
</Toolbar.Results>
)}
{activeFilters && activeFilters.length > 0 && (
<Toolbar.Results>
<h5>40 Results</h5>
<Filter.ActiveLabel>Active Filters:</Filter.ActiveLabel>
<Filter.List>
{activeFilters.map((item, index) => (
<Filter.Item key={index} onRemove={this.removeFilter} filterData={item}>
label=
{item.label}
</Filter.Item>
))}
</Filter.List>
<a
href="#"
onClick={e => {
e.preventDefault();
this.clearFilters();
}}
>
Clear All Filters
</a>
</Toolbar.Results>
)}
</Toolbar>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,25 +280,24 @@ class BaseVerticalNavItemHelper extends React.Component {
<span className="list-group-item-value">{title}</span>
{showBadges && childBadgeComponents && <div className="badge-container-pf">{childBadgeComponents}</div>}
</a>
{childItemComponents &&
childItemComponents.length > 0 && (
<div className={`nav-pf-${nextDepth}-nav`}>
<div className="nav-item-pf-header">
{(pinnableMenus || isMobile) && (
<a
className={classNames(`${nextDepth}-collapse-toggle-pf`, {
collapsed: onPinnedPath
})}
onClick={this.pinNextDepth}
/>
)}
<span>{title}</span>
</div>
<NavContextProvider {...this.props} idPath={this.idPath()} item={navItem}>
<ListGroup componentClass="ul">{childItemComponents}</ListGroup>
</NavContextProvider>
{childItemComponents && childItemComponents.length > 0 && (
<div className={`nav-pf-${nextDepth}-nav`}>
<div className="nav-item-pf-header">
{(pinnableMenus || isMobile) && (
<a
className={classNames(`${nextDepth}-collapse-toggle-pf`, {
collapsed: onPinnedPath
})}
onClick={this.pinNextDepth}
/>
)}
<span>{title}</span>
</div>
)}
<NavContextProvider {...this.props} idPath={this.idPath()} item={navItem}>
<ListGroup componentClass="ul">{childItemComponents}</ListGroup>
</NavContextProvider>
</div>
)}
</ListGroupItem>
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,20 +60,18 @@ export class WizardExample extends MockWizardBase {
<Icon type="fa" name="angle-right" />
</Button>
)}
{activeStepIndex === 2 &&
activeSubStepIndex === 0 && (
<Button bsStyle="primary" onClick={this.onNextButtonClick}>
Deploy
<Icon type="fa" name="angle-right" />
</Button>
)}
{activeStepIndex === 2 &&
activeSubStepIndex === 1 && (
<Button bsStyle="primary" onClick={this.close}>
Close
<Icon type="fa" name="angle-right" />
</Button>
)}
{activeStepIndex === 2 && activeSubStepIndex === 0 && (
<Button bsStyle="primary" onClick={this.onNextButtonClick}>
Deploy
<Icon type="fa" name="angle-right" />
</Button>
)}
{activeStepIndex === 2 && activeSubStepIndex === 1 && (
<Button bsStyle="primary" onClick={this.close}>
Close
<Icon type="fa" name="angle-right" />
</Button>
)}
</Wizard.Footer>
</Wizard>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,12 @@ class AccessConsoles extends React.Component {

getConsoleForType(type) {
// To keep connection, render all consoles but hide those unused
return React.Children.map(
this.props.children,
child =>
this.state.keptConnection[getChildTypeName(child)] ? (
<div key={getChildTypeName(child)} hidden={!isChildOfType(child, type)}>
{child}
</div>
) : null
return React.Children.map(this.props.children, child =>
this.state.keptConnection[getChildTypeName(child)] ? (
<div key={getChildTypeName(child)} hidden={!isChildOfType(child, type)}>
{child}
</div>
) : null
);
}

Expand Down Expand Up @@ -105,17 +103,16 @@ class AccessConsoles extends React.Component {
)}
</Dropdown.Menu>
</Dropdown>
{this.state.type !== NONE_TYPE &&
this.state.type !== DESKTOP_VIEWER_CONSOLE_TYPE && (
<Checkbox
className="console-selector-pf-disconnect-switch"
inline
defaultChecked={this.props.disconnectByChange}
onChange={e => this.onChangeDisconnectBySwitchClick(e.target)}
>
{this.props.textDisconnectByChange}
</Checkbox>
)}
{this.state.type !== NONE_TYPE && this.state.type !== DESKTOP_VIEWER_CONSOLE_TYPE && (
<Checkbox
className="console-selector-pf-disconnect-switch"
inline
defaultChecked={this.props.disconnectByChange}
onChange={e => this.onChangeDisconnectBySwitchClick(e.target)}
>
{this.props.textDisconnectByChange}
</Checkbox>
)}
</Col>
</FormGroup>
</Form>
Expand Down
2 changes: 1 addition & 1 deletion packages/patternfly-4/react-styles/src/build/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function writeCSSJSFile(rootPath, originalPath, destinationPath, contents

export function getRelativeImportPath(from, to) {
const parsedTo = path.parse(to);
const newImportPath = path.normalize(path.join(relative(from, parsedTo.dir), parsedTo.base).replace(/\\/g, ''));
const newImportPath = path.normalize(path.join(relative(from, parsedTo.dir), parsedTo.base));
return newImportPath.startsWith('.') ? newImportPath : `./${newImportPath}`;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ test('keeps variable reference if computing fails', () => {
function getOutputs() {
return outputFileSyncMock.mock.calls.reduce((acc, call) => {
const [filePath, content] = call;
const splitPath = filePath.split('/');
const splitPath = filePath.split(/[/\\]/);
const name = splitPath.slice(-2).join('/');
return {
...acc,
Expand Down
24 changes: 22 additions & 2 deletions packages/react-codemods/transforms/pf3-pf4.button.test.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,29 @@
import { EOL as SYSTEM_EOL } from 'os';
import prettier from 'prettier';
import { defineInlineTest } from 'jscodeshift/dist/testUtils';
import transform from './pf3-pf4';

const prettierConfig = prettier.resolveConfig.sync(process.cwd());
const pretty = src => prettier.format(src, { parser: 'babylon', ...prettierConfig });
/**
* Codemod outputs should follow the EOL pattern of the target codebase, not
* Patternfly's. Patternfly currently enforces LF as line ending, independent of
* the OS building the codebase.
*
* JSCodeShift produces OS-dependent line endings however, LF for Unix based
* systems, and CRLF for Windows based ones. This is also likely what most
* projects would like to see the codemod prduce.
*
* To make sure we both adhere to Patternfly's conventions, and compare the
* correct OS-specific line endings during the test cases' assertions, we store
* expected values with LF line endings, and convert them into the OS-specific
* ones at runtime using prettier.
*/
const PRETTIER_EOL = SYSTEM_EOL === '\r\n' ? 'crlf' : 'cr';
const prettierConfig = {
...prettier.resolveConfig.sync(process.cwd()),
parser: 'babel',
endOfLine: PRETTIER_EOL
};
const pretty = src => prettier.format(src, prettierConfig);

global.console.log = jest.fn();

Expand Down
2 changes: 1 addition & 1 deletion packages/react-codemods/transforms/pf3-pf4.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ module.exports = (file, api, options) => {

return prettier
? prettier.format(transformedSource, {
parser: 'babylon',
parser: 'babel',
...prettier.resolveConfig.sync(process.cwd())
})
: transformedSource;
Expand Down
Loading

0 comments on commit 566b7ac

Please sign in to comment.