├── .gitattributes ├── .gitignore ├── ImagePointEditor.sln ├── License.md ├── ReadMe.md ├── build └── nuget │ ├── ImagePointEditor.nuspec │ ├── NuGet.exe │ ├── Pack.ps1 │ ├── ___ReadMe.md │ └── nugetIcon.png ├── doc └── ImagePoint.gif └── src └── ImagePointEditor ├── ClientResources ├── ImagePointProperty.html ├── ImagePointProperty.js ├── dot.png ├── styles.css └── trash.png ├── Directory.Build.props ├── Directory.Build.targets ├── ImagePointEditor.cs ├── ImagePointEditor.csproj ├── ServiceExtension.cs ├── build ├── ImagePointEditor.props └── ImagePointEditor.zip ├── module.config └── msbuild └── CopyZipFiles.targets /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | bld/ 21 | [Bb]in/ 22 | [Oo]bj/ 23 | [Ll]og/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | # Uncomment if you have tasks that create the project's static files in wwwroot 28 | #wwwroot/ 29 | 30 | # MSTest test Results 31 | [Tt]est[Rr]esult*/ 32 | [Bb]uild[Ll]og.* 33 | 34 | # NUNIT 35 | *.VisualState.xml 36 | TestResult.xml 37 | 38 | # Build Results of an ATL Project 39 | [Dd]ebugPS/ 40 | [Rr]eleasePS/ 41 | dlldata.c 42 | 43 | # DNX 44 | project.lock.json 45 | project.fragment.lock.json 46 | artifacts/ 47 | 48 | *_i.c 49 | *_p.c 50 | *_i.h 51 | *.ilk 52 | *.meta 53 | *.obj 54 | *.pch 55 | *.pdb 56 | *.pgc 57 | *.pgd 58 | *.rsp 59 | *.sbr 60 | *.tlb 61 | *.tli 62 | *.tlh 63 | *.tmp 64 | *.tmp_proj 65 | *.log 66 | *.vspscc 67 | *.vssscc 68 | .builds 69 | *.pidb 70 | *.svclog 71 | *.scc 72 | 73 | # Chutzpah Test files 74 | _Chutzpah* 75 | 76 | # Visual C++ cache files 77 | ipch/ 78 | *.aps 79 | *.ncb 80 | *.opendb 81 | *.opensdf 82 | *.sdf 83 | *.cachefile 84 | *.VC.db 85 | *.VC.VC.opendb 86 | 87 | # Visual Studio profiler 88 | *.psess 89 | *.vsp 90 | *.vspx 91 | *.sap 92 | 93 | # TFS 2012 Local Workspace 94 | $tf/ 95 | 96 | # Guidance Automation Toolkit 97 | *.gpState 98 | 99 | # ReSharper is a .NET coding add-in 100 | _ReSharper*/ 101 | *.[Rr]e[Ss]harper 102 | *.DotSettings.user 103 | 104 | # JustCode is a .NET coding add-in 105 | .JustCode 106 | 107 | # TeamCity is a build add-in 108 | _TeamCity* 109 | 110 | # DotCover is a Code Coverage Tool 111 | *.dotCover 112 | 113 | # NCrunch 114 | _NCrunch_* 115 | .*crunch*.local.xml 116 | nCrunchTemp_* 117 | 118 | # MightyMoose 119 | *.mm.* 120 | AutoTest.Net/ 121 | 122 | # Web workbench (sass) 123 | .sass-cache/ 124 | 125 | # Installshield output folder 126 | [Ee]xpress/ 127 | 128 | # DocProject is a documentation generator add-in 129 | DocProject/buildhelp/ 130 | DocProject/Help/*.HxT 131 | DocProject/Help/*.HxC 132 | DocProject/Help/*.hhc 133 | DocProject/Help/*.hhk 134 | DocProject/Help/*.hhp 135 | DocProject/Help/Html2 136 | DocProject/Help/html 137 | 138 | # Click-Once directory 139 | publish/ 140 | 141 | # Publish Web Output 142 | *.[Pp]ublish.xml 143 | *.azurePubxml 144 | # TODO: Comment the next line if you want to checkin your web deploy settings 145 | # but database connection strings (with potential passwords) will be unencrypted 146 | #*.pubxml 147 | *.publishproj 148 | 149 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 150 | # checkin your Azure Web App publish settings, but sensitive information contained 151 | # in these scripts will be unencrypted 152 | PublishScripts/ 153 | 154 | # NuGet Packages 155 | *.nupkg 156 | # The packages folder can be ignored because of Package Restore 157 | **/packages/* 158 | # except build/, which is used as an MSBuild target. 159 | !**/packages/build/ 160 | # Uncomment if necessary however generally it will be regenerated when needed 161 | #!**/packages/repositories.config 162 | # NuGet v3's project.json files produces more ignoreable files 163 | *.nuget.props 164 | *.nuget.targets 165 | 166 | # Microsoft Azure Build Output 167 | csx/ 168 | *.build.csdef 169 | 170 | # Microsoft Azure Emulator 171 | ecf/ 172 | rcf/ 173 | 174 | # Windows Store app package directories and files 175 | AppPackages/ 176 | BundleArtifacts/ 177 | Package.StoreAssociation.xml 178 | _pkginfo.txt 179 | 180 | # Visual Studio cache files 181 | # files ending in .cache can be ignored 182 | *.[Cc]ache 183 | # but keep track of directories ending in .cache 184 | !*.[Cc]ache/ 185 | 186 | # Others 187 | ClientBin/ 188 | ~$* 189 | *~ 190 | *.dbmdl 191 | *.dbproj.schemaview 192 | *.jfm 193 | *.pfx 194 | *.publishsettings 195 | node_modules/ 196 | orleans.codegen.cs 197 | 198 | # Since there are multiple workflows, uncomment next line to ignore bower_components 199 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 200 | #bower_components/ 201 | 202 | # RIA/Silverlight projects 203 | Generated_Code/ 204 | 205 | # Backup & report files from converting an old project file 206 | # to a newer Visual Studio version. Backup files are not needed, 207 | # because we have git ;-) 208 | _UpgradeReport_Files/ 209 | Backup*/ 210 | UpgradeLog*.XML 211 | UpgradeLog*.htm 212 | 213 | # SQL Server files 214 | #*.mdf 215 | #*.ldf 216 | 217 | # Business Intelligence projects 218 | *.rdl.data 219 | *.bim.layout 220 | *.bim_*.settings 221 | 222 | # Microsoft Fakes 223 | FakesAssemblies/ 224 | 225 | # GhostDoc plugin setting file 226 | *.GhostDoc.xml 227 | 228 | # Node.js Tools for Visual Studio 229 | .ntvs_analysis.dat 230 | 231 | # Visual Studio 6 build log 232 | *.plg 233 | 234 | # Visual Studio 6 workspace options file 235 | *.opt 236 | 237 | # Visual Studio LightSwitch build output 238 | **/*.HTMLClient/GeneratedArtifacts 239 | **/*.DesktopClient/GeneratedArtifacts 240 | **/*.DesktopClient/ModelManifest.xml 241 | **/*.Server/GeneratedArtifacts 242 | **/*.Server/ModelManifest.xml 243 | _Pvt_Extensions 244 | 245 | # Paket dependency manager 246 | .paket/paket.exe 247 | paket-files/ 248 | 249 | # FAKE - F# Make 250 | .fake/ 251 | 252 | # JetBrains Rider 253 | .idea/ 254 | *.sln.iml 255 | 256 | # CodeRush 257 | .cr/ 258 | 259 | # Python Tools for Visual Studio (PTVS) 260 | __pycache__/ 261 | *.pyc 262 | 263 | 264 | /samples/Alloy11.1/modules/_protected/EpiImagePoint 265 | /build/output/ImagePointEditor.zip 266 | !/build/output/*.nupkg 267 | /src/ImagePointEditor/ImagePointEditor.zip 268 | -------------------------------------------------------------------------------- /ImagePointEditor.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.31515.178 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImagePointEditor", "src\ImagePointEditor\ImagePointEditor.csproj", "{73525653-68DA-4E0A-ADE6-8ACCD1A9ED09}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {73525653-68DA-4E0A-ADE6-8ACCD1A9ED09}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {73525653-68DA-4E0A-ADE6-8ACCD1A9ED09}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {73525653-68DA-4E0A-ADE6-8ACCD1A9ED09}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {73525653-68DA-4E0A-ADE6-8ACCD1A9ED09}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {D849FFB2-F81C-46F2-84DA-615848ABD1FD} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Erik Henningson 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- 1 | # Optimizely/Episerver CMS image point property editor 2 | This editor makes it possible to select a point on an image by clicking on the image.
3 | Main purpose is to be able to set a focal point for an image, and use that focal point when the image is resized. 4 |
5 | The ImagePointEditor can be used together with the 6 | [Picture helper](https://hacksbyme.net/2019/01/17/control-the-cropping-of-your-images-with-a-focal-point/) for CMS 11, 7 | and [PictureRenderer](https://github.com/ErikHen/PictureRenderer.Optimizely) for CMS12, to 8 | automatically use a focal point when image is resized. 9 | 10 | ## How to use 11 | Add a string property to your ImageData model. Decorate the property with the ImagePoint UI hint. 12 | ````C# 13 | [UIHint(ImagePoint.UIHint)] 14 | [Display(Name = "Focal point")] 15 | public virtual string ImageFocalPoint { get; set; } 16 | ```` 17 |
18 | 19 | Now it's possible to place a point when editing an image in "All properties view":
20 | ![](https://raw.githubusercontent.com/ErikHen/ImagePointEditor/master/doc/ImagePoint.gif) 21 | 22 | The x and y values of the point is saved as a string, in the format <x value>|<y value>. The x and y values range from 0-1. 23 |
24 | Ex:
25 | 0|0 = left top corner
26 | 1|1 = right bottom corner
27 | 0.5|0.5 = center of image
28 | 0.5|0 = center top
29 | 30 | ## How to install 31 | 32 | Add [ImagePointEditor](https://nuget.optimizely.com/package/?id=ImagePointEditor) nuget from the Optimizely Nuget Feed. 33 | 34 | #### Configuration 35 | For CMS 12 you need to add the following code to `ConfigureServices` in your `Startup.cs` file. 36 | 37 | ````C# 38 | public void ConfigureServices(IServiceCollection services) 39 | { 40 | services.AddImagePointEditor(); 41 | ... 42 | } 43 | ```` 44 |

45 | 46 | ## Version history 47 | #### 2.2.0 48 | - Targeting .Net6 + .Net7. Dropping support for .Net5.
49 | 50 | #### 2.1.0 51 | - More robust way to copy the module. 52 | - Targeting both .Net5 & .Net6.
53 | Thanks [David](https://github.com/ddprince-yaksa) 54 | 55 | #### 2.0.2 56 | - Optimize nuget size (Thanks [@zunkas](https://github.com/zunkas)). 57 | - More fail-safe icon references. 58 | 59 | #### 2.0.1 60 | - Fix issue with how nuget was created. 61 | 62 | #### 2.0.0 63 | - New version for Optimizely CMS 12 64 | 65 | #### 1.0.1 66 | - Fixed edge-case "path issue" (issue [#5](https://github.com/ErikHen/ImagePointEditor/issues/5)). 67 | 68 | #### 1.0.0 69 | - Initial version. 70 | -------------------------------------------------------------------------------- /build/nuget/ImagePointEditor.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ImagePointEditor 5 | 2.0.0-prev35 6 | Erik Henningson 7 | Erik Henningson 8 | https://github.com/ErikHen/ImagePointEditor 9 | false 10 | Image point property editor for Optimizely/Episerver CMS. Main usage is to be able to set an image focal point. 11 | https://raw.githubusercontent.com/ErikHen/ImagePointEditor/master/build/nuget/nugetIcon.png 12 | 13 | Image Focal Point Resize Picture PictureRenderer 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /build/nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikHen/ImagePointEditor/8c2bb239eda98851dfda3f8dd2c073bd8dfced6c/build/nuget/NuGet.exe -------------------------------------------------------------------------------- /build/nuget/Pack.ps1: -------------------------------------------------------------------------------- 1 | 2 | Compress-Archive -Path "..\..\src\ImagePointEditor\modules\_protected\ImagePointEditor\*" -DestinationPath "..\output\ImagePointEditor" -CompressionLevel Optimal -Force 3 | 4 | .\nuget.exe pack .\ImagePointEditor.nuspec -Properties Configuration=Release -OutputDirectory ..\output 5 | 6 | #.\nuget.exe pack .\ImagePointEditor.Core.nuspec -Properties Configuration=Release -OutputDirectory ..\output 7 | -------------------------------------------------------------------------------- /build/nuget/___ReadMe.md: -------------------------------------------------------------------------------- 1 | 2 | Nuget for v2 is built with the "pack"-command in Visual Studio. 3 | Just keeping this if I want to change in the future. -------------------------------------------------------------------------------- /build/nuget/nugetIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikHen/ImagePointEditor/8c2bb239eda98851dfda3f8dd2c073bd8dfced6c/build/nuget/nugetIcon.png -------------------------------------------------------------------------------- /doc/ImagePoint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikHen/ImagePointEditor/8c2bb239eda98851dfda3f8dd2c073bd8dfced6c/doc/ImagePoint.gif -------------------------------------------------------------------------------- /src/ImagePointEditor/ClientResources/ImagePointProperty.html: -------------------------------------------------------------------------------- 1 | 
2 |
3 | 4 |
5 |
6 |
Click image to place point
7 |
8 |
9 |
10 |
11 |
12 |
13 | 14 | -------------------------------------------------------------------------------- /src/ImagePointEditor/ClientResources/ImagePointProperty.js: -------------------------------------------------------------------------------- 1 |  2 | define([ 3 | "dojo/_base/declare", 4 | "dijit/_Widget", 5 | "dijit/_TemplatedMixin", 6 | "epi/shell/_ContextMixin", 7 | 8 | "dojo/text!./ImagePointProperty.html", 9 | "dojo/dom", 10 | "dojo/domReady!", 11 | "xstyle/css!./styles.css" 12 | ], 13 | function ( 14 | declare, 15 | _Widget, 16 | _TemplatedMixin, 17 | _ContextMixin, 18 | template, 19 | dom 20 | ) { 21 | return declare("imagepointeditor/imagepointproperty", [ 22 | _Widget, 23 | _TemplatedMixin, _ContextMixin], { 24 | templateString: template, 25 | 26 | _setValueAttr: function (val) { 27 | this.previewImage.src = this._currentContext.previewUrl; 28 | this.value = val; 29 | this._set('value', this.value); 30 | this._showInfo(); 31 | 32 | }, 33 | isValid: function () { 34 | return true; 35 | }, 36 | 37 | _previewImageLoaded: function () { 38 | if (this.value) { 39 | const values = this.value.split('|'); 40 | const percentageX = values[0]; 41 | const percentageY = values[1]; 42 | const pixelPosition = this._percentageToPixel(percentageX, percentageY, this.previewImage.getBoundingClientRect()); 43 | this._placePoint(pixelPosition.pixelX, pixelPosition.pixelY); 44 | } 45 | }, 46 | 47 | _setNewPosition: function (e) { 48 | const newPosition = this._getPosition(e); 49 | this._placePoint(newPosition.pixelX, newPosition.pixelY); 50 | 51 | this.value = newPosition.percentageX + "|" + newPosition.percentageY; 52 | this._set("value", this.value); 53 | this.onChange(this.value); 54 | this._showInfo(); 55 | }, 56 | 57 | _getPosition: function (e) { 58 | const rect = e.target.getBoundingClientRect(); 59 | const pixelX = e.clientX - rect.left; 60 | const pixelY = e.clientY - rect.top; 61 | const percentageX = Math.round(pixelX / (rect.right - rect.left) * 100) / 100; 62 | const percentageY = Math.round(pixelY / (rect.bottom - rect.top) * 100) / 100; 63 | 64 | return { pixelX, pixelY, percentageX, percentageY }; 65 | }, 66 | 67 | _placePoint(x, y) { 68 | //console.log("Place point: " + x + " " + y); 69 | this.dotImage.style.left = Math.round(x) - 7 + "px"; 70 | this.dotImage.style.top = Math.round(y) - 7 + "px"; 71 | this.dotImage.style.display = "block"; 72 | }, 73 | 74 | _percentageToPixel: function (percentageX, percentageY, boundingRect) { 75 | const pixelX = (boundingRect.right - boundingRect.left) * percentageX; 76 | const pixelY = (boundingRect.bottom - boundingRect.top) * percentageY; 77 | // console.log("Percentage to pixel: " + pixelX + " " + pixelY); 78 | return { pixelX, pixelY }; 79 | }, 80 | 81 | _showInfo: function () { 82 | this.info.innerHTML = this.value; 83 | }, 84 | 85 | _resetPosition: function (e) { 86 | this.dotImage.style.display = "none"; 87 | this.value = null; 88 | this._set("value", null); 89 | this.onChange(null); 90 | this._showInfo(); 91 | }, 92 | } 93 | ); 94 | }); -------------------------------------------------------------------------------- /src/ImagePointEditor/ClientResources/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikHen/ImagePointEditor/8c2bb239eda98851dfda3f8dd2c073bd8dfced6c/src/ImagePointEditor/ClientResources/dot.png -------------------------------------------------------------------------------- /src/ImagePointEditor/ClientResources/styles.css: -------------------------------------------------------------------------------- 1 | .iptrash { 2 | background-image: url(trash.png); 3 | width: 11px; 4 | height: 13px; 5 | margin-top: 2px; 6 | float: right; 7 | cursor: pointer 8 | } 9 | 10 | .ipdot { 11 | background-image: url(dot.png); 12 | width: 15px; 13 | height: 15px; 14 | position: absolute; 15 | display: none; 16 | } -------------------------------------------------------------------------------- /src/ImagePointEditor/ClientResources/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikHen/ImagePointEditor/8c2bb239eda98851dfda3f8dd2c073bd8dfced6c/src/ImagePointEditor/ClientResources/trash.png -------------------------------------------------------------------------------- /src/ImagePointEditor/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | $([System.IO.Path]::Combine($(ProjectDir), 'tmp')) 8 | 9 | 10 | 11 | true 12 | contentFiles\any\any\modules\_protected\$(MSBuildProjectName) 13 | None 14 | true 15 | 16 | 17 | true 18 | build\$(MSBuildProjectName).targets 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/ImagePointEditor/Directory.Build.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/ImagePointEditor/ImagePointEditor.cs: -------------------------------------------------------------------------------- 1 | using EPiServer.Shell.ObjectEditing.EditorDescriptors; 2 | 3 | namespace ImagePointEditor 4 | { 5 | [EditorDescriptorRegistration(TargetType = typeof(string), UIHint = ImagePoint.UIHint)] 6 | public partial class ImagePoint : EditorDescriptor 7 | { 8 | public ImagePoint() 9 | { 10 | ClientEditingClass = "imagepointeditor/imagepointproperty"; 11 | } 12 | } 13 | 14 | public partial class ImagePoint : EditorDescriptor 15 | { 16 | public const string UIHint = "ImagePoint"; 17 | } 18 | } -------------------------------------------------------------------------------- /src/ImagePointEditor/ImagePointEditor.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | net6.0;net7.0 4 | 2.2.0 5 | MIT 6 | Erik Henningson 7 | 8 | Image point property editor for Optimizely/Episerver CMS. Main usage is to be able to set an image focal point. 9 | https://github.com/ErikHen/ImagePointEditor 10 | https://raw.githubusercontent.com/ErikHen/ImagePointEditor/master/build/nuget/nugetIcon.png 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/ImagePointEditor/ServiceExtension.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using EPiServer.Shell.Modules; 7 | using Microsoft.Extensions.DependencyInjection; 8 | 9 | namespace ImagePointEditor 10 | { 11 | public static class ServiceExtension 12 | { 13 | public static void AddImagePointEditor(this IServiceCollection services) 14 | { 15 | services.Configure(o => o.Items.Add(new ModuleDetails { Name = "ImagePointEditor" })); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/ImagePointEditor/build/ImagePointEditor.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/ImagePointEditor/build/ImagePointEditor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikHen/ImagePointEditor/8c2bb239eda98851dfda3f8dd2c073bd8dfced6c/src/ImagePointEditor/build/ImagePointEditor.zip -------------------------------------------------------------------------------- /src/ImagePointEditor/module.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/ImagePointEditor/msbuild/CopyZipFiles.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | --------------------------------------------------------------------------------