sp-dev-fx-webparts/samples/jquery-photopile
Simon-Pierre Plante 70fce10f75 React Content Query : Added configurable external scripts and external block helpers (#285)
* Added the files to the new repository

* Modified the .gitignore

* Added the generated sppkg file

* Added animated gifs for the read me.

* Added another animated gif

* Added a first temporary version of the readme.md

* Update README.md

* Update README.md

* Updated the readme.md file by removing spaces between brackets in the handlebars templates examples.

* Updated the WebPart with inline template editing

Added inline template editing within the toolpane, automatic template
generation and fixed a bug related to the "Me" checkbox while filtering
user fields.

* Removed the debug folder from sources

* Updated the toolpart animated gif

* Removed toolpart animated gif

* Updated the README.md file with the latest changes.

* Update README.md

* Update README.md

* Update README.md

* Adding AceEditor as Code Editor

* Removing old Monato Artefacts

* Finalized the code editor update

Added documentation for the code editor, fixed the npm-shrinkwrap to
support the code editor dependencies, updated images for the new
documentation, regenerated the .sppkg file and updated the sources on
the public CDN for version 1.0.1

* Added a .gif for the new code editor documentation

* Updated the WebPart with the latest spfx packages.

Multiple bottle-neck bugs have been fixed in SPFX which allows to update
the WebPart with the latest SPFX packages. Overall performance should
now be better and other minor bugs have been fixed.

* ...

* Updated the readme

* Updated the readme with the solution author

* Added the External Scripts property to the toolpart

The new External Scripts property allows the user to add external
JavaScript files to the WebPart that can run precisely before or after
the rendering of the template.

* Fixed the readme.md imaged broke in the previous commit

* Added the ExternalScripts.png picture to readme.md

* Updated readme.md

* Update the externalScripts image.
2017-08-14 09:49:21 +03:00
..
.vscode Added Web Part from Olivier Carpentier around JQuery, Photopile.JS & Office UI Fabric Client-Side Web Part 2016-09-17 19:02:35 +03:00
assets Added Web Part from Olivier Carpentier around JQuery, Photopile.JS & Office UI Fabric Client-Side Web Part 2016-09-17 19:02:35 +03:00
config Updated jquery-photopile to GA (#227) 2017-06-12 12:26:00 +02:00
dist Updated jquery-photopile to GA (#227) 2017-06-12 12:26:00 +02:00
lib/webparts/photopileWebPart Updated jquery-photopile to GA (#227) 2017-06-12 12:26:00 +02:00
src Cleaning samples - removing scss.ts away from the GitHub repository 2017-06-18 17:53:58 +03:00
temp Updated jquery-photopile to GA (#227) 2017-06-12 12:26:00 +02:00
typings Updated jquery-photopile to GA (#227) 2017-06-12 12:26:00 +02:00
.editorconfig Added Web Part from Olivier Carpentier around JQuery, Photopile.JS & Office UI Fabric Client-Side Web Part 2016-09-17 19:02:35 +03:00
.gitattributes Added Web Part from Olivier Carpentier around JQuery, Photopile.JS & Office UI Fabric Client-Side Web Part 2016-09-17 19:02:35 +03:00
.gitignore Added Web Part from Olivier Carpentier around JQuery, Photopile.JS & Office UI Fabric Client-Side Web Part 2016-09-17 19:02:35 +03:00
.npmignore Added Web Part from Olivier Carpentier around JQuery, Photopile.JS & Office UI Fabric Client-Side Web Part 2016-09-17 19:02:35 +03:00
README.md React Content Query : Added configurable external scripts and external block helpers (#285) 2017-08-14 09:49:21 +03:00
gulpfile.js Updated jquery-photopile to GA (#227) 2017-06-12 12:26:00 +02:00
package.json Updated jquery-photopile to GA (#227) 2017-06-12 12:26:00 +02:00
photopile-web-part.njsproj Added Web Part from Olivier Carpentier around JQuery, Photopile.JS & Office UI Fabric Client-Side Web Part 2016-09-17 19:02:35 +03:00
tsconfig.json Updated jquery-photopile to GA (#227) 2017-06-12 12:26:00 +02:00
tsd.json Added Web Part from Olivier Carpentier around JQuery, Photopile.JS & Office UI Fabric Client-Side Web Part 2016-09-17 19:02:35 +03:00

README.md

JQuery, Photopile.JS & Office UI Fabric Client-Side Web Part

Summary

This is a sample web part that illustrated the use of JQuery and Photopile.Js with the SharePoint Framework.

With this web part you can display the photos contained in a SharePoint pictures library and it simulates a pile of photos scattered about on a surface. Thumbnail clicks remove photos from the pile, (enlarging them as if being picked up by the user) and once in view a second click returns the photo to the pile.

Photopile Web Part displayed in SharePoint Workbench

Used SharePoint Framework Version

drop

Applies to

Solution

Solution Author(s)
jquery-photopile Olivier Carpentier (@olivierc)

Version history

Version Date Comments
1.0 September 9, 2016 Initial release

Disclaimer

THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.


Minimal Path to Awesome

  • clone this repo
  • in the command line run:
    • npm install
    • tsd install
    • gulp serve

Features

This web part uses React, Office UI Fabric, JQuery, JQuery UI and Photopile.js. This web part is available in English (en-us) and French (fr-fr).

It is able to:

  • List picture libraries contained in the current SharePoint web site
  • List all the pictures in the selected List
  • Render the pictures as a cool photopile
  • Personalize the layout thanks to editable settings

This web part illustrates the following concepts on top of the SharePoint Framework:

  • Include JQuery and external framework in your solution
  • Implement rich web part properties panel with controls like DropDown, Sliders, Toggle, etc.
  • Load dynamic data from SharePoint as web part properties
  • Load dynamic data from SharePoint REST Services, as lists or items
  • Implement mock system to test your solution in the local workbench or on a SharePoint site
  • Include Office UI Fabric controls in your project
  • Render content with React
  • Etc.