-
Notifications
You must be signed in to change notification settings - Fork 11
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
[5th viz] create user story / spec for 5th viz #932
Milestone
Comments
@seinig I think I get the basic idea, though I have some questions:
From looking at the nivo documentation I think we definitely need a FE-BE meeting to discuss the data interface with @MaikNeubert but that's not urgent. |
@MaikNeubert @HaGuesto I propose the following interface: type Query {
stockOverview(baseId: Int!): StockOverviewData
}
type StockOverviewData implements DataCube {
facts: [StockOverviewResult!]!
dimensions: StockOverviewDataDimensions!
}
type StockOverviewResult {
categoryId: Int!
productName: String!
gender: ProductGender!
sizeId: Int!
tagIds: [Int!]
locationId: Int!
boxState: BoxState!
itemsCount: Int!
boxesCount: Int!
}
type StockOverviewDataDimensions {
category: [DimensionInfo!]!
size: [DimensionInfo!]!
tag: [TagDimensionInfo!]!
location: [DimensionInfo!]!
} |
@pylipp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sunburst Diagram with drill down showing all boxes that currently have state 'in stock'. For this first version of the sunburst we can realize the same grouping and the same hierarchy as the Boxtribute Stock Overview:
FE
Grouping
Filter
This is for coordinator of donations on both sides, sending and receiving NGOs:
I, as coordinator of donations of a sending NGO need an quick overview that is easily explorable of what we have in Stock, in order to decide whether we can go ahead with the organizations of a shipment to a NGO with specific needs. Here it would be good to have both items and box numbers in sight: Items are relevant to compare with the communicated need of the receiving NGO. Box number is relevant in order to estimate, whether this is worth packing on a pallet for shipment (ca. 22 boxes are necessary to fill a pallet)
The text was updated successfully, but these errors were encountered: