showCopyIcon was renamed to enableCopy/ isLimitedWidth was removed

This commit is contained in:
Vladimir Khvan 2023-04-04 12:15:12 +05:00
parent 16dbc6f56d
commit d744898247

View File

@ -7,36 +7,21 @@ const RequestDetailsWrapper = styled.div`
`;
export const RequestDetails = () => {
const requestHeader = `Request URL: https://github.com/Tarantovich/i/settings/hooks/new
Request method: POST
Accept: */*
content-type: application/x-www-form-urlencoded
User-Agent: GitHub-Hookshot/b591633
X-GitHub-Delivery: 79cb2650-9beb-11ed-9425-682162cbe770
X-GitHub-Event: ping
X-GitHub-Hook-ID: 398134877
X-GitHub-Hook-Installation-Target-ID: 592662620
X-GitHub-Hook-Installation-Target-Type: repository`;
const requestHeader =
'{"Accept": ["*/*"], "x-docspace-signature-256": ["sha256=AE7E0F511A76DD6DE81A5CB194721E2B99120115AC8F3F9BE06DB19609EC854F"]}';
const requestBody =
'{"menu": {"id": "file","value": "File","popup": {"menuitem": [{"value": "New", "onclick": "CreateNewDoc()"},{"value": "Open", "onclick": "OpenDoc()"},{"value": "Close", "onclick": "CloseDoc()"}]}}}';
'{"response":{"folderId":2,"version":1,"versionGroup":1,"contentLength":"1,08 Мб","pureContentLength":1132381,"fileStatus":0,"mute":false,"viewUrl":"http://localhost:8092/filehandler.ashx?action=download&fileid=5","webUrl":"http://localhost:8092/doceditor?fileid=5&version=1","fileType":6,"fileExst":".pptx","comment":"Создано","thumbnailStatus":0,"denyDownload":false,"denySharing":false,"viewAccessability":{"ImageView":false,"MediaView":false,"WebView":true,"WebEdit":true,"WebReview":false,"WebCustomFilterEditing":false,"WebRestrictedEditing":false,"WebComment":true,"CoAuhtoring":true,"Convert":false},"id":5,"rootFolderId":2,"canShare":true,"security":{"Read":true,"Comment":true,"FillForms":true,"Review":true,"Edit":true,"Delete":true,"CustomFilter":true,"Rename":true,"ReadHistory":true,"Lock":false,"EditHistory":true,"Copy":true,"Move":true,"Duplicate":true},"title":"ONLYOFFICE Sample Presentation.pptx","access":0,"shared":false,"created":"2023-03-21T12:32:13.0000000+05:00","createdBy":{"id":"66faa6e4-f133-11ea-b126-00ffeec8b4ef","displayName":" Administrator","avatarSmall":"/static/images/default_user_photo_size_32-32.png?hash=1587389534","profileUrl":"http://localhost:8092/accounts/view/administrator","hasAvatar":false},"updated":"2023-03-21T12:32:13.0000000+05:00","rootFolderType":5,"updatedBy":{"id":"66faa6e4-f133-11ea-b126-00ffeec8b4ef","displayName":" Administrator","avatarSmall":"/static/images/default_user_photo_size_32-32.png?hash=1587389534","profileUrl":"http://localhost:8092/accounts/view/administrator","hasAvatar":false}},"count":1,"links":[{"href":"http://localhost:8092/api/2.0/files/file/5/recent","action":"POST"}],"status":0,"statusCode":200}';
return (
<RequestDetailsWrapper>
<Text as="h3" fontWeight={600} style={{ marginBottom: "4px" }}>
Request post header
</Text>
<Textarea value={requestHeader} showCopyIcon hasNumeration isFullHeight isLimitedWidth />
<Textarea value={requestHeader} enableCopy hasNumeration isFullHeight isJSONField />
<Text as="h3" fontWeight={600} style={{ marginBottom: "4px", marginTop: "16px" }}>
Request post body
</Text>
<Textarea
value={requestBody}
isJSONField
showCopyIcon
hasNumeration
isFullHeight
isLimitedWidth
/>
<Textarea value={requestBody} isJSONField enableCopy hasNumeration isFullHeight />
</RequestDetailsWrapper>
);
};