Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Revert "build: migrate to SDK-V2 (#200)" #204

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 7 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
"audit-fix": "HUSKY_SKIP_HOOKS=1 dev-tools npm-audit-fix --production --team-reviewers dx",
"prepare": "./scripts/install_husky.sh",
"pre-commit": "lint-staged",
"pre-push": "npm run test",
"clean": "rm -rf dist"
"pre-push": "npm run test"
},
"repository": {
"type": "git",
Expand All @@ -35,7 +34,7 @@
"dependencies": {
"@fluentui/react-northstar": "^0.50.0",
"@hapi/joi": "^17.1.1",
"@microsoft/teams-js": "^2.19.0",
"@microsoft/teams-js": "^1.11.0",
"@newrelic/pino-enricher": "^1.1.1",
"@sentry/browser": "^5.22.3",
"@sentry/node": "^5.22.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export const ConfigurationCreate: FunctionComponent<ConfigurationCreateProps> =
{errorMessage && (<ErrorRow onRetryClick={onRetryClick} hideRetry={hideRetry} message={errorMessage} />)}
<Flex fill column gap="gap.medium">
<Text weight="semibold">
Select the events you would like to get a message for:
Select the events you want to get a message for:
</Text>
<div>
<WebhookEventCheckboxes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useEffect } from "react";
import { useMutation } from "react-query";
import { app, pages } from "@microsoft/teams-js";
import * as microsoftTeams from "@microsoft/teams-js";

import { requester, url } from "../../../lib";
import { Resource, WebhookEventType } from "../../../constants";
Expand Down Expand Up @@ -61,14 +61,13 @@ export const useConfigurationCreate = ({

useEffect(() => {
if (isInitialized) {
app.getContext().then(({
channel,
user
}: app.Context) => {
const { displayName: channelName, id: channelId } = channel ?? {};
const { tenant: { id: tenantId } = { id: undefined } } = user ?? {};
pages.getConfig().then(settings => {
pages.config.registerOnSaveHandler(async saveEvent => {
microsoftTeams.getContext(({
channelId,
channelName,
tid: tenantId
}) => {
microsoftTeams.settings.getSettings(settings => {
microsoftTeams.settings.registerOnSaveHandler(async saveEvent => {
if (tenantId === undefined ||
channelId === undefined ||
channelName === undefined ||
Expand Down Expand Up @@ -100,8 +99,7 @@ export const useConfigurationCreate = ({
}
});

// Although there is no 'configName' in the interface, not using it results in empty config name in edit connector menu
await pages.config.setConfig({
microsoftTeams.settings.setSettings({
entityId: configurationId,
configName: resource.name,
contentUrl: decodeURI(`${window.location.origin}${url.getHomeUrl({
Expand All @@ -111,7 +109,7 @@ export const useConfigurationCreate = ({
channel: "{channelName}",
theme: "{theme}"
})}`)
} as pages.InstanceConfig);
} as microsoftTeams.settings.Settings);

saveEvent.notifySuccess();
} catch (error) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useQuery } from "react-query";
import { INTERNAL_SERVER_ERROR, UNAUTHORIZED } from "http-status-codes";
import { app } from "@microsoft/teams-js";
import * as microsoftTeams from "@microsoft/teams-js";

import { requester } from "../../../lib";
import { Project, Styleguide } from "../../../constants";
Expand All @@ -25,13 +25,8 @@ interface UseWorkspacesResultParams {
onStyleguidesSuccess: (styleguides: Styleguide[]) => void;
}

const getChannelId = (): Promise<string> => new Promise((resolve, reject) => {
app.getContext().then(({ channel }) => {
if (channel) {
resolve(channel.id);
}
reject(new Error("Channel is not defined"));
});
const getChannelId = (): Promise<string> => new Promise(resolve => {
microsoftTeams.getContext(({ channelId }) => resolve(channelId as string));
});

export const useResources = ({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useEffect } from "react";
import { pages } from "@microsoft/teams-js";
import * as microsoftTeams from "@microsoft/teams-js";

import { Resource, resourceBasedEvents, WebhookEventType } from "../../../constants";

Expand All @@ -24,7 +24,7 @@ export const useValidate = (params: UseValidateParams): void => {
const valid = isValid(params);
useEffect(() => {
if (params.enabled) {
pages.config.setValidityState(valid);
microsoftTeams.settings.setValidityState(valid);
}
}, [valid, params.enabled]);
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useEffect } from "react";
import { useMutation } from "react-query";
import { pages } from "@microsoft/teams-js";
import * as microsoftTeams from "@microsoft/teams-js";

import { requester } from "../../../lib";

Expand All @@ -14,7 +14,7 @@ export const useConfigurationDelete = ({ configurationId, isInitialized }: UseCo

useEffect(() => {
if (isInitialized) {
pages.config.registerOnRemoveHandler(async removeEvent => {
microsoftTeams.settings.registerOnRemoveHandler(async removeEvent => {
try {
await deleteConfiguration(configurationId);
removeEvent.notifySuccess();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useEffect } from "react";
import { useMutation } from "react-query";
import { app, pages } from "@microsoft/teams-js";
import * as microsoftTeams from "@microsoft/teams-js";

import { requester, url } from "../../../lib";
import { Resource, WebhookEventType } from "../../../constants";
Expand Down Expand Up @@ -61,13 +61,12 @@ export const useConfigurationUpdate = ({

useEffect(() => {
if (isInitialized) {
app.getContext().then(({
channel,
user
microsoftTeams.getContext(({
channelId,
channelName,
tid: tenantId
}) => {
const { id: channelId, displayName: channelName } = channel ?? {};
const { tenant: { id: tenantId } = { id: undefined } } = user ?? {};
pages.config.registerOnSaveHandler(async saveEvent => {
microsoftTeams.settings.registerOnSaveHandler(async saveEvent => {
if (tenantId === undefined ||
channelId === undefined ||
channelName === undefined ||
Expand All @@ -91,8 +90,7 @@ export const useConfigurationUpdate = ({
}
});

// Although there is no 'configName' in the interface, not using it results in empty config name in edit connector menu
await pages.config.setConfig({
microsoftTeams.settings.setSettings({
entityId: configurationId,
configName: resource.name,
contentUrl: decodeURI(`${window.location.origin}${url.getHomeUrl({
Expand All @@ -102,7 +100,7 @@ export const useConfigurationUpdate = ({
channel: "{channelName}",
theme: "{theme}"
})}`)
} as pages.InstanceConfig);
} as microsoftTeams.settings.Settings);

saveEvent.notifySuccess();
} catch (error) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useEffect } from "react";
import { pages } from "@microsoft/teams-js";
import * as microsoftTeams from "@microsoft/teams-js";
import { Resource, resourceBasedEvents, WebhookEventType } from "../../../constants";

interface UseValidateParams {
Expand Down Expand Up @@ -30,7 +30,7 @@ export const useValidate = (params: UseValidateParams): void => {
const valid = isValid(params);
useEffect(() => {
if (params.enabled) {
pages.config.setValidityState(valid);
microsoftTeams.settings.setValidityState(valid);
}
}, [valid, params.enabled]);
};
50 changes: 12 additions & 38 deletions src/client/containers/LoginContainer/LoginContainer.tsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,12 @@
import React, { FunctionComponent, useState } from "react";
import React, { FunctionComponent } from "react";

import { useInitialize } from "../../hooks";
import { authentication } from "@microsoft/teams-js";
import { useLogin } from "./hooks";
import { Login } from "./components";
import { Loader } from "@fluentui/react-northstar";
import { useRouter } from "next/router";
import { url, requester, storage } from "../../lib";

const errorToText = (error?: string): string => {
switch (error) {
case "CancelledByUser":
case "access_denied":
return "You need to authorize Microsoft Teams app to connect your Zeplin projects and styleguides.";
default:
return "Authorization failed due to an API related connectivity issue. Please retry logging in.";
}
};

export const LoginContainer: FunctionComponent = () => {
const {
query: {
Expand All @@ -30,30 +20,15 @@ export const LoginContainer: FunctionComponent = () => {
} = useRouter();

const { isInitializeLoading } = useInitialize();
const [loginError, setLoginError] = useState<string | undefined>();

async function authenticate() {
try {
const code = await authentication.authenticate({
height: 476,
url: "/api/auth/authorize"
});
return code;
} catch (err) {
setLoginError(errorToText((err as unknown as Error).message));
}
}

async function login() {
try {
const code = await authenticate();
if (!code) {
throw Error("Authentication code is missing");
const [login, { loginError }] = useLogin({
onSuccess: async (code?: string) => {
try {
const { accessToken, refreshToken } = await requester.createAuthToken(String(code));
storage.setAccessToken(accessToken);
storage.setRefreshToken(refreshToken);
} catch (err) {
// TODO: log to sentry
}
const { accessToken, refreshToken } = await requester.createAuthToken(String(code));
storage.setAccessToken(accessToken);
storage.setRefreshToken(refreshToken);

replace(id
? url.getConfigurationUpdateUrl({
channel: channel as string,
Expand All @@ -63,13 +38,12 @@ export const LoginContainer: FunctionComponent = () => {
theme: theme as string
})
: url.getConfigurationCreateUrl({

channel: channel as string,
theme: theme as string
}));
} catch (err) {
// TODO: log to sentry
}
}
});

if (isInitializeLoading) {
return <Loader styles={{ height: "100vh" }} />;
Expand Down
1 change: 1 addition & 0 deletions src/client/containers/LoginContainer/hooks/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "./useLogin";
39 changes: 39 additions & 0 deletions src/client/containers/LoginContainer/hooks/useLogin.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import * as microsoftTeams from "@microsoft/teams-js";
import { useCallback, useState } from "react";

interface UseLoginParams {
onSuccess: (code?: string) => Promise<void>;
}

type UseLoginResult = [
() => void,
{
loginError?: string;
}
]

const errorToText = (error?: string): string => {
switch (error) {
case "CancelledByUser":
case "access_denied":
return "You need to authorize Microsoft Teams app to connect your Zeplin projects and styleguides.";
default:
return "Authorization failed due to an API related connectivity issue. Please retry logging in.";
}
};

export const useLogin = ({ onSuccess }: UseLoginParams): UseLoginResult => {
const [loginError, setError] = useState<string|undefined>();

const login = useCallback(
() => microsoftTeams.authentication.authenticate({
height: 476,
successCallback: onSuccess,
failureCallback: value => setError(errorToText(value)),
url: "/api/auth/authorize"
}),
[]
);

return [login, { loginError }];
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { FunctionComponent, useEffect } from "react";
import { useRouter } from "next/router";
import { app, authentication } from "@microsoft/teams-js";
import * as microsoftTeams from "@microsoft/teams-js";
import { Loader } from "@fluentui/react-northstar";

export const ZeplinAuthEndContainer: FunctionComponent = () => {
Expand All @@ -12,13 +12,13 @@ export const ZeplinAuthEndContainer: FunctionComponent = () => {
} = useRouter();

useEffect(() => {
app.initialize().then(() => {
microsoftTeams.initialize(() => {
if (error) {
authentication.notifyFailure(String(error));
microsoftTeams.authentication.notifyFailure(String(error));
return;
}

authentication.notifySuccess(code as string);
microsoftTeams.authentication.notifySuccess(code as string);
});
}, []);

Expand Down
Loading
Loading