Overview
Summary
Contact
Donate
Imprint
Prompt for the
ReelView
Please create a React-JS view called "ReelView" for the fields of the Reel entity. The ReelView must contain the following fields: - name: AudioTrack type: STRING - name: Caption type: STRING - name: CreatedAt type: DATE - name: DurationSeconds type: LONG - name: IsRemixAllowed type: BOOL - name: UpdatedAt type: DATE - name: UserAccount type: UserAccount - name: Visibility type: STRING The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing Reel entity should be loaded from the relative URL: "/ReelService/reel/{id}" (HTTP-GET) If a new Reel entity has been created, the new entity should be posted to the relative URL: "/ReelService/reel" (HTTP-POST) If an existing Reel entity has been updated, the modified entity should be sent to the relative URL: "/ReelService/reel/{id}" (HTTP-PUT) If an existing Reel entity has to be deleted, the following relative URL should be called: "/ReelService/reel/{id}" (HTTP-DELETE) Add a HTML table to the view with the following DirectMessage columns: - column: Reel - column: MediaUrl - column: Post - column: Sender - column: Story - column: ReplyToMessage - column: DirectThread - column: SeenAt - column: CreatedAt - column: Text - column: MessageType - column: IsSeen The table should have the title "DirectMessages" und the data must be loaded from the server with the following relative URL: "/DirectThreadService/directmessage/reel/{id}" Add a HTML table to the view with the following ReelView columns: - column: ViewDurationSeconds - column: UserAccount - column: ViewedAt - column: Reel The table should have the title "ReelViews" und the data must be loaded from the server with the following relative URL: "/ReelService/reelview/reel/{id}" Add a HTML table to the view with the following ReelLike columns: - column: UserAccount - column: CreatedAt - column: Reel The table should have the title "ReelLikes" und the data must be loaded from the server with the following relative URL: "/UserAccountService/reellike/reel/{id}" Add a HTML table to the view with the following Notification columns: - column: Post - column: Story - column: SourceUser - column: Reel - column: Type - column: Comment - column: DirectMessage - column: IsRead - column: CreatedAt - column: UserAccount The table should have the title "Notifications" und the data must be loaded from the server with the following relative URL: "/ReelService/notification/reel/{id}" Add a HTML table to the view with the following Report columns: - column: ReportedUser - column: Reporter - column: Post - column: CreatedAt - column: Reel - column: Comment - column: Story - column: Status - column: Reason - column: Details - column: UpdatedAt The table should have the title "Reports" und the data must be loaded from the server with the following relative URL: "/StoryService/report/reel/{id}" Add a HTML table to the view with the following ArchiveItem columns: - column: UserAccount - column: Post - column: ItemType - column: Story - column: ArchivedAt - column: Reel The table should have the title "ArchiveItems" und the data must be loaded from the server with the following relative URL: "/StoryService/archiveitem/reel/{id}" Add a HTML table to the view with the following AdPlacement columns: - column: Post - column: Clicks - column: Impressions - column: CreatedAt - column: Reel - column: AdCampaign - column: PlacementType - column: Story The table should have the title "AdPlacements" und the data must be loaded from the server with the following relative URL: "/StoryService/adplacement/reel/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint