Update with new Feature Search Files in Drive Library.
This commit is contained in:
parent
583d1a6ce1
commit
f48c174ad3
Binary file not shown.
Before Width: | Height: | Size: 798 KiB After Width: | Height: | Size: 840 KiB |
|
@ -14,7 +14,7 @@ This sample access drives from OneDrive and navigate between his content using *
|
|||
|
||||
![Demo](./Assets/OneDrivefinderSample2.PNG)
|
||||
|
||||
### Navigate and filter extensions
|
||||
### Navigate, search Files and filter extensions
|
||||
|
||||
![Demo](./Assets/OneDrivefinderSample3.gif)
|
||||
|
||||
|
@ -43,7 +43,7 @@ react-onedrive-finder | [André Lage](http://aaclage.blogspot.com) ([@aaclage](h
|
|||
|
||||
Version|Date|Comments
|
||||
-------|----|--------
|
||||
1.2|April 29, 2021|Minimal style change
|
||||
1.2|April 30, 2021|Include content Search on Drive Library and Minimal style change
|
||||
1.1|April 24, 2021|Fixes, optimization, Styling and extension filter included
|
||||
1.0|April 16, 2021|Initial release
|
||||
|
||||
|
|
|
@ -10,4 +10,5 @@ export interface IOneDriveFinderState {
|
|||
siteItems: IDropdownOption[];
|
||||
fileExtensions: string[];
|
||||
customStyle: string;
|
||||
searchDrive: string;
|
||||
}
|
||||
|
|
|
@ -8,6 +8,8 @@ import { Dropdown, IDropdownOption, IDropdownProps } from 'office-ui-fabric-reac
|
|||
import { AadHttpClient } from "@microsoft/sp-http";
|
||||
import { ITheme, mergeStyleSets, getTheme } from 'office-ui-fabric-react/lib/Styling';
|
||||
import { Icon } from 'office-ui-fabric-react/lib/Icon';
|
||||
import { SearchBox } from 'office-ui-fabric-react/lib/SearchBox';
|
||||
import { Stack, IStackTokens } from 'office-ui-fabric-react/lib/Stack';
|
||||
|
||||
const theme: ITheme = getTheme();
|
||||
const { palette, fonts } = theme;
|
||||
|
@ -39,6 +41,8 @@ const onRenderCaretDown = (): JSX.Element => {
|
|||
return <Icon iconName="PageRight" />;
|
||||
};
|
||||
|
||||
const stackTokens: Partial<IStackTokens> = { childrenGap: 20 };
|
||||
|
||||
/**
|
||||
*
|
||||
* @param option
|
||||
|
@ -107,7 +111,8 @@ export default class OneDriveFinder extends React.Component<IOneDriveFinderProps
|
|||
siteItems: [],
|
||||
itemID: "",
|
||||
fileExtensions: [],
|
||||
customStyle:""
|
||||
customStyle: "",
|
||||
searchDrive: "",
|
||||
};
|
||||
this.getDomainData();
|
||||
}
|
||||
|
@ -165,7 +170,29 @@ export default class OneDriveFinder extends React.Component<IOneDriveFinderProps
|
|||
}
|
||||
};
|
||||
|
||||
const { siteID, itemID, pageSize, breadcrumbItem, siteItems, fileExtensions, customStyle } = this.state;
|
||||
const checkSearchDrive = (SearchQuery: string) => {
|
||||
if (this.state.siteID != "") {
|
||||
this.setState({
|
||||
searchDrive: "/sites/" + this.state.siteID + "/drive/root/search(q='" + SearchQuery + "')"
|
||||
});
|
||||
} else {
|
||||
this.setState({
|
||||
searchDrive: "/me/drive/root/search(q='" + SearchQuery + "')"
|
||||
});
|
||||
}
|
||||
};
|
||||
const checkClear = (ev: any) => {
|
||||
this.setState({
|
||||
searchDrive: ""
|
||||
});
|
||||
};
|
||||
const selectFile = (selectedFile: any) => {
|
||||
if (selectedFile.detail.folder == undefined) {
|
||||
window.open(selectedFile.detail.webUrl, '_blank');
|
||||
}
|
||||
};
|
||||
|
||||
const { siteID, itemID, pageSize, breadcrumbItem, siteItems, fileExtensions, searchDrive, customStyle } = this.state;
|
||||
this._itemID = itemID;
|
||||
this._siteID = siteID;
|
||||
this._breadcrumbItem = breadcrumbItem;
|
||||
|
@ -251,7 +278,12 @@ export default class OneDriveFinder extends React.Component<IOneDriveFinderProps
|
|||
ariaLabel="Breadcrumb with items rendered as buttons"
|
||||
overflowAriaLabel="More links"
|
||||
/>
|
||||
{(this.state.itemID != "") &&
|
||||
{(this.state.breadcrumbItem.length > 0) &&
|
||||
<Stack tokens={stackTokens}>
|
||||
<SearchBox placeholder="Search Drive" onSearch={checkSearchDrive} onClear={checkClear} />
|
||||
</Stack>
|
||||
}
|
||||
{(this.state.itemID != "" && this.state.searchDrive == "") &&
|
||||
<FileList
|
||||
className={this._customStyle}
|
||||
fileExtensions={this._fileExtensions}
|
||||
|
@ -261,6 +293,15 @@ export default class OneDriveFinder extends React.Component<IOneDriveFinderProps
|
|||
itemClick={this.manageFolder}
|
||||
></FileList>
|
||||
}
|
||||
{(this.state.searchDrive != "") &&
|
||||
<FileList
|
||||
className={this._customStyle}
|
||||
fileExtensions={this._fileExtensions}
|
||||
pageSize={this._pageSize}
|
||||
fileListQuery={searchDrive}
|
||||
itemClick={selectFile}
|
||||
></FileList>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
@ -272,7 +313,6 @@ export default class OneDriveFinder extends React.Component<IOneDriveFinderProps
|
|||
* Capture file or folder and manages breadcrumb
|
||||
*/
|
||||
private manageFolder = (e: any) => {
|
||||
|
||||
if (e.detail.folder != undefined) {
|
||||
this._breadcrumbItem.push({
|
||||
text: e.detail.name,
|
||||
|
|
Loading…
Reference in New Issue