Added webpart to show, add and edit azure apps.

This commit is contained in:
Diksha Bhura 2023-04-18 18:48:41 -04:00
parent da1b5b0932
commit 6f0ba68bd0
35 changed files with 22582 additions and 0 deletions

View File

@ -0,0 +1,352 @@
require('@rushstack/eslint-config/patch/modern-module-resolution');
module.exports = {
extends: ['@microsoft/eslint-config-spfx/lib/profiles/react'],
parserOptions: { tsconfigRootDir: __dirname },
overrides: [
{
files: ['*.ts', '*.tsx'],
parser: '@typescript-eslint/parser',
'parserOptions': {
'project': './tsconfig.json',
'ecmaVersion': 2018,
'sourceType': 'module'
},
rules: {
// Prevent usage of the JavaScript null value, while allowing code to access existing APIs that may require null. https://www.npmjs.com/package/@rushstack/eslint-plugin
'@rushstack/no-new-null': 1,
// Require Jest module mocking APIs to be called before any other statements in their code block. https://www.npmjs.com/package/@rushstack/eslint-plugin
'@rushstack/hoist-jest-mock': 1,
// Require regular expressions to be constructed from string constants rather than dynamically building strings at runtime. https://www.npmjs.com/package/@rushstack/eslint-plugin-security
'@rushstack/security/no-unsafe-regexp': 1,
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
'@typescript-eslint/adjacent-overload-signatures': 1,
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
//
// CONFIGURATION: By default, these are banned: String, Boolean, Number, Object, Symbol
'@typescript-eslint/ban-types': [
1,
{
'extendDefaults': false,
'types': {
'String': {
'message': 'Use \'string\' instead',
'fixWith': 'string'
},
'Boolean': {
'message': 'Use \'boolean\' instead',
'fixWith': 'boolean'
},
'Number': {
'message': 'Use \'number\' instead',
'fixWith': 'number'
},
'Object': {
'message': 'Use \'object\' instead, or else define a proper TypeScript type:'
},
'Symbol': {
'message': 'Use \'symbol\' instead',
'fixWith': 'symbol'
},
'Function': {
'message': 'The \'Function\' type accepts any function-like value.\nIt provides no type safety when calling the function, which can be a common source of bugs.\nIt also accepts things like class declarations, which will throw at runtime as they will not be called with \'new\'.\nIf you are expecting the function to accept certain arguments, you should explicitly define the function shape.'
}
}
}
],
// RATIONALE: Code is more readable when the type of every variable is immediately obvious.
// Even if the compiler may be able to infer a type, this inference will be unavailable
// to a person who is reviewing a GitHub diff. This rule makes writing code harder,
// but writing code is a much less important activity than reading it.
//
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
'@typescript-eslint/explicit-function-return-type': [
1,
{
'allowExpressions': true,
'allowTypedFunctionExpressions': true,
'allowHigherOrderFunctions': false
}
],
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
// Rationale to disable: although this is a recommended rule, it is up to dev to select coding style.
// Set to 1 (warning) or 2 (error) to enable.
'@typescript-eslint/explicit-member-accessibility': 0,
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
'@typescript-eslint/no-array-constructor': 1,
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
//
// RATIONALE: The "any" keyword disables static type checking, the main benefit of using TypeScript.
// This rule should be suppressed only in very special cases such as JSON.stringify()
// where the type really can be anything. Even if the type is flexible, another type
// may be more appropriate such as "unknown", "{}", or "Record<k,V>".
'@typescript-eslint/no-explicit-any': 1,
// RATIONALE: The #1 rule of promises is that every promise chain must be terminated by a catch()
// handler. Thus wherever a Promise arises, the code must either append a catch handler,
// or else return the object to a caller (who assumes this responsibility). Unterminated
// promise chains are a serious issue. Besides causing errors to be silently ignored,
// they can also cause a NodeJS process to terminate unexpectedly.
'@typescript-eslint/no-floating-promises': 2,
// RATIONALE: Catches a common coding mistake.
'@typescript-eslint/no-for-in-array': 2,
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
'@typescript-eslint/no-misused-new': 2,
// RATIONALE: The "namespace" keyword is not recommended for organizing code because JavaScript lacks
// a "using" statement to traverse namespaces. Nested namespaces prevent certain bundler
// optimizations. If you are declaring loose functions/variables, it's better to make them
// static members of a class, since classes support property getters and their private
// members are accessible by unit tests. Also, the exercise of choosing a meaningful
// class name tends to produce more discoverable APIs: for example, search+replacing
// the function "reverse()" is likely to return many false matches, whereas if we always
// write "Text.reverse()" is more unique. For large scale organization, it's recommended
// to decompose your code into separate NPM packages, which ensures that component
// dependencies are tracked more conscientiously.
//
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
'@typescript-eslint/no-namespace': [
1,
{
'allowDeclarations': false,
'allowDefinitionFiles': false
}
],
// RATIONALE: Parameter properties provide a shorthand such as "constructor(public title: string)"
// that avoids the effort of declaring "title" as a field. This TypeScript feature makes
// code easier to write, but arguably sacrifices readability: In the notes for
// "@typescript-eslint/member-ordering" we pointed out that fields are central to
// a class's design, so we wouldn't want to bury them in a constructor signature
// just to save some typing.
//
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
// Set to 1 (warning) or 2 (error) to enable the rule
'@typescript-eslint/no-parameter-properties': 0,
// RATIONALE: When left in shipping code, unused variables often indicate a mistake. Dead code
// may impact performance.
//
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
'@typescript-eslint/no-unused-vars': [
1,
{
'vars': 'all',
// Unused function arguments often indicate a mistake in JavaScript code. However in TypeScript code,
// the compiler catches most of those mistakes, and unused arguments are fairly common for type signatures
// that are overriding a base class method or implementing an interface.
'args': 'none'
}
],
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
'@typescript-eslint/no-use-before-define': [
2,
{
'functions': false,
'classes': true,
'variables': true,
'enums': true,
'typedefs': true
}
],
// Disallows require statements except in import statements.
// In other words, the use of forms such as var foo = require("foo") are banned. Instead use ES6 style imports or import foo = require("foo") imports.
'@typescript-eslint/no-var-requires': 'error',
// RATIONALE: The "module" keyword is deprecated except when describing legacy libraries.
//
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
'@typescript-eslint/prefer-namespace-keyword': 1,
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
// Rationale to disable: it's up to developer to decide if he wants to add type annotations
// Set to 1 (warning) or 2 (error) to enable the rule
'@typescript-eslint/no-inferrable-types': 0,
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
// Rationale to disable: declaration of empty interfaces may be helpful for generic types scenarios
'@typescript-eslint/no-empty-interface': 0,
// RATIONALE: This rule warns if setters are defined without getters, which is probably a mistake.
'accessor-pairs': 1,
// RATIONALE: In TypeScript, if you write x["y"] instead of x.y, it disables type checking.
'dot-notation': [
1,
{
'allowPattern': '^_'
}
],
// RATIONALE: Catches code that is likely to be incorrect
'eqeqeq': 1,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'for-direction': 1,
// RATIONALE: Catches a common coding mistake.
'guard-for-in': 2,
// RATIONALE: If you have more than 2,000 lines in a single source file, it's probably time
// to split up your code.
'max-lines': ['warn', { max: 2000 }],
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-async-promise-executor': 2,
// RATIONALE: Deprecated language feature.
'no-caller': 2,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-compare-neg-zero': 2,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-cond-assign': 2,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-constant-condition': 1,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-control-regex': 2,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-debugger': 1,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-delete-var': 2,
// RATIONALE: Catches code that is likely to be incorrect
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-duplicate-case': 2,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-empty': 1,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-empty-character-class': 2,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-empty-pattern': 1,
// RATIONALE: Eval is a security concern and a performance concern.
'no-eval': 1,
// RATIONALE: Catches code that is likely to be incorrect
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-ex-assign': 2,
// RATIONALE: System types are global and should not be tampered with in a scalable code base.
// If two different libraries (or two versions of the same library) both try to modify
// a type, only one of them can win. Polyfills are acceptable because they implement
// a standardized interoperable contract, but polyfills are generally coded in plain
// JavaScript.
'no-extend-native': 1,
// Disallow unnecessary labels
'no-extra-label': 1,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-fallthrough': 2,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-func-assign': 1,
// RATIONALE: Catches a common coding mistake.
'no-implied-eval': 2,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-invalid-regexp': 2,
// RATIONALE: Catches a common coding mistake.
'no-label-var': 2,
// RATIONALE: Eliminates redundant code.
'no-lone-blocks': 1,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-misleading-character-class': 2,
// RATIONALE: Catches a common coding mistake.
'no-multi-str': 2,
// RATIONALE: It's generally a bad practice to call "new Thing()" without assigning the result to
// a variable. Either it's part of an awkward expression like "(new Thing()).doSomething()",
// or else implies that the constructor is doing nontrivial computations, which is often
// a poor class design.
'no-new': 1,
// RATIONALE: Obsolete language feature that is deprecated.
'no-new-func': 2,
// RATIONALE: Obsolete language feature that is deprecated.
'no-new-object': 2,
// RATIONALE: Obsolete notation.
'no-new-wrappers': 1,
// RATIONALE: Catches code that is likely to be incorrect
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-octal': 2,
// RATIONALE: Catches code that is likely to be incorrect
'no-octal-escape': 2,
// RATIONALE: Catches code that is likely to be incorrect
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-regex-spaces': 2,
// RATIONALE: Catches a common coding mistake.
'no-return-assign': 2,
// RATIONALE: Security risk.
'no-script-url': 1,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-self-assign': 2,
// RATIONALE: Catches a common coding mistake.
'no-self-compare': 2,
// RATIONALE: This avoids statements such as "while (a = next(), a && a.length);" that use
// commas to create compound expressions. In general code is more readable if each
// step is split onto a separate line. This also makes it easier to set breakpoints
// in the debugger.
'no-sequences': 1,
// RATIONALE: Catches code that is likely to be incorrect
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-shadow-restricted-names': 2,
// RATIONALE: Obsolete language feature that is deprecated.
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-sparse-arrays': 2,
// RATIONALE: Although in theory JavaScript allows any possible data type to be thrown as an exception,
// such flexibility adds pointless complexity, by requiring every catch block to test
// the type of the object that it receives. Whereas if catch blocks can always assume
// that their object implements the "Error" contract, then the code is simpler, and
// we generally get useful additional information like a call stack.
'no-throw-literal': 2,
// RATIONALE: Catches a common coding mistake.
'no-unmodified-loop-condition': 1,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-unsafe-finally': 2,
// RATIONALE: Catches a common coding mistake.
'no-unused-expressions': 1,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-unused-labels': 1,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-useless-catch': 1,
// RATIONALE: Avoids a potential performance problem.
'no-useless-concat': 1,
// RATIONALE: The "var" keyword is deprecated because of its confusing "hoisting" behavior.
// Always use "let" or "const" instead.
//
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
'no-var': 2,
// RATIONALE: Generally not needed in modern code.
'no-void': 1,
// RATIONALE: Obsolete language feature that is deprecated.
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'no-with': 2,
// RATIONALE: Makes logic easier to understand, since constants always have a known value
// @typescript-eslint\eslint-plugin\dist\configs\eslint-recommended.js
'prefer-const': 1,
// RATIONALE: Catches a common coding mistake where "resolve" and "reject" are confused.
'promise/param-names': 2,
// RATIONALE: Catches code that is likely to be incorrect
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'require-atomic-updates': 2,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'require-yield': 1,
// "Use strict" is redundant when using the TypeScript compiler.
'strict': [
2,
'never'
],
// RATIONALE: Catches code that is likely to be incorrect
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
'use-isnan': 2,
// STANDARDIZED BY: eslint\conf\eslint-recommended.js
// Set to 1 (warning) or 2 (error) to enable.
// Rationale to disable: !!{}
'no-extra-boolean-cast': 0,
// ====================================================================
// @microsoft/eslint-plugin-spfx
// ====================================================================
'@microsoft/spfx/import-requires-chunk-name': 1,
'@microsoft/spfx/no-require-ensure': 2,
'@microsoft/spfx/pair-react-dom-render-unmount': 1
}
},
{
// For unit tests, we can be a little bit less strict. The settings below revise the
// defaults specified in the extended configurations, as well as above.
files: [
// Test files
'*.test.ts',
'*.test.tsx',
'*.spec.ts',
'*.spec.tsx',
// Facebook convention
'**/__mocks__/*.ts',
'**/__mocks__/*.tsx',
'**/__tests__/*.ts',
'**/__tests__/*.tsx',
// Microsoft convention
'**/test/*.ts',
'**/test/*.tsx'
],
rules: {}
}
]
};

View File

@ -0,0 +1,34 @@
# Logs
logs
*.log
npm-debug.log*
# Dependency directories
node_modules
# Build generated files
dist
lib
release
solution
temp
*.sppkg
.heft
# Coverage directory used by tools like istanbul
coverage
# OSX
.DS_Store
# Visual Studio files
.ntvs_analysis.dat
.vs
bin
obj
# Resx Generated Code
*.resx.ts
# Styles Generated Code
*.scss.ts

View File

@ -0,0 +1,16 @@
!dist
config
gulpfile.js
release
src
temp
tsconfig.json
tslint.json
*.log
.yo-rc.json
.vscode

View File

@ -0,0 +1,21 @@
{
"@microsoft/generator-sharepoint": {
"plusBeta": false,
"isCreatingSolution": true,
"nodeVersion": "14.15.0",
"sdksVersions": {
"@microsoft/microsoft-graph-client": "3.0.2",
"@microsoft/teams-js": "2.4.1"
},
"version": "1.16.1",
"libraryName": "azure-apps",
"libraryId": "2236ddb2-5c5e-4dca-992d-b772027a6d60",
"environment": "spo",
"packageManager": "npm",
"solutionName": "azureApps",
"solutionShortDescription": "azureApps description",
"skipFeatureDeployment": true,
"isDomainIsolated": false,
"componentType": "webpart"
}
}

View File

@ -0,0 +1,70 @@
# Azure Apps
## Summary
This sample webpart shows list of Azure apps in your tenant. A new Azure application can also be registered and can be edited using this webpart.
**Add Azure App**
![Animated Sample](./assets/Add-New-App.gif)
**Edit Azure App**
![Animated Sample](./assets/Edit-App.gif)
## Compatibility
| :warning: Important |
|:---------------------------|
| Every SPFx version is only compatible with specific version(s) of Node.js. In order to be able to build this sample, please ensure that the version of Node on your workstation matches one of the versions listed in this section. This sample will not work on a different version of Node.|
|Refer to <https://aka.ms/spfx-matrix> for more information on SPFx compatibility. |
![SPFx 1.16.1](https://img.shields.io/badge/SPFx-1.16.1-green.svg)
![Node.js v14 | v12](https://img.shields.io/badge/Node.js-v14%20%7C%20v12-green.svg)
![Compatible with SharePoint Online](https://img.shields.io/badge/SharePoint%20Online-Compatible-green.svg)
![Does not work with SharePoint 2019](https://img.shields.io/badge/SharePoint%20Server%202019-Incompatible-red.svg "SharePoint Server 2019 requires SPFx 1.4.1 or lower")
![Does not work with SharePoint 2016 (Feature Pack 2)](https://img.shields.io/badge/SharePoint%20Server%202016%20(Feature%20Pack%202)-Incompatible-red.svg "SharePoint Server 2016 Feature Pack 2 requires SPFx 1.1")
![Local Workbench Unsupported](https://img.shields.io/badge/Local%20Workbench-Unsupported-red.svg "Local workbench is no longer available as of SPFx 1.13 and above")
![Hosted Workbench Compatible](https://img.shields.io/badge/Hosted%20Workbench-Compatible-green.svg)
![Compatible with Remote Containers](https://img.shields.io/badge/Remote%20Containers-Compatible-green.svg)
## Applies to
- [SharePoint Framework](https://aka.ms/spfx)
- [Microsoft 365 tenant](https://docs.microsoft.com/en-us/sharepoint/dev/spfx/set-up-your-developer-tenant)
## Contributors
[Diksha Bhura](https://github.com/Diksha-Bhura)
## Version history
| Version | Date | Comments |
| ------- | ---------------- | --------------- |
| 1.0 | April 17, 2023 | Initial release |
## Minimal Path to awesome
- Clone this repository
- In the command-line run:
- `npm install`
- `gulp bundle`
- `gulp package-solution`
- Deploy the package to your app catalog
- Approve the API permission request from the SharePoint admin
- Add the web part to a page
- In the command-line run:
- `gulp serve --nobrowser`
> This sample can also be opened with [VS Code Remote Development](https://code.visualstudio.com/docs/remote/remote-overview). Visit https://aka.ms/spfx-devcontainer for further instructions.
## Help
We do not support samples, but we this community is always willing to help, and we want to improve these samples. We use GitHub to track issues, which makes it easy for community members to volunteer their time and help resolve issues.
If you're having issues building the solution, please run [spfx doctor](https://pnp.github.io/cli-microsoft365/cmd/spfx/spfx-doctor/) from within the solution folder to diagnose incompatibility issues with your environment.
## 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.**

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 725 KiB

View File

@ -0,0 +1,18 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json",
"version": "2.0",
"bundles": {
"azure-apps-web-part": {
"components": [
{
"entrypoint": "./lib/webparts/azureApps/AzureAppsWebPart.js",
"manifest": "./src/webparts/azureApps/AzureAppsWebPart.manifest.json"
}
]
}
},
"externals": {},
"localizedResources": {
"AzureAppsWebPartStrings": "lib/webparts/azureApps/loc/{locale}.js"
}
}

View File

@ -0,0 +1,7 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
"workingDir": "./release/assets/",
"account": "<!-- STORAGE ACCOUNT NAME -->",
"container": "azure-apps",
"accessKey": "<!-- ACCESS KEY -->"
}

View File

@ -0,0 +1,40 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
"solution": {
"name": "Azure Apps",
"id": "2236ddb2-5c5e-4dca-992d-b772027a6d60",
"version": "1.0.0.0",
"includeClientSideAssets": true,
"skipFeatureDeployment": true,
"isDomainIsolated": false,
"developer": {
"name": "",
"websiteUrl": "",
"privacyUrl": "",
"termsOfUseUrl": "",
"mpnId": "Undefined-1.16.1"
},
"metadata": {
"shortDescription": {
"default": "Showing all Azure apps and able to register new app."
},
"longDescription": {
"default": "Showing all Azure apps and able to register new app."
},
"screenshotPaths": [],
"videoUrl": "",
"categories": []
},
"features": [
{
"title": "azure-apps Feature",
"description": "The feature that activates elements of the azure-apps solution.",
"id": "a199d780-f3ef-41e7-b712-b50780ec8320",
"version": "1.0.0.0"
}
]
},
"paths": {
"zippedPackage": "solution/azure-apps.sppkg"
}
}

View File

@ -0,0 +1,3 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/core-build/sass.schema.json"
}

View File

@ -0,0 +1,6 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
"port": 4321,
"https": true,
"initialPage": "https://pc45.sharepoint.com/_layouts/workbench.aspx"
}

View File

@ -0,0 +1,4 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/write-manifests.schema.json",
"cdnBasePath": "<!-- PATH TO CDN -->"
}

View File

@ -0,0 +1,16 @@
'use strict';
const build = require('@microsoft/sp-build-web');
build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`);
var getTasks = build.rig.getTasks;
build.rig.getTasks = function () {
var result = getTasks.call(build.rig);
result.set('serve', result.get('serve-deprecated'));
return result;
};
build.initialize(require('gulp'));

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,41 @@
{
"name": "azure-apps",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=16.13.0 <17.0.0"
},
"main": "lib/index.js",
"scripts": {
"build": "gulp bundle",
"clean": "gulp clean",
"test": "gulp test"
},
"dependencies": {
"@microsoft/sp-core-library": "1.16.1",
"@microsoft/sp-lodash-subset": "1.16.1",
"@microsoft/sp-office-ui-fabric-core": "1.16.1",
"@microsoft/sp-property-pane": "1.16.1",
"@microsoft/sp-webpart-base": "1.16.1",
"moment": "^2.29.4",
"office-ui-fabric-react": "^7.199.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"tslib": "2.3.1"
},
"devDependencies": {
"@microsoft/rush-stack-compiler-4.5": "0.2.2",
"@rushstack/eslint-config": "2.5.1",
"@microsoft/eslint-plugin-spfx": "1.16.1",
"@microsoft/eslint-config-spfx": "1.16.1",
"@microsoft/sp-build-web": "1.16.1",
"@types/webpack-env": "~1.15.2",
"ajv": "^6.12.5",
"gulp": "4.0.2",
"typescript": "4.5.5",
"@types/react": "17.0.45",
"@types/react-dom": "17.0.17",
"eslint-plugin-react-hooks": "4.3.0",
"@microsoft/sp-module-interfaces": "1.16.1"
}
}

View File

@ -0,0 +1,7 @@
import { MSGraphClientV3 } from '@microsoft/sp-http';
export interface IRegisterAppProps{
graphClient: MSGraphClientV3,
modal:() => any,
callBack:(latestapp: any) => any,
}

View File

@ -0,0 +1,4 @@
export interface IRegisterAppState{
appName: string;
signInAudience: string;
}

View File

@ -0,0 +1,18 @@
@import '~@fluentui/react/dist/sass/References.scss';
.container {
height: 400px !important;
width: 100% !important;
border-width: 0px !important;
padding: 20px;
box-sizing: border-box;
}
.subLabel{
font-weight: 10;
font-size: small;
}
.label{
margin-top: -50px;
}

View File

@ -0,0 +1,110 @@
import { ChoiceGroup, IChoiceGroupOption, Label, PrimaryButton, TextField } from 'office-ui-fabric-react';
import * as React from 'react';
import styles from './RegisterApp.module.scss';
import { IRegisterAppProps } from './IRegisterAppProps';
import { IRegisterAppState } from './IRegisterAppState';
import { cloneDeep } from '@microsoft/sp-lodash-subset';
import { IAppModel } from '../models/IAppModel';
import * as moment from 'moment';
export default class RegisterApp extends React.Component<IRegisterAppProps, IRegisterAppState>{
constructor(props: IRegisterAppProps, state: IRegisterAppState) {
super(props);
this.state = {
appName: "",
signInAudience: "AzureADMyOrg",
};
}
private onNameChanged = (event: React.FormEvent<HTMLInputElement | HTMLTextAreaElement>, newValue?: string) => {
this.setState((prevState: IRegisterAppState, nextState: IRegisterAppState): IRegisterAppState => {
nextState = cloneDeep(prevState);
nextState.appName = newValue;
return nextState;
});
}
private onSupportedAccountChanged(ev: React.FormEvent<HTMLInputElement>, option: IChoiceGroupOption): void {
this.setState((prevState: IRegisterAppState, nextState: IRegisterAppState): IRegisterAppState => {
nextState = cloneDeep(prevState);
nextState.signInAudience = option.key;
return nextState;
});
}
private onRegisterApp = (): Promise<void> => {
return new Promise(async (resolve, reject) => {
try {
const newAppDetails = {
"displayName": this.state.appName,
"signInAudience": this.state.signInAudience
}
let result = await this.props.graphClient
.api("/applications")
.post(newAppDetails);
if (result.id) {
let app: IAppModel = {
Id: "",
appId: "",
displayName: "",
createdDateTime: null,
users: []
};
app.Id = result.id;
app.appId = result.appId;
app.displayName = result.displayName;
app.createdDateTime = moment(new Date(result.createdDateTime)).format("llll");
this.props.callBack(app);
resolve();
} else {
reject();
}
console.log(result);
}
catch (exception) {
}
})
}
private handlerRegisterClick = () => {
this.onRegisterApp().then(
this.props.modal()
)
}
public render(): React.ReactElement<IRegisterAppProps> {
const options: IChoiceGroupOption[] = [
{ key: 'AzureADMyOrg', text: 'Accounts in this organizational directory only (MSFT only - Single tenant)' },
{ key: 'AzureADMultipleOrgs', text: 'Accounts in any organizational directory (Any Azure AD directory - Multitenant)' },
{ key: 'AzureADandPersonalMicrosoftAccount', text: 'Accounts in any organizational directory (Any Azure AD directory - Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)' },
{ key: 'PersonalMicrosoftAccount', text: 'Personal Microsoft accounts only' },
];
return (
<div className={styles.container}>
<h2 className={styles.label}>Registering an application</h2>
<Label required>Name</Label>
<Label className={styles.subLabel}>The user-facing display name for this application (this can be changed later).</Label>
<TextField required onChange={(event, value) => this.onNameChanged(event, value)} />
<br />
<br />
<Label>Supported account types</Label>
<Label className={styles.subLabel}>Who can use this application or access this API?</Label>
<ChoiceGroup defaultSelectedKey="AzureADMyOrg" options={options} onChange={this.onSupportedAccountChanged.bind(this)} />
<br />
<PrimaryButton text='Register' disabled={this.state.appName != "" ? false : true} onClick={this.handlerRegisterClick.bind(this)} />
</div>
);
}
}

View File

@ -0,0 +1,18 @@
import { IDocumentCardActivityPerson } from "@fluentui/react";
export interface IAppModel{
Id: string;
displayName: string;
appId: string,
createdDateTime: string;
users: IDocumentCardActivityPerson[],
}
export interface IAppModels{
value: IAppModel[],
}
export interface IUserDetails{
displayName: string;
upn: string;
}

View File

@ -0,0 +1 @@
// A file is required to be in the root of the /src directory by the TypeScript compiler

View File

@ -0,0 +1,28 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx/client-side-web-part-manifest.schema.json",
"id": "0bb9dd02-3098-4a9e-b418-7f8218af82c2",
"alias": "AzureAppsWebPart",
"componentType": "WebPart",
// The "*" signifies that the version should be taken from the package.json
"version": "*",
"manifestVersion": 2,
// If true, the component can only be installed on sites where Custom Script is allowed.
// Components that allow authors to embed arbitrary script code should set this to true.
// https://support.office.com/en-us/article/Turn-scripting-capabilities-on-or-off-1f2c515f-5d7e-448a-9fd7-835da935584f
"requiresCustomScript": false,
"supportedHosts": ["SharePointWebPart", "TeamsPersonalApp", "TeamsTab", "SharePointFullPage"],
"supportsThemeVariants": true,
"preconfiguredEntries": [{
"groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Advanced
"group": { "default": "Advanced" },
"title": { "default": "AzureApps" },
"description": { "default": "AzureApps description" },
"officeFabricIconFontName": "Page",
"properties": {
"description": "AzureApps"
}
}]
}

View File

@ -0,0 +1,73 @@
import * as React from 'react';
import * as ReactDom from 'react-dom';
import { Version } from '@microsoft/sp-core-library';
import {
IPropertyPaneConfiguration,
PropertyPaneTextField
} from '@microsoft/sp-property-pane';
import { BaseClientSideWebPart } from '@microsoft/sp-webpart-base';
import * as strings from 'AzureAppsWebPartStrings';
import azureApps from './components/AzureApps';
import { IAzureAppsProps } from './components/IAzureAppsProps';
import { MSGraphClientV3 } from '@microsoft/sp-http';
export interface IazureAppsWebPartProps {
description: string;
}
export default class azureAppsWebPart extends BaseClientSideWebPart<IazureAppsWebPartProps> {
private graphClient: MSGraphClientV3;
protected onInit(): Promise<void> {
return new Promise<void>((resolve: () => void, reject: (error: any) => void): void => {
this.context.msGraphClientFactory
.getClient("3")
.then((client: MSGraphClientV3): void => {
this.graphClient = client;
resolve();
}, err => reject(err));
})
}
public render(): void {
const element: React.ReactElement<IAzureAppsProps> = React.createElement(
azureApps,
{
graphClient: this.graphClient
}
);
ReactDom.render(element, this.domElement);
}
protected onDispose(): void {
ReactDom.unmountComponentAtNode(this.domElement);
}
protected get dataVersion(): Version {
return Version.parse('1.0');
}
protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration {
return {
pages: [
{
header: {
description: strings.PropertyPaneDescription
},
groups: [
{
groupName: strings.BasicGroupName,
groupFields: [
PropertyPaneTextField('description', {
label: strings.DescriptionFieldLabel
})
]
}
]
}
]
};
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,62 @@
@import '~@fluentui/react/dist/sass/References.scss';
.AzureApps {
overflow: hidden;
padding: 1em;
color: "[theme:bodyText, default: #323130]";
color: var(--bodyText);
&.teams {
font-family: $ms-font-family-fallbacks;
}
}
.welcome {
text-align: center;
}
.mainarea{
height: 200px;
width: 400px !important;
}
.scrollPane{
width: 400px;
}
.iconButtonStyles {
margin-left: 840px !important;
//padding: 20px 20px 0;
//@at-root: 750px !important;
color: black;
}
.welcomeImage {
width: 100%;
max-width: 420px;
}
.documentCard{
width: 300px;
margin-top: 10px;
}
.refreshDialog{
height: 150px !important;
}
.documentCardTitle {
text-decoration: none;
font-size: 16px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
color:inherit;
// color: "[theme:link, default:#03787c]";
color: #03787c;
//color: var(--link);
&:hover {
text-decoration: underline;
color: #014446;//"[theme:linkHovered, default: #014446]";
//color: var(--linkHovered);
}
}

View File

@ -0,0 +1,261 @@
import * as React from 'react';
import { IAzureAppsProps } from './IAzureAppsProps';
import { IAppModel } from '../../../common/models/IAppModel';
import { IAzureAppsState } from './IAzureAppsState';
import { DefaultButton, Dialog, DialogFooter, DocumentCard, DocumentCardActivity, DocumentCardDetails, DocumentCardTitle, DocumentCardType, IButtonStyles, IconButton, IDocumentCardActivityPerson, Modal, ScrollablePane, Spinner, Sticky, StickyPositionType } from 'office-ui-fabric-react';
import { cloneDeep } from '@microsoft/sp-lodash-subset';
import RegisterApp from '../../../common/components/RegisterApp';
import styles from './AzureApps.module.scss';
import * as _ from 'lodash';
import * as moment from 'moment';
export default class azureApps extends React.Component<IAzureAppsProps, IAzureAppsState> {
private appEditLink = "https://portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationMenuBlade/~/Overview/appId/";
constructor(props: IAzureAppsProps, state: IAzureAppsState) {
super(props);
this.state = {
apps: [],
loading: true,
error: "",
isModalOpen: false,
isDialogHidden: true,
isRefreshed: true,
}
}
componentDidMount(): void {
this.getApps().then((retrievedApps) => {
retrievedApps.forEach(async currentApp => {
await this.getAllOwners(currentApp.Id).then((users) => {
currentApp.users = users;
});
this.setState((prevState: IAzureAppsState, nextState: IAzureAppsState): IAzureAppsState => {
nextState = cloneDeep(prevState);
nextState.apps = retrievedApps;
nextState.error = "";
nextState.loading = false;
return nextState;
})
});
})
}
private getApps = (): Promise<IAppModel[]> => {
return new Promise<IAppModel[]>(async (resolve, reject) => {
try {
let retrievedApps: IAppModel[] = [];
let result = await this.props.graphClient
.api("applications")
.get();
if (result && result.value && result.value.length > 0) {
for (let index = 0; index < result.value.length; index++) {
let currApp = result.value[index];
if (currApp.createdDateTime != null) {
let app: IAppModel = {
Id: "",
appId: "",
displayName: "",
createdDateTime: null,
users: []
};
app.Id = currApp.id;
app.appId = currApp.appId;
app.displayName = currApp.displayName;
app.createdDateTime = moment(new Date(currApp.createdDateTime)).format("LLLL");
retrievedApps.push(app);
}
}
resolve(retrievedApps);
}
else {
this.setState({
loading: false
});
}
}
catch (Exception) {
console.log("error");
reject();
}
})
}
private getAllOwners = (id: string): Promise<any> => {
let users: IDocumentCardActivityPerson[] = [];
return new Promise(async (resolve, reject) => {
try {
let result = await this.props.graphClient
.api("/applications/" + id + "/owners").
get();
if (result && result.value && result.value.length) {
for (let index = 0; index < result.value.length; index++) {
let currentUser = result.value[index]
let userDetails: IDocumentCardActivityPerson = {
name: "",
profileImageSrc: ""
};
userDetails.name = currentUser.displayName,
userDetails.profileImageSrc = ''
users.push(userDetails);
}
resolve(users);
}
}
catch (Exception) {
reject();
}
});
}
public refreshCallback = async (latestapp: IAppModel) => {
let apps = this.state.apps;
apps.push(latestapp);
console.log("Apps on callback: "+this.state.apps.length);
await this.setState((prevState: IAzureAppsState, newState: IAzureAppsState) => {
newState = cloneDeep(prevState);
newState.apps.push(latestapp);
newState.isRefreshed = false;
return newState;
})
}
public ModalAction() {
this.setState((prevState: IAzureAppsState, newState: IAzureAppsState) => {
newState = cloneDeep(prevState);
newState.isModalOpen = !this.state.isModalOpen;
return newState;
})
}
private handlerRefreshClick = ():void => {
window.location.reload();
this.setState((prevState: IAzureAppsState, newState:IAzureAppsState):IAzureAppsState => {
newState = cloneDeep(prevState);
newState.isRefreshed = true;
return newState;
})
}
public render(): React.ReactElement<IAzureAppsProps> {
const iconStyles: Partial<IButtonStyles> = {
root: {
//color: black,
marginLeft: '650px',
marginTop: '4px',
},
rootHovered: {
//color: theme.palette.neutralDark,
},
};
_.orderBy(this.state.apps, function(o){
return moment(new Date(o.createdDateTime)).format("hh:mm:ss")
},['desc']);
return (
<div className={styles.mainarea}>
{
this.state.loading ?
<div>
<Spinner hidden={this.state.loading} label="Loading Data..." ariaLive="assertive" labelPosition="top" />
</div> :
<ScrollablePane className={styles.scrollPane}>
<Sticky stickyPosition={StickyPositionType.Header}>
<DefaultButton text='Register App' onClick={this.ModalAction.bind(this)} />
</Sticky>
{
this.state.apps.length ?
this.state.apps.map(currentApp => (
<div>
{currentApp.users.length ?
<DocumentCard
className={styles.documentCard}
type={DocumentCardType.compact}
onClickHref={this.appEditLink + currentApp.appId}
onClickTarget='_blank'>
<DocumentCardDetails>
<DocumentCardTitle title={currentApp.displayName} className={styles.documentCardTitle} />
<DocumentCardActivity activity={currentApp.createdDateTime.toString()} people={currentApp.users.slice(0, currentApp.users.length)} />
</DocumentCardDetails>
</DocumentCard>
:
<div/>
}
</div>
))
:
<h4>No apps found</h4>
}
</ScrollablePane>
}
{/* Modal to register new app. */}
<div>
<Modal isOpen={this.state.isModalOpen}>
<div>
{/* <div className={styles.iconButtonStyles}> */}
<div>
<IconButton
className={styles.iconButtonStyles}
styles={iconStyles}
iconProps={{ iconName: 'Cancel' }}
ariaLabel="Close popup modal"
onClick={this.ModalAction.bind(this)}
/>
</div>
<RegisterApp
graphClient={this.props.graphClient}
modal={this.ModalAction.bind(this)}
callBack={this.refreshCallback.bind(this)}>
</RegisterApp>
</div>
</Modal>
</div>
{/* Dialog to reload page. */}
<div>
<Dialog dialogContentProps={{
title: "Refresh to get the latest app."
}}
styles={{
main:{
maxHeight: '150px !important',
minHeight: '150px !important'
}
}}
hidden={this.state.isRefreshed}>
<DialogFooter>
<DefaultButton text='Refresh' onClick={this.handlerRefreshClick.bind(this)}/>
</DialogFooter>
</Dialog>
</div>
</div>
);
}
}

View File

@ -0,0 +1,4 @@
import { MSGraphClientV3 } from '@microsoft/sp-http';
export interface IAzureAppsProps {
graphClient: MSGraphClientV3;
}

View File

@ -0,0 +1,10 @@
import { IAppModel } from "../../../common/models/IAppModel";
export interface IAzureAppsState {
error: string;
apps: IAppModel[];
loading: boolean;
isModalOpen: boolean;
isDialogHidden: boolean;
isRefreshed: boolean;
}

View File

@ -0,0 +1,15 @@
define([], function() {
return {
"PropertyPaneDescription": "Description",
"BasicGroupName": "Group Name",
"DescriptionFieldLabel": "Description Field",
"AppLocalEnvironmentSharePoint": "The app is running on your local environment as SharePoint web part",
"AppLocalEnvironmentTeams": "The app is running on your local environment as Microsoft Teams app",
"AppLocalEnvironmentOffice": "The app is running on your local environment in office.com",
"AppLocalEnvironmentOutlook": "The app is running on your local environment in Outlook",
"AppSharePointEnvironment": "The app is running on SharePoint page",
"AppTeamsTabEnvironment": "The app is running in Microsoft Teams",
"AppOfficeEnvironment": "The app is running in office.com",
"AppOutlookEnvironment": "The app is running in Outlook"
}
});

View File

@ -0,0 +1,18 @@
declare interface IAzureAppsWebPartStrings {
PropertyPaneDescription: string;
BasicGroupName: string;
DescriptionFieldLabel: string;
AppLocalEnvironmentSharePoint: string;
AppLocalEnvironmentTeams: string;
AppLocalEnvironmentOffice: string;
AppLocalEnvironmentOutlook: string;
AppSharePointEnvironment: string;
AppTeamsTabEnvironment: string;
AppOfficeEnvironment: string;
AppOutlookEnvironment: string;
}
declare module 'AzureAppsWebPartStrings' {
const strings: IAzureAppsWebPartStrings;
export = strings;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 542 B

View File

@ -0,0 +1,36 @@
{
"extends": "./node_modules/@microsoft/rush-stack-compiler-4.5/includes/tsconfig-web.json",
"compilerOptions": {
"target": "es5",
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"declaration": true,
"sourceMap": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"outDir": "lib",
"inlineSources": false,
"strictNullChecks": false,
"noImplicitAny": true,
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
],
"types": [
"webpack-env"
],
"lib": [
"es5",
"dom",
"es2015.collection",
"es2015.promise"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx"
]
}