Skip to content

Commit

Permalink
Task: Fluent upgrade (#1056)
Browse files Browse the repository at this point in the history
  • Loading branch information
thewahome authored Aug 13, 2021
1 parent cd33b2c commit eba0f14
Show file tree
Hide file tree
Showing 58 changed files with 292 additions and 736 deletions.
884 changes: 221 additions & 663 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@
"@azure/msal-browser": "2.12.0",
"@babel/core": "7.12.13",
"@babel/eslint-parser": "7.12.13",
"@fluentui/react": "8.28.0",
"@microsoft/applicationinsights-react-js": "2.3.1",
"@microsoft/applicationinsights-web": "2.3.1",
"@microsoft/microsoft-graph-client": "2.1.0",
"@svgr/webpack": "4.1.0",
"@uifabric/react-cards": "0.109.101",
"@uifabric/styling": "7.13.1",
"adaptivecards": "1.2.3",
"adaptivecards-templating": "1.4.0",
"babel-core": "7.0.0-bridge.0",
Expand Down Expand Up @@ -50,7 +49,6 @@
"monaco-editor": "0.15.6",
"monaco-editor-webpack-plugin": "1.7.0",
"node-sass": "4.14.1",
"office-ui-fabric-react": "7.121.2",
"optimize-css-assets-webpack-plugin": "5.0.1",
"pnp-webpack-plugin": "1.2.1",
"postcss-flexbugs-fixes": "4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/actions/permissions-action-creator.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MessageBarType } from 'office-ui-fabric-react';
import { MessageBarType } from '@fluentui/react';

import { geLocale } from '../../../appLocale';
import { authenticationWrapper } from '../../../modules/authentication';
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/actions/query-action-creators.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MessageBarType } from 'office-ui-fabric-react';
import { MessageBarType } from '@fluentui/react';

import { ContentType } from '../../../types/enums';
import { IHistoryItem } from '../../../types/history';
Expand Down
4 changes: 2 additions & 2 deletions src/app/utils/badge-color.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { getTheme } from 'office-ui-fabric-react';
import { getTheme } from '@fluentui/react';

export function getStyleFor (method: string) {
export function getStyleFor(method: string) {
const currentTheme = getTheme();
method = method.toUpperCase();

Expand Down
2 changes: 1 addition & 1 deletion src/app/utils/generate-groups.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IGroup } from "office-ui-fabric-react";
import { IGroup } from '@fluentui/react';

export function generateGroupsFromList(list: any[], property: string) {
const map = new Map();
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/App.styles.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FontSizes, ITheme } from '@uifabric/styling';
import { FontSizes, ITheme } from '@fluentui/react';

export const appStyles = (theme: ITheme) => {
return {
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
IStackTokens,
ITheme,
styled,
} from 'office-ui-fabric-react';
} from '@fluentui/react';
import React, { Component } from 'react';
import { InjectedIntl, injectIntl } from 'react-intl';
import { connect } from 'react-redux';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/app-sections/AppTitle.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getId, IconButton, IStackTokens, Label, Stack, TooltipHost } from 'office-ui-fabric-react';
import { getId, IconButton, IStackTokens, Label, Stack, TooltipHost } from '@fluentui/react';
import React from 'react';
import { FormattedMessage } from 'react-intl';

Expand Down
12 changes: 6 additions & 6 deletions src/app/views/app-sections/HeaderMessaging.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MessageBar, MessageBarType } from 'office-ui-fabric-react';
import { MessageBar, MessageBarType } from '@fluentui/react';
import React from 'react';
import { FormattedMessage } from 'react-intl';

Expand All @@ -15,13 +15,13 @@ export function headerMessaging(classes: any, query: string): React.ReactNode {
<MessageBar messageBarType={MessageBarType.info} isMultiline={true}>
<p>
<FormattedMessage id='To try the full features' />,
<a className={classes.links} tabIndex={0} href={query} target='_blank' rel='noopener noreferrer'>
<a className={classes.links} tabIndex={0} href={query} target='_blank' rel='noopener noreferrer'>
<FormattedMessage id='full Graph Explorer' />.
</a>
</a>
</p>
<p>
<FormattedMessage id='running the query' />.
</p>
</p>
</MessageBar>

<Authentication />
Expand All @@ -30,9 +30,9 @@ export function headerMessaging(classes: any, query: string): React.ReactNode {
<p>
<FormattedMessage id='To try operations other than GET' />,

<a className={classes.links} tabIndex={0} href={query} target='_blank' rel='noopener noreferrer'>
<a className={classes.links} tabIndex={0} href={query} target='_blank' rel='noopener noreferrer'>
<FormattedMessage id='sign in' />.
</a>
</a>
</p>
</MessageBar>}
</div>);
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/app-sections/StatusMessages.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Link, MessageBar } from 'office-ui-fabric-react';
import { Link, MessageBar } from '@fluentui/react';
import React, { Fragment } from 'react';
import { FormattedMessage } from 'react-intl';

Expand Down
2 changes: 1 addition & 1 deletion src/app/views/app-sections/TermsOfUseMessage.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MessageBar, MessageBarType } from 'office-ui-fabric-react';
import { MessageBar, MessageBarType } from '@fluentui/react';
import React from 'react';
import { FormattedMessage } from 'react-intl';
import { componentNames, telemetry } from '../../../telemetry';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/authentication/Authentication.styles.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FontSizes, ITheme } from '@uifabric/styling';
import { FontSizes, ITheme } from '@fluentui/react';

export const authenticationStyles = (theme: ITheme) => {
return {
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/authentication/Authentication.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

import { SeverityLevel } from '@microsoft/applicationinsights-web';
import { Icon, Label, MessageBar, MessageBarType, Spinner, SpinnerSize, styled } from 'office-ui-fabric-react';
import { Icon, Label, MessageBar, MessageBarType, Spinner, SpinnerSize, styled } from '@fluentui/react';
import React, { useState } from 'react';
import { FormattedMessage, injectIntl } from 'react-intl';
import { useDispatch, useSelector } from 'react-redux';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IconButton, PrimaryButton } from 'office-ui-fabric-react';
import { IconButton, PrimaryButton } from '@fluentui/react';
import React from 'react';
import { FormattedMessage } from 'react-intl';
import { translateMessage } from '../../../utils/translate-messages';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/authentication/profile/Profile.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ActionButton, IPersonaSharedProps, Persona, PersonaSize, styled } from 'office-ui-fabric-react';
import { ActionButton, IPersonaSharedProps, Persona, PersonaSize, styled } from '@fluentui/react';
import React, { Component } from 'react';
import { injectIntl } from 'react-intl';
import { connect } from 'react-redux';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/classnames.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { classNamesFunction, ITheme } from 'office-ui-fabric-react';
import { classNamesFunction, ITheme } from '@fluentui/react';

interface IClassNames {
[prop: string]: unknown;
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/common/monaco/Monaco.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FocusZone } from 'office-ui-fabric-react';
import { FocusZone } from '@fluentui/react';
import React from 'react';
import MonacoEditor, { ChangeHandler } from 'react-monaco-editor';

Expand Down
4 changes: 2 additions & 2 deletions src/app/views/common/submit-button/SubmitButton.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PrimaryButton, Spinner, SpinnerSize } from 'office-ui-fabric-react';
import { PrimaryButton, Spinner, SpinnerSize } from '@fluentui/react';
import React from 'react';
import { ISubmitButtonControl } from '../../../../types/submit-button';

Expand All @@ -21,7 +21,7 @@ const SubmitButtonControl = ({
>
{text}
{submitting && <>&nbsp;
<Spinner size={SpinnerSize.small} />
<Spinner size={SpinnerSize.small} />
</>}
</PrimaryButton>
</div>
Expand Down
5 changes: 2 additions & 3 deletions src/app/views/query-response/QueryResponse.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import {
Announced,
Announced, Dialog, DialogFooter, DialogType,
DefaultButton, FontSizes, getId, Icon, IconButton,
Modal, Pivot, PivotItem, PrimaryButton, TooltipHost
} from 'office-ui-fabric-react';
import { Dialog, DialogFooter, DialogType } from 'office-ui-fabric-react/lib/Dialog';
} from '@fluentui/react';
import { Resizable } from 're-resizable';
import React, { useEffect, useState } from 'react';
import { injectIntl } from 'react-intl';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as AdaptiveCardsAPI from 'adaptivecards';
import { IconButton, Label, MessageBar, MessageBarType, Pivot, PivotItem, styled } from 'office-ui-fabric-react';
import { IconButton, Label, MessageBar, MessageBarType, Pivot, PivotItem, styled } from '@fluentui/react';
import React, { Component } from 'react';
import { FormattedMessage, injectIntl } from 'react-intl';
import { connect } from 'react-redux';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
MessageBar,
MessageBarType,
styled,
} from 'office-ui-fabric-react';
} from '@fluentui/react';
import { lookupToolkitUrl } from '../../../utils/graph-toolkit-lookup';
import { componentNames, telemetry } from '../../../../telemetry';
import { classNames } from '../../classnames';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/query-response/headers/ResponseHeaders.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

import { IconButton } from 'office-ui-fabric-react';
import { IconButton } from '@fluentui/react';
import React from 'react';
import { useSelector } from 'react-redux';
import { RESPONSE_HEADERS_COPY_BUTTON } from '../../../../telemetry/component-names';
Expand Down
4 changes: 2 additions & 2 deletions src/app/views/query-response/pivot-items/pivot-items.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getId, getTheme, Icon, PivotItem, TooltipHost } from 'office-ui-fabric-react';
import { getId, getTheme, Icon, ITheme, PivotItem, TooltipHost } from '@fluentui/react';
import React from 'react';
import { useSelector } from 'react-redux';

Expand All @@ -23,7 +23,7 @@ export const getPivotItems = () => {

const { graphExplorerMode: mode, sampleQuery, graphResponse: { body } } = useSelector((state: IRootState) => state);

const currentTheme = getTheme();
const currentTheme: ITheme = getTheme();
const dotStyle = queryResponseStyles(currentTheme).dot;

function showDotIfAdaptiveCardPresent() {
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/query-response/queryResponse.styles.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ITheme } from '@uifabric/styling';
import { ITheme } from '@fluentui/react';

export const queryResponseStyles = (theme: ITheme) => {
return {
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/query-response/response/Response.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

import { Link, MessageBar, MessageBarType } from 'office-ui-fabric-react';
import { Link, MessageBar, MessageBarType } from '@fluentui/react';
import React from 'react';
import { FormattedMessage } from 'react-intl';
import { useDispatch, useSelector } from 'react-redux';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/query-response/snippets/Snippets.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Pivot } from 'office-ui-fabric-react';
import { Pivot } from '@fluentui/react';
import React from 'react';

import { componentNames, telemetry } from '../../../../telemetry';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/query-response/snippets/snippets-helper.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IconButton, Label, PivotItem } from 'office-ui-fabric-react';
import { IconButton, Label, PivotItem } from '@fluentui/react';
import React, { useEffect } from 'react';
import { shallowEqual, useDispatch, useSelector } from 'react-redux';

Expand Down
2 changes: 1 addition & 1 deletion src/app/views/query-runner/QueryRunner.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IDropdownOption, MessageBarType } from 'office-ui-fabric-react';
import { IDropdownOption, MessageBarType } from '@fluentui/react';
import React, { Component } from 'react';
import { injectIntl } from 'react-intl';
import { connect } from 'react-redux';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ITheme } from '@uifabric/styling';
import { ITheme } from '@fluentui/react';

export const queryInputStyles = (theme: ITheme) => {
const controlWidth = '96.5%';
Expand Down
4 changes: 2 additions & 2 deletions src/app/views/query-runner/query-input/QueryInput.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { IDropdownOption } from 'office-ui-fabric-react';
import { Dropdown } from 'office-ui-fabric-react';
import { IDropdownOption } from '@fluentui/react';
import { Dropdown } from '@fluentui/react';
import React from 'react';
import { injectIntl } from 'react-intl';
import { useDispatch, useSelector } from 'react-redux';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { getId, getTheme, Icon, ITextField, KeyCodes, Spinner, TextField, TooltipHost } from 'office-ui-fabric-react';
import { ITooltipHostStyles } from 'office-ui-fabric-react/lib/components/Tooltip/TooltipHost.types';
import { getId, getTheme, Icon, ITextField, ITooltipHostStyles, KeyCodes, Spinner, TextField, TooltipHost } from '@fluentui/react';
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { bindActionCreators, Dispatch } from 'redux';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Label, styled } from 'office-ui-fabric-react';
import { Label, styled } from '@fluentui/react';
import React, { useEffect } from 'react';

import { ISuggestionsList } from '../../../../../types/auto-complete';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ITheme } from '@uifabric/styling';
import { ITheme } from '@fluentui/react';

export const autoCompleteStyles = (theme: ITheme) => {
const controlWidth = '95.5%';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/query-runner/request/Request.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
Pivot,
PivotItem,
TooltipHost,
} from 'office-ui-fabric-react';
} from '@fluentui/react';
import { Resizable } from 're-resizable';
import React, { Component, CSSProperties } from 'react';
import { injectIntl } from 'react-intl';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/query-runner/request/auth/Auth.styles.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FontSizes } from '@uifabric/styling';
import { FontSizes } from '@fluentui/react';

export const authStyles = () => {
return {
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/query-runner/request/auth/Auth.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AuthenticationResult } from '@azure/msal-browser';
import { IconButton, IIconProps, Label, MessageBar, MessageBarType, styled } from 'office-ui-fabric-react';
import { IconButton, IIconProps, Label, MessageBar, MessageBarType, styled } from '@fluentui/react';
import React, { useEffect, useState } from 'react';
import { FormattedMessage } from 'react-intl';
import { useSelector } from 'react-redux';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FontSizes } from '@uifabric/styling';
import { FontSizes } from '@fluentui/react';

export const headerStyles = () => {
return {
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/query-runner/request/headers/HeadersList.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DetailsList, DetailsRow, IColumn, IconButton, SelectionMode } from 'office-ui-fabric-react';
import { DetailsList, DetailsRow, IColumn, IconButton, SelectionMode } from '@fluentui/react';
import * as React from 'react';
import { IHeadersListControl } from '../../../../../types/request';
import { translateMessage } from '../../../../utils/translate-messages';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Announced, ITextField, PrimaryButton, styled, TextField } from 'office-ui-fabric-react';
import { Announced, ITextField, PrimaryButton, styled, TextField } from '@fluentui/react';
import React, { useState } from 'react';
import { FormattedMessage, injectIntl } from 'react-intl';
import { useDispatch, useSelector } from 'react-redux';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
Label,
SearchBox,
SelectionMode
} from 'office-ui-fabric-react';
} from '@fluentui/react';
import React, { useState } from 'react';
import { FormattedMessage } from 'react-intl';
import { useSelector } from 'react-redux';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FontSizes, ITheme } from '@uifabric/styling';
import { FontSizes, ITheme } from '@fluentui/react';

export const permissionStyles = (theme: ITheme) => {
return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
Selection,
styled,
TooltipHost
} from 'office-ui-fabric-react';
} from '@fluentui/react';
import React, { Component } from 'react';
import { FormattedMessage, injectIntl } from 'react-intl';
import { connect } from 'react-redux';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/query-runner/request/permissions/TabList.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DetailsList, DetailsListLayoutMode, IColumn, Label, Link, SelectionMode } from 'office-ui-fabric-react';
import { DetailsList, DetailsListLayoutMode, IColumn, Label, Link, SelectionMode } from '@fluentui/react';
import React, { useState } from 'react';
import { FormattedMessage } from 'react-intl';
import { useDispatch, useSelector } from 'react-redux';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/settings/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
PanelType,
PrimaryButton,
TooltipHost,
} from 'office-ui-fabric-react';
} from '@fluentui/react';
import React, { useEffect, useState } from 'react';
import { FormattedMessage, injectIntl } from 'react-intl';
import { useDispatch, useSelector } from 'react-redux';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/sidebar/Sidebar.styles.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
FontSizes, FontWeights,
ITheme,
} from '@uifabric/styling';
} from '@fluentui/react';

export const sidebarStyles = (theme: ITheme) => {
const pageHeightInVh = '60vh';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Pivot, PivotItem } from 'office-ui-fabric-react';
import { Pivot, PivotItem } from '@fluentui/react';
import React from 'react';

import { telemetry } from '../../../telemetry';
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/sidebar/history/History.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
ContextualMenuItemType, DefaultButton, DetailsList, DetailsRow, Dialog,
DialogFooter, DialogType, getId, getTheme, IColumn, IconButton,
Label, MessageBar, MessageBarType, PrimaryButton, SearchBox, SelectionMode, styled, TooltipHost
} from 'office-ui-fabric-react';
} from '@fluentui/react';
import React, { Component } from 'react';
import { FormattedMessage, injectIntl } from 'react-intl';
import { connect } from 'react-redux';
Expand Down
Loading

0 comments on commit eba0f14

Please sign in to comment.