Overview
Summary
Contact
Donate
Imprint
Prompt for the
StickerPackView
Please create a React-JS view called "StickerPackView" for the fields of the StickerPack entity. The StickerPackView must contain the following fields: - name: CoverStickerIndex type: INT - name: CreatedAt type: DATE - name: CreatorUserAccount type: LONG - name: Description type: STRING - name: EncryptionKey type: STRING - name: IsOfficial type: BOOL - name: ManifestUrl type: STRING - name: Title type: STRING An existing StickerPack entity should be loaded from the relative URL: "/StickerPackService/stickerpack/{id}" (HTTP-GET) If a new StickerPack entity has been created, the new entity should be posted to the relative URL: "/StickerPackService/stickerpack" (HTTP-POST) If an existing StickerPack entity has been updated, the modified entity should be sent to the relative URL: "/StickerPackService/stickerpack/{id}" (HTTP-PUT) If an existing StickerPack entity has to be deleted, the following relative URL should be called: "/StickerPackService/stickerpack/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Sticker columns: - column: StickerPack - column: ImageUrl - column: EncryptionKey - column: EmojiShortcut - column: CreatedAt - column: IndexInPack The table should have the title "Stickers" und the data must be loaded from the server with the following relative URL: "/StickerPackService/sticker/stickerpack/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint