UNPKG

@pnp/spfx-controls-react

Version:

Reusable React controls for SharePoint Framework solutions

173 lines • 10.5 kB
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; var __generator = (this && this.__generator) || function (thisArg, body) { var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; function verb(n) { return function (v) { return step([n, v]); }; } function step(op) { if (f) throw new TypeError("Generator is already executing."); while (g && (g = 0, op[0] && (_ = 0)), _) try { if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; if (y = 0, t) op = [op[0] & 2, t.value]; switch (op[0]) { case 0: case 1: t = op; break; case 4: _.label++; return { value: op[1], done: false }; case 5: _.label++; y = op[1]; op = [0]; continue; case 7: op = _.ops.pop(); _.trys.pop(); continue; default: if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } if (t[2]) _.ops.pop(); _.trys.pop(); continue; } op = body.call(thisArg, _); } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; } }; import { Stack } from "@fluentui/react/lib/Stack"; import * as React from "react"; import { useContext, useRef, useState } from "react"; import { EListItemCommentsStateTypes, ListItemCommentsStateContext } from "./../ListItemCommentsStateProvider"; import { MentionsInput, Mention } from "react-mentions"; import { useCallback } from "react"; import { useAddCommentStyles } from "./useAddCommentStyles"; import { PHOTO_URL } from "../../common/constants"; import { IconButton } from "@fluentui/react/lib/Button"; import { Text } from "@fluentui/react/lib/Text"; import { ECommentAction } from "../../common/ECommentAction"; import { AppContext, useMsGraphAPI } from "../.."; import SPPeopleSearchService from "../../../../services/PeopleSearchService"; import { MSGraphClientFactory, SPHttpClient } from "@microsoft/sp-http"; import { PageContext } from "@microsoft/sp-page-context"; import { PrincipalType } from "../../../peoplepicker"; import * as strings from "ControlStrings"; export var AddComment = function (props) { var _a = useState(""), commentText = _a[0], setCommentText = _a[1]; var _b = useState(false), disableCallingGraph = _b[0], setDisableCallingGraph = _b[1]; var _c = useMsGraphAPI(), getUsers = _c.getUsers, getSuggestions = _c.getSuggestions; var _d = useAddCommentStyles(), reactMentionStyles = _d.reactMentionStyles, mentionsClasses = _d.mentionsClasses, componentClasses = _d.componentClasses; var _e = useState(true), singleLine = _e[0], setSingleLine = _e[1]; var setlistItemCommentsState = useContext(ListItemCommentsStateContext).setlistItemCommentsState; var _addCommentText = useRef({ mentions: [], text: "" }); var serviceScope = useContext(AppContext).serviceScope; var _msGraphClientFactory = undefined; var _sPHttpClient = undefined; var _pageContext = undefined; var _peopleSearchService = undefined; serviceScope.whenFinished(function () { return __awaiter(void 0, void 0, void 0, function () { return __generator(this, function (_a) { _msGraphClientFactory = serviceScope.consume(MSGraphClientFactory.serviceKey); _sPHttpClient = serviceScope.consume(SPHttpClient.serviceKey); _pageContext = serviceScope.consume(PageContext.serviceKey); _peopleSearchService = new SPPeopleSearchService({ absoluteUrl: _pageContext.web.absoluteUrl, msGraphClientFactory: _msGraphClientFactory, spHttpClient: _sPHttpClient }, false); return [2 /*return*/]; }); }); }); var sugestionsContainer = useRef(); var _reactMentionStyles = reactMentionStyles; var _onChange = useCallback(function (event, newValue, newPlainTextValue, mentions) { _reactMentionStyles = reactMentionStyles; if (newValue) { setSingleLine(false); _reactMentionStyles["&multiLine"].control = { height: 63 }; _addCommentText.current.text = newPlainTextValue; _addCommentText.current.mentions = []; for (var index = 0; index < mentions.length; index++) { var mention = mentions[index]; _addCommentText.current.text = _addCommentText.current.text.replace(mention.display, "@mention{".concat(index, "}")); _addCommentText.current.mentions.push({ email: mention.id, name: mention.display.replace("@", "") }); } } else { setSingleLine(true); _reactMentionStyles["&multiLine"].control = { height: 35 }; _addCommentText.current = { mentions: [], text: "" }; } setCommentText(newValue); }, []); var _addComment = useCallback(function () { setlistItemCommentsState({ type: EListItemCommentsStateTypes.SET_COMMENT_ACTION, payload: ECommentAction.ADD }); setlistItemCommentsState({ type: EListItemCommentsStateTypes.SET_ADD_COMMENT, payload: _addCommentText.current }); setSingleLine(true); setCommentText(""); }, []); var _searchData = function (search, callback) { var _searchPeople = function () { _peopleSearchService.searchPeople(search, 5, [PrincipalType.User]) .then(function (res) { return res.map(function (user) { return ({ display: user.text, id: user.secondaryText }); }); }) .then(callback) .catch(function () { }); }; if (disableCallingGraph) { _searchPeople(); return; } // Try to get sugested users when user type '@' if (!search) { getSuggestions() .then(function (res) { return res.users.map(function (user) { return ({ display: user.displayName, id: user.mail }); }); }) .then(callback) .catch(function (error) { switch (error.statusCode) { case 403: case 404: // If the user is not allowed to call graph API (e.g. guest users), we need to use the People Search API setDisableCallingGraph(true); break; default: } }); } else { getUsers(search) .then(function (res) { return res.users.map(function (user) { return ({ display: user.displayName, id: user.mail }); }); }) .then(callback) .catch(function (error) { switch (error.statusCode) { case 403: // If the user is not allowed to call graph API (e.g. guest users), we need to use the People Search API setDisableCallingGraph(true); _searchPeople(); break; default: } }); } }; var renderSugestion = useCallback(function (suggestion) { var _user = { id: suggestion.id, displayName: suggestion.display, mail: suggestion.id, }; return (React.createElement(React.Fragment, null, React.createElement(Stack, { tokens: { padding: 5 }, styles: { root: { width: 260 } } }, React.createElement(Stack, { horizontal: true, horizontalAlign: "start", tokens: { childrenGap: 10 } }, React.createElement("img", { src: "".concat(PHOTO_URL).concat(_user.mail), width: 30, height: 30, style: { borderRadius: "50%" }, alt: _user.displayName }), React.createElement(Stack, { styles: { root: { overflow: "hidden" } } }, React.createElement(Text, { styles: { root: { fontWeight: 700 } }, variant: "smallPlus", nowrap: true }, _user.displayName), React.createElement(Text, { variant: "small", nowrap: true }, _user.mail)))))); }, []); return (React.createElement(React.Fragment, null, React.createElement("div", { id: "renderSugestions", ref: function (el) { sugestionsContainer.current = el; } }), React.createElement("div", { className: componentClasses.container, style: { height: singleLine ? 35 : "unset" } }, React.createElement(MentionsInput, { value: commentText, onChange: _onChange, placeholder: strings.ListItemCommentsPlaceholder, style: _reactMentionStyles, suggestionsPortalHost: sugestionsContainer.current }, React.createElement(Mention, { trigger: "@", data: _searchData, renderSuggestion: renderSugestion, displayTransform: function (id, display) { return "@".concat(display); }, className: mentionsClasses.mention })), React.createElement(Stack, { horizontal: true, horizontalAlign: "end", tokens: { padding: 10 } }, React.createElement(IconButton, { iconProps: { iconName: "send" }, title: "Send", onClick: function () { _addComment(); } }))))); }; //# sourceMappingURL=AddComment.js.map