-
Notifications
You must be signed in to change notification settings - Fork 0
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
Feature/21 give the possibility to assign/unassign service to/from product #79
base: main
Are you sure you want to change the base?
Changes from 24 commits
4fe11a9
d82a6c7
8de3258
da5313e
07d51da
3ec2f32
cdb60b8
61d4679
041844f
85676c0
c37fd6b
5c76e06
5407caa
64a4cab
ac717cf
766d5bc
d13ca03
ca45046
1a4ee8c
62bc2f2
f9f7c21
fad091f
58cf87c
712a383
1b07695
be3cdc1
de7af88
9c2ca53
c555d71
6b11a99
c877402
c31d1f1
ba6471a
3ca05b3
4bbb128
5bbe18f
8e98d02
d079b78
e757e42
137d2b6
0dc8c4b
f7710cb
e768077
3babd9e
7c27f0a
5a92b2c
7044aa3
d1b6a96
4236b43
ab3ba44
85faae5
17fe258
590df09
ea6fed9
7b7e449
ed02f50
7488d3f
3676b49
7fedd8d
c3cbff0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,273 @@ | ||
import { Component, h, State, Watch, Listen, Host } from '@stencil/core'; | ||
import { httpGet, HttpResponse } from '../../utils/utils'; | ||
|
||
@Component({ | ||
tag: 'flinkey-product-service-admin-table', | ||
styleUrl: '../../utils/common.css', | ||
shadow: true, | ||
}) | ||
export class ProductServiceAdminTable { | ||
@State() services: Array<any>; | ||
@State() products: Array<any>; | ||
@State() productsAndServices = []; | ||
@State() activeServices = []; | ||
|
||
// Services with no product assigned | ||
@State() unlinkedServices: Array<any>; | ||
|
||
// Column state managment | ||
@State() idIsOpen: boolean = true; | ||
@State() uniqueIdIsOpen: boolean = true; | ||
@State() sNumberIsOpen: boolean = true; | ||
@State() sapIsOpen: boolean = true; | ||
@State() actServicesIsOpen: boolean = true; | ||
|
||
// Modal | ||
@State() linkingIsOpen: boolean = false; | ||
@State() unlinkingIsOpen: boolean = false; | ||
@State() selectedProduct: any; | ||
@State() selectedService: number; | ||
|
||
fetchProducts = async () => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this an arrow function? Because of this context? |
||
return httpGet<string[]>('products') | ||
.then((httpResponse: HttpResponse<string[]>) => { | ||
this.products = httpResponse.parsedBody; | ||
}) | ||
.catch(err => { | ||
console.log(err); | ||
}); | ||
}; | ||
|
||
fetchServices = async () => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this an arrow function? Because of this context? |
||
return httpGet<string[]>('services') | ||
.then((httpResponse: HttpResponse<string[]>) => { | ||
this.services = httpResponse.parsedBody; | ||
}) | ||
.catch(err => { | ||
console.log(err); | ||
}); | ||
}; | ||
|
||
fetchProductToService = async (productId: any) => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this an arrow function? Because of this context? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'll have them fixed 👍 |
||
const path = `products/${productId.id}/services`; | ||
return httpGet<any>(path) | ||
.then((httpResponse: HttpResponse<any>) => { | ||
const service = httpResponse.parsedBody; | ||
this.productsAndServices = [...this.productsAndServices, { service, product: productId }]; | ||
this.activeServices = [...this.activeServices, { id: service.id }]; | ||
}) | ||
.catch(() => { | ||
this.productsAndServices = [...this.productsAndServices, { product: productId }]; | ||
if (this.activeServices.length === 0) { | ||
this.activeServices = []; | ||
} | ||
}); | ||
}; | ||
|
||
componentWillLoad() { | ||
console.log('Will -> fetch'); | ||
this.fetchProducts(); | ||
this.fetchServices(); | ||
} | ||
|
||
@Watch('products') | ||
watchStateHandler() { | ||
if (this.products) { | ||
console.log('Will -> fetchP2S'); | ||
this.products.forEach(element => { | ||
this.fetchProductToService(element); | ||
}); | ||
} | ||
} | ||
|
||
// Check unlinked services | ||
@Watch('activeServices') | ||
activeServiceStateHandler() { | ||
this.unlinkedServices = this.services.filter(({ id: unlinkedId1 }) => !this.activeServices.some(({ id: inactiveId }) => inactiveId === unlinkedId1)); | ||
} | ||
|
||
// Modal - Close | ||
@Listen('closeModal') | ||
closeModal(value: any) { | ||
this.linkingIsOpen = value.detail; | ||
this.unlinkingIsOpen = value.detail; | ||
} | ||
|
||
// Overwritte all previous data | ||
updateDOM = () => { | ||
this.services = []; | ||
this.products = []; | ||
this.productsAndServices = []; | ||
this.activeServices = []; | ||
this.fetchProducts(); | ||
this.fetchServices(); | ||
}; | ||
|
||
// Modal - onPairing | ||
@Listen('updateData') | ||
updateDataHandler(value: any) { | ||
if (value) { | ||
this.updateDOM(); | ||
} else { | ||
return; | ||
} | ||
} | ||
|
||
linkingModalHandler(productId: any) { | ||
this.linkingIsOpen = true; | ||
this.selectedProduct = productId; | ||
} | ||
|
||
unlinkingModalHandler(productId: any, serviceId: any) { | ||
this.unlinkingIsOpen = true; | ||
this.selectedProduct = productId; | ||
this.selectedService = serviceId; | ||
} | ||
|
||
render() { | ||
return ( | ||
<Host class="flex flex-col"> | ||
<div class="-my-2 overflow-x-auto sm:-mx-6 lg:-mx-8"> | ||
<div class="py-2 align-middle inline-block min-w-full sm:px-6 lg:px-8"> | ||
<div class="shadow overflow-hidden border-b border-gray-200 sm:rounded-lg"> | ||
<table class="min-w-full divide-y divide-gray-200"> | ||
<thead class="bg-gray-50"> | ||
<tr> | ||
<th scope="col" class="px-6 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider"> | ||
<div class="flex flex-row items-center justify-center"> | ||
{this.idIsOpen && <div>ID</div>} | ||
<button onClick={() => (this.idIsOpen = !this.idIsOpen)}> | ||
<svg class="-mr-1 ml-2 h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> | ||
<path | ||
fill-rule="evenodd" | ||
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" | ||
clip-rule="evenodd" | ||
/> | ||
</svg> | ||
</button> | ||
</div> | ||
</th> | ||
|
||
<th scope="col" class="px-6 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider"> | ||
<div class="flex flex-row items-center justify-center"> | ||
{this.uniqueIdIsOpen && <div>Unique ID</div>} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should place the if statements on th and not on their content. |
||
<button onClick={() => (this.uniqueIdIsOpen = !this.uniqueIdIsOpen)}> | ||
<svg class="-mr-1 ml-2 h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> | ||
<path | ||
fill-rule="evenodd" | ||
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" | ||
clip-rule="evenodd" | ||
/> | ||
</svg> | ||
</button> | ||
</div> | ||
</th> | ||
|
||
<th scope="col" class="px-6 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider"> | ||
<div class="flex flex-row items-center justify-center"> | ||
{this.sNumberIsOpen && <div> Serial Number</div>} | ||
<button onClick={() => (this.sNumberIsOpen = !this.sNumberIsOpen)}> | ||
<svg class="-mr-1 ml-2 h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> | ||
<path | ||
fill-rule="evenodd" | ||
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" | ||
clip-rule="evenodd" | ||
/> | ||
</svg> | ||
</button> | ||
</div> | ||
</th> | ||
<th scope="col" class="px-6 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider"> | ||
<div class="flex flex-row items-center justify-center"> | ||
{this.sapIsOpen && <div>Sap Number</div>} | ||
<button onClick={() => (this.sapIsOpen = !this.sapIsOpen)}> | ||
<svg class="-mr-1 ml-2 h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> | ||
<path | ||
fill-rule="evenodd" | ||
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" | ||
clip-rule="evenodd" | ||
/> | ||
</svg> | ||
</button> | ||
</div> | ||
</th> | ||
<th scope="col" class="px-6 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider"> | ||
<div class="flex flex-row items-center justify-center"> | ||
{this.actServicesIsOpen && <div>Active Services</div>} | ||
<button onClick={() => (this.actServicesIsOpen = !this.actServicesIsOpen)}> | ||
<svg class="-mr-1 ml-2 h-5 w-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true"> | ||
<path | ||
fill-rule="evenodd" | ||
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" | ||
clip-rule="evenodd" | ||
/> | ||
</svg> | ||
</button> | ||
</div> | ||
</th> | ||
<th scope="col" class="px-6 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider"> | ||
Functionen | ||
</th> | ||
</tr> | ||
</thead> | ||
<tbody class="bg-white divide-y divide-gray-200"> | ||
{this.productsAndServices && | ||
this.productsAndServices.map(product => { | ||
return ( | ||
<tr class="text-center"> | ||
<td class="px-6 py-4 whitespace-wrap text-sm font-medium text-gray-900">{this.idIsOpen && `${product.product.id}`}</td> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should place the if statements on td and not on their content. |
||
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">{this.uniqueIdIsOpen && `${product.product.uniqueId}`}</td> | ||
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">{this.sNumberIsOpen && `${product.product.serialNumber}`}</td> | ||
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900"> {this.sapIsOpen && `${product.product.sapNumber}`}</td> | ||
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900"> | ||
{this.actServicesIsOpen && product.service !== undefined ? product.service.id : this.actServicesIsOpen && '-'} | ||
</td> | ||
|
||
<td> | ||
{product.service !== undefined ? ( | ||
<button | ||
type="button" | ||
onClick={() => this.unlinkingModalHandler(product.product.id, product.service.id)} | ||
class="px-6 py-4 mt-px whitespace-nowrap text-right text-sm font-medium bg-white text-gray-700 hover:bg-gray-50 focus:z-10 focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500" | ||
> | ||
Uninstall | ||
</button> | ||
) : ( | ||
<button | ||
type="button" | ||
onClick={() => this.linkingModalHandler(product.product.id)} | ||
class="px-6 py-4 mt-px whitespace-nowrap text-right text-sm font-medium bg-white text-gray-700 hover:bg-gray-50 focus:z-10 focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500" | ||
> | ||
Link | ||
</button> | ||
)} | ||
{this.linkingIsOpen && ( | ||
<flinkey-modal | ||
modalTitle="Link a new Service to Product" | ||
body="Here, you can link your a Service to a product. Go ahead a choose a service to link." | ||
product={this.selectedProduct} | ||
unlinkedServices={this.unlinkedServices} | ||
/> | ||
)} | ||
{this.unlinkingIsOpen && ( | ||
<flinkey-modal | ||
modalTitle="Unlink Service from Product" | ||
body="Here, you can unlink your Service from a product. Go ahead a choose a service to link." | ||
product={this.selectedProduct} | ||
service={this.selectedService} | ||
unlinkedServices={this.unlinkedServices} | ||
/> | ||
)} | ||
</td> | ||
</tr> | ||
); | ||
})} | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> | ||
</div> | ||
</Host> | ||
); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are these states?