PSC.Blazor.Components.Clippy 1.0.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package PSC.Blazor.Components.Clippy --version 1.0.5
NuGet\Install-Package PSC.Blazor.Components.Clippy -Version 1.0.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PSC.Blazor.Components.Clippy" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PSC.Blazor.Components.Clippy --version 1.0.5
#r "nuget: PSC.Blazor.Components.Clippy, 1.0.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PSC.Blazor.Components.Clippy as a Cake Addin
#addin nuget:?package=PSC.Blazor.Components.Clippy&version=1.0.5

// Install PSC.Blazor.Components.Clippy as a Cake Tool
#tool nuget:?package=PSC.Blazor.Components.Clippy&version=1.0.5

Clippy for Blazor

Do you remember Clippy? If the answer is no, please go away!

This is a component for Blazor WebAssembly and Blazor Server. The component is built with .NET6.

Some useful link:

Who is Clippy?

Clippy is an Office assistant that helped users when they were using any of the Microsoft Office applications. Clippy's role was to communicate with users and give corresponding actions. The original name was Clippit, but it was later nicknamed "Clippy".

The name came as a result of its resemblance to a paperclip. It was one of the notable assistants that helped users when using any MS applications. Unfortunately, Clippy got some negative feedback from certain users that led to its removal in later Microsoft Office applications versions.

Clippy is a paperclip that was created by Kevan J. Atterberry. It was made to create a social interface to make it easier for people to understand the computer.

Generally, the idea behind Clippy was to assist users in understanding how to use the operating system. Thereby, users could access certain features on Microsoft programs and applications quickly.

The Clippy used a series of Bayesian algorithms to determine the users' needs. In a big way, it also helped in typing cues, autoformat, and other features. However, people later complained that it was intrusive ad annoying, which led to its removal.

Add Clippy library

In your Blazor project, add the Clippy package from Nuget. In the Import.razor add the reference to the package

@using PSC.Blazor.Components.Clippy

Then, you have to add the Clippy service to your project. In your Program.cs, add the following line

using PSC.Blazor.Components.Clippy
...
builder.Services.AddScoped<ClippyService>();

before

await builder.Build().RunAsync();

Add scripts

Now, you have to add the CSS style and the scripts for Clippy. Go to your index.html under wwwroot. In the HEAD section, add the folloing line

<link rel="stylesheet" type="text/css" href="_content/PSC.Blazor.Components.Clippy/clippy.css" media="all">

Then, at the bottom of the page before closing the tag BODY add the following scripts:

<script src="_content/PSC.Blazor.Components.Clippy/clippy.min.js"></script>
<script src="_content/PSC.Blazor.Components.Clippy/clippyInterop.js"></script>

If your application doesn't have jQuery, you have to add this line

<script src="_content/PSC.Blazor.Components.Clippy/jquery.slim.min.js"></script>

Use Clippy

To use Clippy in a Razor page, inject ClippyService in the page adding this code in the @code section

[Inject] 
public ClippyService clippy { get; set; }

or at the top of the page

@inject ClippyService clippy

Now, you can use clippy service in the page. To load an agent, use this code

await clippy.Load(agentName);

agentName is one of the following from the enum AgentName

  • Bonzi
  • Clippy (default)
  • F1
  • Genie
  • Genius
  • Links
  • Merlin
  • Peedy
  • Rocky
  • Rover

Clippy agents

Clippy functions

Name Parameters Return Description
AnimateRandom Play an randon animation for the list
GestureAt int x, int y The agent points in the direction of the x and y
GetAnimationsList List<string> List of animation for an agent
Hide Hide and dispose the agent
Load AgentName agentName Load an agent. By default the agent is Clippy. Select another agent using the enum AgentName
PlayAnimation ClippyAnimations animation Play one of the animation for the agent. Choose from the enum ClippyAnimations. See below the list of available animations
Speak string text Show the text in the baloon
Stop Stop all actions in the queue and go back to idle mode
StopCurrent Stop the current action in the queue

Animation list

  • Congratulate
  • LookRight
  • SendMail
  • Thinking
  • Explain
  • IdleRopePile
  • IdleAtom
  • Print
  • Hide
  • GetAttention
  • Save
  • GetTechy
  • GestureUp
  • Idle1_1
  • Processing
  • Alert
  • LookUpRight
  • IdleSideToSide
  • GoodBye
  • LookLeft
  • IdleHeadScratch
  • LookUpLeft
  • CheckingSomething
  • Hearing_1
  • GetWizardy
  • IdleFingerTap
  • GestureLeft
  • Wave
  • GestureRight
  • Writing
  • IdleSnooze
  • LookDownRight
  • GetArtsy
  • Show
  • LookDown
  • Searching
  • EmptyTrash
  • Greeting
  • LookUp
  • GestureDown
  • RestPose
  • IdleEyeBrowRaise
  • LookDownLeft

Example

await clippy.Load(AgentName.Clippy);
await clippy.PlayAnimation(ClippyAnimations.GetAttention);
await clippy.Speak("Hello Blazor! Do you like it?");
await clippy.Speak("I can help your users. You know I can do that :)");
await clippy.PlayAnimation(ClippyAnimations.CheckingSomething);
await clippy.Speak("I helped whole generation of people with PC :)");
await clippy.PlayAnimation(ClippyAnimations.GoodBye);

Screenshot demo

The demo application shows all the functionalities offer from the component. Select an agent from the list and then click Load.

Screenshot demo

Here the list of agents available.

Screenshot demo


Other Blazor components

Component name Forum Description
DataTable for Blazor Forum DataTable component for Blazor WebAssembly and Blazor Server
Markdown editor for Blazor Forum This is a Markdown Editor for use in Blazor. It contains a live preview as well as an embeded help guide for users.
Browser Detect for Blazor Forum Browser detect for Blazor WebAssembly and Blazor Server
CodeSnipper for Blazor Forum Add code snippet in your Blazor pages for 196 programming languages with 243 styles
Copy To Clipboard Forum Add a button to copy text in the clipbord
SVG Icons and flags for Blazor Forum Library with a lot of SVG icons and SVG flags to use in your Razor pages
Modal dialog for Blazor Forum Simple Modal Dialog for Blazor WebAssembly
PSC.Extensions Forum A lot of functions for .NET5 in a NuGet package that you can download for free. We collected in this package functions for everyday work to help you with claim, strings, enums, date and time, expressions...
Quill for Blazor Forum Quill Component is a custom reusable control that allows us to easily consume Quill and place multiple instances of it on a single page in our Blazor application
Segment for Blazor Forum This is a Segment component for Blazor Web Assembly and Blazor Server
Tabs for Blazor Forum This is a Tabs component for Blazor Web Assembly and Blazor Server
WorldMap for Blazor Forum Show world maps with your data

More examples and documentation

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.6 520 1/19/2023
1.0.5 620 6/13/2022
1.0.4 381 6/10/2022
1.0.3 375 6/10/2022
1.0.2 370 6/10/2022
1.0.1 368 6/9/2022
1.0.0 371 6/9/2022

Amend README - Minor fixes