Szukaj szkolenia

Szkolenie archiwalne
Szkolenie archiwalne

55249 Developing with the SharePoint Framework

Kategoria szkolenia: Administracja IT
Łódź Pomorska 65 lub zdalnie przez internet., Łódź, łódzkie
17.10.2022 - 21.10.2022
4 797,00 zł (3 900,00 netto)
  • Opcje szkoleniamożliwość dofinansowania, pewne szkolenie
  • Maksymalna liczba uczestników15

Wymagania :

 

Audience profile :This course is intended for experienced developers who want to start building solutions with SharePoint Framework. No prior knowledge of JavaScript or TypeScript is required. Knowing your way around SharePoint is advised.

Informacje ogólne:

 

This five-day instructor-led course is intended for developers who want to be able to create client-side applications with SharePoint Framework. In this course, students will learn about the new tools needed when developing with SharePoint Framework. Next to that, JavaScript and its potential pitfalls are discussed, leading into using TypeScript as typed superset of JavaScript. Students will also be introduced to the JavaScript library React, which is commonly used inside SharePoint Framework components. Using all these, previously mentioned, techniques, students will learn how to build client-side web parts, extensions, field customizers,… with SharePoint Framework. Finally, students will learn how to include other JavaScript frameworks, provide unit tests, configure the packaging and deploying their solutions.

Job role: Developer

Features: none

Skills gained

  • Work with open source tools Node.js, Yeoman, Gulp
  • Prepare a machine for SharePoint Framework development
  • Work with npm modules inside their project
  • Build client-side web parts with SharePoint Framework
  • Build UI extensions like field customizers or command sets with SharePoint Framework
  • Write and understand JavaScript
  • Use advanced JavaScript patterns like Module and Class
  • Write and compile TypeScript
  • Include other libraries inside their SharePoint Framework project
  • Style their components with Sass (Syntactically Awesome Style Sheets)
  • Use the SharePoint REST API inside SharePoint Framework
  • Consume their own webservices within SharePoint Framework
  • Understand and write React with TypeScript
  • Use JSX as a way to create HTML content
  • Style their customizations with the Office UI Fabric
  • Deploy a SharePoint Framework solution
  • Deploy SharePoint artifacts from within a SharePoint Framework solution
  • Consume the Microsoft Graph API from within SharePoint Framework
  • Configure the build process of Gulp

Konspekt:

 

Module 1: SharePoint Framework Overview

 

This module explains the development options we have in SharePoint. It gives an overview of the toolchain of SharePoint Framework and how it fits into the SharePoint development story.

Lessons

  • What is SharePoint Framework
  • Why SharePoint Framework?
  • Modern toolchain
  • The Future

After completing this module, students will be able to:

  • Understand the development models in SharePoint
  • Understand why SharePoint Framework was introduced
  • Know what the toolchain consist of and what the role of every tool is

Module 2: Preparing your machine for the SharePoint Framework

 

This module explains how to prepare your machine for SharePoint Framework development. Configuring your SharePoint environment for development and deployment is also discussed.

Lessons

  • Setup Office 365
  • Software Installation

Lab : Preparing your machine for the SharePoint Framework

  • Set up an Office 365 developer tenant
  • Set up your development machine

After completing this module, students will be able to:

  • Set up a machine for developing with the SharePoint Framework

Module 3: Node.js Modules

 

This module explains how a node.js project is structured, explains the role of the different components contained within and how to scaffold a project from scratch. It illustrates the different kind of modules you have and how to work with them; i.e. installing, versioning, locking down, caching…

Lessons

  • Modules
  • Creating a Project
  • Using Modules
  • CommonJS
  • Important Modules

After completing this module, students will be able to:

  • Setup a node.js project using npm
  • Install the right modules for their node.js project
  • Loading and caching modules in a node.js project

Module 4: SharePoint Framework Client Web Parts

 

This module explains how to use the Yeoman generator to create a SharePoint Framework project. It will illustrate the structure of a SharePoint Framework project. This module introduces client-side web parts and how to make basic changes to it. It also introduces the local and online Workbench, where your web parts can be tested.

Lessons

  • Framework Client Web Parts
  • What is a Client Web Part?
  • Creating a project
  • Exploring Project Contents
  • Running Your Project
  • Gulp tasks
  • Web Part Configuration

Lab : Create a SharePoint Framework Web Part

  • Create a SharePoint client-side solution
  • Take a look at the generated project
  • Modify the properties and the property pane
  • Modify the web part
  • Test on SharePoint

After completing this module, students will be able to:

  • Use Yeoman to scaffold a SharePoint Framework project
  • Understand the different components inside a SharePoint Framework project and what their role is
  • Create client-side web parts and make changes to it
  • Run their client-side web parts on the local and online workbench
  • Understand and use the Gulp tasks

Module 5: JavaScript Introduction

 

This module explains about the origins of JavaScript and introduces the student to what JavaScript is.

Lessons

  • What is JavaScript
  • What is ECMAScript
  • Using libraries to extend JavaScript functionality
  • Debugging JavaScript with the browser debugger

After completing this module, students will be able to:

  • Understand where JavaScript is loaded and run
  • Use the browser debugger to debug JavaScript code

Module 6: JavaScript Language

 

This module explains how to write basic JavaScript. It describes how to create and use variables and the types that are available in JavaScript. Also, it explains about objects in Javascript, including some out-of-the-box objects like Date, Array, Math, etc. The module shows how to write functions and explains about the scopes they create. Prototypes are also introduced. Error handling is the last part of this module.

Lessons

  • Variables, Objects, Arrays and Functions
  • JavaScript Scopes and Closures
  • Function Parameters
  • Function Constructors
  • Prototypes
  • Error handling

Lab : JavaScript Basics

  • Read a number input from a user and compare it with a random value
  • Write a function to test the elements of an array
  • Write a function that transforms the casing of a string
  • Write a rock-paper-scissors game using JavaScript objects
  • Solve a JavaScript scope problem

After completing this module, students will be able to:

  • Write basic JavaScript
  • Create variables and objects in JavaScript
  • Write JavaScript functions
  • Understand JavaScript scopes
  • Understand and extend JavaScript prototypes
  • Handle JavaScript errors

Module 7: JavaScript Patterns

 

This module explains how to use some of the most popular patterns in JavaScript.

Lessons

  • Callback Pattern
  • Options hashing
  • Self-invoking functions
  • Class Pattern
  • Module Pattern
  • The self reference

After completing this module, students will be able to:

  • Use callbacks
  • User option hashing
  • Write a self-invoking function
  • Use the Class and Module patterns
  • Understand the self reference

Module 8: TypeScript

 

This module explains how Typescript solves many of the problems discussed in the previous modules. TypeScript adds type annotations and code compilation to your development process so that you write better code. TypeScript is used by default in all SharePoint Framework generated projects. This module will discuss the TypeScript language and how it can help you in building your enterprise scale applications.

Lessons

  • What is TypeScript
  • Using TypeScript in your project
  • Variables
  • Functions
  • Interfaces and Classes
  • Modules and Namespaces

Lab : Creating a toy store with TypeScript

  • Creating the model classes
  • Providing dummy data
  • Creating the shopping cart
  • Using an external library

After completing this module, students will be able to:

  • Use TypeScript as a typed superset of JavaScript
  • Configure the TypeScript compiler tsc to convert the TypeScript to JavaScript
  • Work with interfaces, classes, generics, lambda’s, … in TypeScript
  • Debug the TypeScript code
  • Create TypeScript modules that can be shared and reused

Module 9: Client Web Part Properties

 

This module explains how to modify the property pane of your web part. It explains how to configure and use your own properties. It discusses how to dynamically load property pane options, create custom property controls, validate property values.

Lessons

  • Client Web Part Properties
  • Webpart Properties
  • Adding Properties
  • Using Properties
  • Preconfigured Entries
  • Dynamic Data
  • Custom Properties
  • Advanced Configuration

After completing this module, students will be able to:

  • Customize the web part property pane with additional properties, groups and pages
  • Synchronously and asynchronously load property options into the property pane
  • Build custom controls to be used inside the property pane
  • Provide property validation

Module 10: Loading Frameworks and Libraries

 

This module explains how to load additional libraries inside your SharePoint Framework project from different sources.

Lessons

  • Loading Libraries and/or Frameworks
  • Considerations
  • NPM Package
  • Loading from a URL
  • Loading A Local Copy
  • Loading jQuery and plugins
  • Component loader

After completing this module, students will be able to:

  • Load additional libraries in their SharePoint Framework project using either npm, a url, local copy or the component loader.

Module 11: SASS

 

This module explains how to apply styling to your web components by writing maintainable and simpler CSS by means of Sass.

Lessons

  • What is SASS?
  • The Language
  • Variables
  • Types
  • Comments
  • Nested Rules and Properties
  • Partials
  • Extend
  • Mixins
  • Functions

Lab : Sass in a SharePoint Framework project

  • Optimizing the SCSS file
  • Nesting and extending
  • Working with mixins
  • Observing the generated CSS

After completing this module, students will be able to:

  • Write Sass code to style their html components with
  • Compile the scss files to css

Module 12: Loading SharePoint Data in a client web part

 

This module explains how to load data in your SharePoint Framework components using the utility classes. The module discusses the SharePoint REST API and how to consume it. Consume your own API and handling cross-origin issues.

Lessons

  • Loading SharePoint data
  • Page Context
  • Web Services Overview
  • REST and ODATA Fundamentals
  • SharePoint REST API's
  • AJAX
  • Framework HttpClient
  • Solving cross domain issues with CORS

Lab : Loading SharePoint data in a client-side web part

  • Configuring the web part properties
  • Loading SharePoint lists with a DataService and MockService
  • Testing in the local/online workbench
  • Loading items for the selected list

After completing this module, students will be able to:

  • Load/manipulate data from SharePoint by using the SPHttpClient and the SharePoint REST APIs
  • Consuming your own webservice by using the HttpClient

Module 13: Build and deploy your SharePoint Framework project

 

This module explains how to build your SharePoint Framework project for deployment. It discusses the different deployment options you have.

Lessons

  • Build and Deploy a Framework solution
  • Overview
  • Building
  • Deployment

Lab : Deploying a SharePoint Framework client web part

  • Create a deployment location
  • Generate the web part asset files
  • Generate the package
  • Using the web part

After completing this module, students will be able to:

  • Configure and use the build and deployment options with Gulp
  • Use the App catalog site to deploy the package
  • Distinguish between global and local deployment
  • Select the right deployment option for the source files

Module 14: React

 

This module will cover the basics of the JavaScript framework React. It discusses how the React component system works, and how to use it inside your SharePoint Framework projects.

Lessons

  • What is React JS
  • Model View ViewModel (MVVM)
  • React Components
  • What is JSX
  • Html Tags vs React Components
  • Creating Components
  • JavaScript Expressions
  • JSX Gotchas
  • Relationship with State Machines
  • Handling Component State
  • Adding Interactivity by means of events
  • Using Multiple Components
  • Transferring props between components
  • The Lifecycle of a Component
  • Alternative Syntax
  • SharePoint Framework and React

Lab : Building React components to view the members and permissions in your site

  • Modifying the site permissions web part
  • Creating the main component
  • Create the data service layer
  • Visualizing the data inside your component
  • Creating the component to view the Group Members

After completing this module, students will be able to:

  • Create SharePoint Framework solutions using React
  • Work with properties and state inside React components
  • Provide interactivity between components by means of events
  • Generate HTML tags programmatically or with JSX

Module 15: Framework and Office-UI-Fabric

 

This module explains how to use and apply the styles, components, … of the Office UI Fabric inside your SharePoint Framework projects.

Lessons

  • What Is Office UI Fabric?
  • Office UI Fabric Versions
  • Fabric Core Styles
  • Example Uses
  • Fabric Components
  • Fabric JS
  • ngOfficeUIFabric
  • Fabric React

Lab : Using Office UI Fabric React Components

  • Create a SharePoint Framework web part for facility management
  • Improve the appearance with Office UI Fabric

After completing this module, students will be able to:

  • Style their html or React components with Office UI Fabric

Module 16: Deploying SharePoint Artifacts

 

This module explains how you can use your SharePoint Framework solutions to provision SharePoint artifacts, like fields, content types, lists, … to your SharePoint site.

Lessons

  • Deploying SharePoint Artifacts
  • Deployment Options
  • Asset Types
  • Features

After completing this module, students will be able to:

  • Deploy artifacts to a SharePoint site using a SharePoint Framework solution

Module 17: Microsoft Graph

 

This module explains how to consume the Microsoft Graph from within your SharePoint Framework solutions.

Lessons

  • Introduction to Microsoft Graph
  • Authentication Providers
  • Microsoft Graph API
  • Development

After completing this module, students will be able to:

  • Decide between Azure AD or Azure AD v2.0
  • Register their applications for authentication and authorization
  • Set up implicit oAuth flow, which is needed for JavaScript
  • Choose the appropriate authentication library
  • Authenticate using ADAL.js
  • Authenticate using MSAL
  • Understand and consume the Graph API
  • Use the GraphClient helper inside their SharePoint Framework projects

Module 18: SharePoint Framework Extensions

 

This module explains how to build UI extension for your SharePoint site by means of extensions. It will discuss altering the header/footer of a site with application customizers, creating field customizers to change the rendering of a field and how to use command sets to provide your own command bar buttons.

Lessons

  • SharePoint Framework Extensions
  • Extensions Overview
  • Creating Extensions
  • Application Customizers
  • Field Customizers
  • Command Sets

Lab : Using the new Microsoft Graph client from within an application extension

  • Create the extension project
  • Retrieving data from the Microsoft Graph using the GraphHttpClient
  • Render the data inside your component

After completing this module, students will be able to:

  • Use Yeoman to scaffold a SharePoint Framework project for extensions
  • Create application extensions, field customizers, command sets
  • Run their extensions online, but debug them locally

 

Module 19: Webpack

 

This module explains how to use and configure Webpack to bundle all the generated code with.

Lessons

  • What is Webpack
  • Entries and Outputs
  • Using Loaders
  • The need for Plugins

After completing this module, students will be able to:

  • Configure Webpack to bundle their SharePoint Framework solution
  • Understand the benefits and drawbacks of Webpack
  • Create loaders for other file types besides JavaScript
  • Use the appropriate plugins when needed

Module 20: Gulp

 

This module explains the role and the use of the task runner Gulp inside your SharePoint Framework projects. It will discuss the existing tasks that have been added by default to your project as well as how you can quickly add new tasks.

Lessons

  • Installing Gulp as a node module
  • Gulp primitives
  • Gulp by example

After completing this module, students will be able to:

  • Understand the existing Gulp tasks in your SharePoint Framework project
  • Create basic custom Gulp tasks for compiling, minifying, serving, … your code

Module 21: Unit testing web parts

 

This module explains how to use the included testing frameworks in your SharePoint Framework project to unit test your web parts and components.

Lessons

  • Included test frameworks
  • Running tests
  • Component testing

After completing this module, students will be able to:

  • Use the included testing frameworks for testing their SharePoint Framework projects
  • Use Gulp to run the created tests
  • Use enzyme to test React components

W cenę wliczono:
 

  • Certyfikat Microsoft
  • Autoryzowane materiały szkoleniowe w formie elektronicznej (Skillpipe)
  • Gwarancja jakości szkolenia
  • Materiały szkoleniowe, notatnik, długopis(dotyczy szkoleń stacjonarnych)
  • Kontakt z trenerem po szkoleniu
  • Kawa, herbata, słodki poczęstunek(dotyczy szkoleń stacjonarnych)
  • Obiad(dotyczy szkoleń stacjonarnych)

 

Firma jest Autoryzowanym Ośrodkiem Szkoleniowym MICROSOFT Silver Learning
Możesz u nas podejść do egzaminu Pearson VUE
Spółka posiada wpis do ewidencji placówek niepublicznych   Nr ew. ES.VIII.4320-6/p.n./2003 wydany z upoważnienia

Prezydenta Miasta Łodzi

Zdobądź dofinansowanie:

 

Zachęcamy firmy do uzyskania możliwości dofinansowania na szkolenia oferowane przez naszą firmę. W obecnej chwili istnieją

dwa sposoby dzięki którym możesz uzyskać dofinansowanie.

Szkolenia dofinansowane do 80% z funduszy europejskich  - Baza Usług Rozwojowych (BUR). Dofinansowanie dostępne jest dla wszystkich firm zatrudniających średniorocznie do 250 pracowników (maksymalnie średnie przedsiębiorstwo)

Szkolenia dofinansowane z Krajowego Funduszu Szkoleniowego  - dofinansowanie do 100%. Niezależnie od wielkości

przedsiębiorstwa oraz kapitału.

Nasi pracownicy pomogą uzyskać dla Twojej firmy dofinansowanie. To naprawdę nie jest trudne. Jeżeli masz pytania  napisz lub zadzwoń do nas.

Zapraszamy!

Lokalizacje i terminy

Łódź woj. łódzkie
Łódź Pomorska 65 lub zdalnie przez internet.
19.09.2022 - 23.09.2022
4 797,00 zł (3 900,00 netto)
Łódź woj. łódzkie
Łódź Pomorska 65 lub zdalnie przez internet.
17.10.2022 - 21.10.2022
4 797,00 zł (3 900,00 netto)

NT Group Sp. z o.o.

Sylwester Pogorzelski
507 42
Godziny kontaktu
8:00-17:00
Zapisz się na szkolenie
Błąd serwera.

Pozostałe szkolenia firmy

Szkolenie MS 20413 Designing and Implementing a Server Infrastructure.
NT Group Sp. z o.o.
NT Group Pomorska 65, Łódź, łódzkie
25.10.2021 - 29.10.2021
4 797,00 zł (2 925,00 netto)

Polecane szkolenia

Szkolenie MS 20413 Designing and Implementing a Server Infrastructure.
NT Group Sp. z o.o.
NT Group Pomorska 65, Łódź, łódzkie
25.10.2021 - 29.10.2021
4 797,00 zł (2 925,00 netto)
Szkolenie Oracle OCA - Oracle Certified Associate
KM Studio - szkolenia coaching
KM Stduio - szkolenia, Piotrkowska 125 lub online, Łódź, łódzkie
23.05.2024 - 24.05.2024
4 674,00 zł (3 800,00 netto)
Trening Oracle OCA - Oracle Certified Associate
KM Studio - szkolenia coaching
KM Stduio - szkolenia, Piotrkowska 125 lub online, Łódź, łódzkie
23.05.2024 - 24.05.2024
4 674,00 zł (3 800,00 netto)
Warsztaty Oracle OCA - Oracle Certified Associate
KM Studio - szkolenia coaching
KM Stduio - szkolenia, Piotrkowska 125 lub online, Łódź, łódzkie
23.05.2024 - 24.05.2024
4 674,00 zł (3 800,00 netto)
Kurs Oracle OCA - Oracle Certified Associate
KM Studio - szkolenia coaching
KM Stduio - szkolenia, Piotrkowska 125 lub online, Łódź, łódzkie
23.05.2024 - 24.05.2024
4 674,00 zł (3 800,00 netto)
5% rabatu Narzędzia IT w zarządzaniu projektami -2-dniowe warsztaty komputerowe pozwalające na wprowadzenie usprawnień
Centrum Organizacji Szkoleń i Konferencji SEMPER
Online, Online, dolnośląskie
10.06.2024 - 11.06.2024
1 832,70 zł (1 490,00 netto)
5% rabatu Wykorzystanie sztucznej inteligencji (artificial intelligence, AI) w pracy urzędnika- zwiększ wydajność i efektywność.
Centrum Organizacji Szkoleń i Konferencji SEMPER
Online, Online, dolnośląskie
20.05.2024 - 21.05.2024
1 820,40 zł (1 480,00 netto)
zobacz profil udostępnij zapytanie grupowe