Overview
Summary
Contact
Donate
Imprint
Prompt for the
OrganizationView
Please create a React-JS view called "OrganizationView" for the fields of the Organization entity. The OrganizationView must contain the following fields: - name: FoundedOn type: DATE - name: HeadquartersLocation type: Location - name: Name type: STRING - name: OrganizationType type: STRING - name: Website type: STRING The data source for the [HeadquartersLocation] select control should be loaded from the relative URL: "/LocationService/location" (HTTP-GET) An existing Organization entity should be loaded from the relative URL: "/OrganizationService/organization/{id}" (HTTP-GET) If a new Organization entity has been created, the new entity should be posted to the relative URL: "/OrganizationService/organization" (HTTP-POST) If an existing Organization entity has been updated, the modified entity should be sent to the relative URL: "/OrganizationService/organization/{id}" (HTTP-PUT) If an existing Organization entity has to be deleted, the following relative URL should be called: "/OrganizationService/organization/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ZeppelinClass columns: - column: EndYear - column: MaxSpeedKmh - column: StartYear - column: Name - column: Manufacturer - column: VolumeCubicMeters - column: MaxPayloadTons - column: LengthMeters - column: Notes The table should have the title "ZeppelinClasss" und the data must be loaded from the server with the following relative URL: "/OrganizationService/zeppelinclass/manufacturer/{id}" Add a HTML table to the view with the following Engine columns: - column: Cylinders - column: Name - column: PowerHp - column: Manufacturer - column: FuelType - column: PowerKw The table should have the title "Engines" und the data must be loaded from the server with the following relative URL: "/EngineService/engine/manufacturer/{id}" Add a HTML table to the view with the following DonationCampaign columns: - column: BeneficiaryOrganization - column: Name - column: AmountRaised - column: StartDate - column: EndDate - column: RelatedEvent - column: Currency - column: Description The table should have the title "DonationCampaigns" und the data must be loaded from the server with the following relative URL: "/OrganizationService/donationcampaign/beneficiaryorganization/{id}" Add a HTML table to the view with the following Zeppelin columns: - column: Code - column: ConstructionNumber - column: FirstFlightDate - column: LastFlightDate - column: ZeppelinClass - column: HomeBaseLocation - column: Status - column: Name - column: Operator - column: Notes The table should have the title "Zeppelins" und the data must be loaded from the server with the following relative URL: "/ZeppelinService/zeppelin/operator/{id}" Add a HTML table to the view with the following Foundation columns: - column: EstablishedOn - column: Name - column: Purpose - column: Organization The table should have the title "Foundations" und the data must be loaded from the server with the following relative URL: "/GiftVoucherService/foundation/organization/{id}" Add a HTML table to the view with the following Lottery columns: - column: StartDate - column: Name - column: EndDate - column: RelatedEvent - column: Description - column: ProceedsAmount - column: Currency - column: BeneficiaryOrganization The table should have the title "Lotterys" und the data must be loaded from the server with the following relative URL: "/OrganizationService/lottery/beneficiaryorganization/{id}" Add a HTML table to the view with the following Event columns: - column: DateTime - column: Name - column: RelatedZeppelin - column: RelatedOrganization - column: Location - column: EventType - column: Description The table should have the title "Events" und the data must be loaded from the server with the following relative URL: "/OrganizationService/event/relatedorganization/{id}" Add a HTML table to the view with the following JobPosting columns: - column: ExpiresOn - column: Department - column: Title - column: Description - column: Organization - column: PostedOn - column: Location - column: EmploymentType The table should have the title "JobPostings" und the data must be loaded from the server with the following relative URL: "/LocationService/jobposting/organization/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint