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

Implement GUI ordering based on a numeric value #192

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
77 changes: 52 additions & 25 deletions src/components/Sidebar/Group.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import shallowEqualArrays from 'shallow-equal/arrays';

import { setPropertyTreeExpansion } from '../../api/Actions';
import { sortGroups } from '../../api/keys';
import { filterPropertyOwners } from '../../utils/propertyTreeHelpers';
import { filterPropertyOwners, guiOrderNumber } from '../../utils/propertyTreeHelpers';
import ToggleContent from '../common/ToggleContent/ToggleContent';

import PropertyOwner, {
Expand Down Expand Up @@ -60,51 +60,58 @@ function Group({

const shouldFilter = showOnlyEnabled || !showHidden;

const groupContent = useSelector((state) => state.groups[path] || {});

const allPropertyOwners = useSelector(
(state) => (state.propertyTree.propertyOwners ? state.propertyTree.propertyOwners : [])
);
const allProperties = useSelector(
(state) => (state.propertyTree.properties ? state.propertyTree.properties : [])
);

// Sub-groups
const subGroupPaths = useSelector((state) => {
const data = state.groups[path] || {};
let result = data.subgroups || [];
let result = groupContent.subgroups || [];
if (shouldFilter) {
result = result.filter((group) => shouldShowGroup(state, group, showOnlyEnabled, showHidden));
}
return result;
}, shallowEqualArrays);

// Property-owners
const propertyOwnerUris = useSelector((state) => {
const props = state.propertyTree.properties;
const data = state.groups[path] || {};
let result = data.propertyOwners || [];
if (shouldFilter) {
result = filterPropertyOwners(result, props, showOnlyEnabled, showHidden);
}
return result;
}, shallowEqualArrays);
// Property owners
let propertyOwnerUris = groupContent?.propertyOwners || [];
if (shouldFilter) {
propertyOwnerUris =
filterPropertyOwners(propertyOwnerUris, allProperties, showOnlyEnabled, showHidden);
}

const ownerNames = useSelector((state) => {
const props = state.propertyTree.properties;
const propOwners = state.propertyTree.propertyOwners;
return propertyOwnerUris.map((uri) => propertyOwnerName(propOwners, props, uri));
}, shallowEqualArrays);
const ownerDetails = propertyOwnerUris.map((uri) => (
{
name: propertyOwnerName(allPropertyOwners, allProperties, uri),
guiOrder: guiOrderNumber(allProperties, uri)
}
));

const propertyOwners = propertyOwnerUris.map((uri, index) => ({
type: 'propertyOwner',
payload: uri,
name: ownerNames[index]
name: ownerDetails[index].name,
guiOrder: ownerDetails[index].guiOrder
}));

const groups = subGroupPaths.map((groupPath) => ({
type: 'group',
payload: groupPath,
name: displayName(groupPath)
name: displayName(groupPath),
guiOrder: undefined
}));

const entries = groups.concat(propertyOwners);

const hasEntries = entries.length !== 0;
const pathFragments = path.split('/');
const groupName = pathFragments[pathFragments.length - 1];
const sortOrdering = sortGroups[groupName];
const groupSortOrdering = sortGroups[groupName];

const dispatch = useDispatch();

Expand All @@ -115,12 +122,32 @@ function Group({
}));
};

const sortedEntries = entries.sort((a, b) => a.name.localeCompare(b.name, 'en'));
// Accumulate lists of entries with and without order number and sort the lists
// independently
const withOrderEntries = [];
const noOrderEntries = [];
entries.forEach((entry) => {
const target = (entry.guiOrder !== undefined) ? withOrderEntries : noOrderEntries;
target.push(entry); // target is a reference to the correct list
});

const numericallySortedEntries = withOrderEntries.sort((a, b) => {
if (a.guiOrder === b.guiOrder) {
// Do alphabetic sort if number is the same
return a.name.localeCompare(b.name, 'en');
}
return a.guiOrder > b.guiOrder;
});

const alphabeticallySortedEntries = noOrderEntries.sort((a, b) => a.name.localeCompare(b.name, 'en'));
const sortedEntries = numericallySortedEntries.concat(alphabeticallySortedEntries);

if (sortOrdering && sortOrdering.value) {
// Sort based on custom group sorting
if (groupSortOrdering && groupSortOrdering.value) {
sortedEntries.sort((a, b) => {
const result = sortOrdering.value.indexOf(a.name) < sortOrdering.value.indexOf(b.name);
return result ? -1 : 1;
const indexA = groupSortOrdering.value.indexOf(a.name);
const indexB = groupSortOrdering.value.indexOf(b.name);
return (indexA < indexB) ? -1 : 1;
});
}

Expand Down
10 changes: 10 additions & 0 deletions src/utils/propertyTreeHelpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,16 @@ export function displayName(propertyOwners, properties, uri) {
return guiName || propertyOwners[uri].identifier;
}

export function guiOrderNumber(properties, uri) {
let property = properties[`${uri}.UseGuiOrder`];
const shouldUseGuiOrderNumber = property ? property.value : false;
if (!shouldUseGuiOrderNumber) {
return undefined;
}
property = properties[`${uri}.GuiOrderNumber`];
return property ? property.value : undefined;
}

export function identifierFromUri(uri) {
const splitUri = uri.split('.');
return splitUri.length > 1 ? splitUri[1] : undefined;
Expand Down