Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix company tags style #9143

Merged
merged 1 commit into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 56 additions & 38 deletions app/javascript/components/settings-company-tags/index.jsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import React, { useState, useEffect } from 'react';
import PropTypes from 'prop-types';
import { Button } from 'carbon-components-react';
import { Button, Accordion, AccordionItem } from 'carbon-components-react';
import { AddAlt16 } from '@carbon/icons-react';
import MiqDataTable from '../miq-data-table';
import MiqStructuredList from '../miq-structured-list';
import SettingsCompanyTagsEntryForm from '../settings-company-tags-entry-form';
import { rowData, CellAction } from '../miq-data-table/helper';
import NoRecordsFound from '../no-records-found';
import MiqConfirmActionModal, { modalCallbackTypes } from '../miq-confirm-action-modal';
import { http } from '../../http_api';
import { categoryOptions, pageData } from './helper';

Expand All @@ -25,6 +27,7 @@ const SettingsCompanyTags = ({ pageTitle, categoryId }) => {
list: undefined,
isLoading: true,
listLoading: true,
confirm: false,
});

/** Function to fetch the information needed for summary and list when the select box is changed. */
Expand All @@ -34,6 +37,7 @@ const SettingsCompanyTags = ({ pageTitle, categoryId }) => {
const { summary, list, selectedCategory } = pageData(response, data.options);
setData({
...data,
confirm: false,
summary,
list,
selectedCategory,
Expand Down Expand Up @@ -70,7 +74,7 @@ const SettingsCompanyTags = ({ pageTitle, categoryId }) => {
});
};

/** Function to be exeuted after the add/save/cancel/delete action */
/** Function to be executed after the add/save/cancel/delete action */
const formCallback = (actionType, responseData) => {
if (responseData.status === 'error') {
return setData({
Expand Down Expand Up @@ -100,20 +104,7 @@ const SettingsCompanyTags = ({ pageTitle, categoryId }) => {
/** Function to handle the delete button click event from the list. */
const onButtonCallback = (item) => {
if (item && item.callbackAction && item.callbackAction === 'deleteEntryCallback') {
// confirm box will be changed after other tab contents are changed.
// eslint-disable-next-line no-alert
if (window.confirm(__('Are you sure you want to delete this entry?'))) {
miqSparkleOn();
http.post(`/ops/ce_delete/${data.selectedCategory.id}?entry_id=${item.id}`).then((response) => {
setData({
...data,
notification: { visible: true, type: 'danger', message: response.message },
});
miqSparkleOff();
add_flash(__('Category entry was successfully deleted'), response.type);
return categoryInformation(response.category_id);
});
}
setData({ ...data, selectedEntryId: item.id, confirm: true });
}
};

Expand All @@ -128,27 +119,36 @@ const SettingsCompanyTags = ({ pageTitle, categoryId }) => {
}
};

const deleteEntry = (actionType) => {
if (actionType === modalCallbackTypes.OK) {
miqSparkleOn();
http.post(`/ops/ce_delete/${data.selectedCategory.id}?entry_id=${data.selectedEntryId}`).then((response) => {
setData({
...data,
confirm: false,
notification: { visible: true, type: 'danger', message: response.message },
});
miqSparkleOff();
add_flash(__('Category entry was successfully deleted'), response.type);
return categoryInformation(response.category_id);
});
} else {
setData({ ...data, confirm: false });
}
};

/** Function to render the add new button */
const renderActionButton = () => (
<Button
onClick={() => onSelect('new')}
onKeyPress={() => onSelect('new')}
title={__('Click to add a new entry')}
>
{__('Add Entry')}
</Button>
);

/** Function to render the title bar */
const renderTitleBar = (title, hasButton) => (
<div className="miq-custom-tab-content-header">
<div className="tab-content-header-title">
<h3>{title}</h3>
</div>
<div className="tab-content-header-actions" />
{
hasButton && renderActionButton()
}
<div className="custom-accordion-buttons">
<Button
onClick={() => onSelect('new')}
onKeyPress={() => onSelect('new')}
renderIcon={AddAlt16}
size="sm"
title={__('Click to add a new entry')}
>
{__('Add Entry')}
</Button>
</div>
);

Expand All @@ -158,12 +158,23 @@ const SettingsCompanyTags = ({ pageTitle, categoryId }) => {
return (
<MiqStructuredList
rows={rows}
title={pageTitle}
mode={mode}
onClick={(dropDownData) => onDropDownChange(dropDownData)} // ToDo: onClick must be generic name
/>
);
};

/** Function to render a confirmation-modal-box. */
const renderConfirmModal = () => {
const modalData = {
open: data.confirm,
confirm: __('Are you sure you want to delete this entry?'),
callback: (actionType) => deleteEntry(actionType),
};
return <MiqConfirmActionModal modalData={modalData} />;
};

/** Function to render the entries list with a header and button. */
const renderList = () => {
if (!data.list) {
Expand All @@ -174,14 +185,17 @@ const SettingsCompanyTags = ({ pageTitle, categoryId }) => {
return (
<>
<input type="hidden" id="ignore_form_changes" />
{renderTitleBar(sprintf(__('%s Entries'), data.selectedCategory.description), true)}
{renderActionButton()}
<MiqDataTable
rows={miqRows.rowItems}
headers={data.list.headers}
onCellClick={(selectedRow, cellType, event) => onCellClick(selectedRow, cellType, event)}
showPagination={false}
mode="settings-company-tags-list"
/>
{
data.confirm && renderConfirmModal()
}
{miqRows.rowItems.length === 0 && <NoRecordsFound />}
</>
);
Expand All @@ -205,7 +219,12 @@ const SettingsCompanyTags = ({ pageTitle, categoryId }) => {
const renderTabContent = () => (
<>
{data.summary && data.options && renderSummary()}
{data.pageType === pageTypes.list ? renderList() : renderForm()}
<Accordion align="start" className="miq-custom-accordion">
<AccordionItem title={sprintf(__('%s Entries'), data.selectedCategory.description)} open>
{data.pageType === pageTypes.list ? renderList() : renderForm()}
</AccordionItem>
</Accordion>

</>
);

Expand All @@ -215,7 +234,6 @@ const SettingsCompanyTags = ({ pageTitle, categoryId }) => {
*/
return (
<>
{renderTitleBar(pageTitle, false)}
{!data.isLoading && renderTabContent()}
</>
);
Expand Down
1 change: 1 addition & 0 deletions app/stylesheet/application-webpack.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
@import './ddf_override.scss';
@import './menu.scss';
@import './miq-custom-tab.scss';
@import './miq-custom-accordion.scss';
@import './miq-data-table.scss';
@import './miq-table-toolbar.scss';
@import './miq-structured-list.scss';
Expand Down
21 changes: 21 additions & 0 deletions app/stylesheet/miq-custom-accordion.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.miq-custom-accordion
{
border: 1px solid #e0e0e0;

li button.bx--accordion__heading {
background: #e0e0e0;
}
.bx--accordion__item:last-child{
border: 0;
}

.bx--accordion__content {
padding: 20px;
margin: 0;

.custom-accordion-buttons {
display: flex;
justify-content: flex-end;
}
}
}