/MishraReader.ViewModels/Settings/Developer.cs

http://mishrareader.codeplex.com · C# · 139 lines · 129 code · 10 blank · 0 comment · 0 complexity · 19c96e4044ca910fe0d1afd3956c9c55 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Windows.Input;
  5. using GalaSoft.MvvmLight.Command;
  6. using MishraReader.ViewModels.AppServices;
  7. namespace MishraReader.ViewModels.Settings
  8. {
  9. public class Developer
  10. {
  11. public static readonly Uri DefaultImage;
  12. private static readonly IUrlLauncher Launcher;
  13. static Developer()
  14. {
  15. DefaultImage = new Uri("pack://application:,,,/MishraReader;component/Assets/DeveloperDefaultImage.jpg");
  16. Launcher = ServiceLocator.Current.GetInstance<IUrlLauncher>();
  17. }
  18. public Developer()
  19. {
  20. DeveloperImage = DefaultImage;
  21. ShowSiteCommand = new RelayCommand(() => Launcher.LaunchUri(new Uri("http://" + Site)));
  22. SendMailCommand = new RelayCommand(() => Launcher.LaunchUri(new Uri("mailto:" + Mail)));
  23. ShowTwitterCommand = new RelayCommand(() => Launcher.LaunchUri(new Uri("http://twitter.com/#!/" + Twitter.Substring(1))));
  24. }
  25. public string Company { get; set; }
  26. public Uri DeveloperImage { get; private set; }
  27. public string FirstName { get; set; }
  28. public string LastName { get; set; }
  29. public string Mail { get; set; }
  30. public string Name
  31. {
  32. get { return string.Format("{0} {1}", FirstName, LastName.ToUpper()); }
  33. }
  34. public ICommand SendMailCommand { get; internal set; }
  35. public ICommand ShowSiteCommand { get; internal set; }
  36. public ICommand ShowTwitterCommand { get; internal set; }
  37. public string Site { get; set; }
  38. public string Twitter { get; set; }
  39. public static IEnumerable<Developer> All
  40. {
  41. get
  42. {
  43. return (new[]
  44. {
  45. new Developer
  46. {
  47. FirstName = "David",
  48. LastName = "CATUHE",
  49. Company = "Microsoft",
  50. Site = "blogs.msdn.com/eternalcoding",
  51. Mail = "davca@microsoft.com",
  52. Twitter = "@deltakosh"
  53. },
  54. new Developer
  55. {
  56. FirstName = "Julien",
  57. LastName = "CORIOLAND",
  58. Company = "Infinite Square",
  59. Site = "www.juliencorioland.net",
  60. Mail = "contact@juliencorioland.net",
  61. Twitter = "@beedoo"
  62. },
  63. new Developer
  64. {
  65. FirstName = "Christopher",
  66. LastName = "MANEU",
  67. Company = "Bewise",
  68. Site = "www.maneu.net",
  69. Mail = "christopher@maneu.net",
  70. Twitter = "@cmaneu"
  71. },
  72. new Developer
  73. {
  74. FirstName = "Thomas",
  75. LastName = "LEBRUN",
  76. Company = "Infinite Square",
  77. Site = "blogs.developpeur.org/tom",
  78. Mail = "lebrun_thomas@hotmail.com",
  79. Twitter = "@thomas_lebrun"
  80. },
  81. new Developer
  82. {
  83. FirstName = "Olivier",
  84. LastName = "COURTOIS",
  85. Company = "Bewise",
  86. Site = "www.ocourtois.fr",
  87. Mail = "olivier.courtois@bewise.fr",
  88. Twitter = "@ocourtois"
  89. },
  90. new Developer
  91. {
  92. FirstName = "Jonathan",
  93. LastName = "ANTOINE",
  94. Company = "Infinite Square",
  95. Site = "www.jonathanantoine.com",
  96. Mail = "me@jonathanantoine.com.com",
  97. Twitter = "@jmix90"
  98. },
  99. new Developer
  100. {
  101. FirstName = "Rudy",
  102. LastName = "HUYN",
  103. Company = "Orange Business Services",
  104. Site = "www.rudyhuyn.com",
  105. Mail = "contact@rudyhuyn.com",
  106. Twitter = "@rudyhuyn"
  107. },
  108. new Developer
  109. {
  110. FirstName = "Cyril",
  111. LastName = "SANSUS",
  112. Company = "Bewise",
  113. Site = "blogs.codes-sources.com/vko/",
  114. Mail = "cyril.sansus@gmail.com",
  115. Twitter = "@Vko31"
  116. },
  117. new Developer
  118. {
  119. FirstName = "Oren",
  120. LastName = "NOVOTNY",
  121. Company = "Microsoft",
  122. Mail = "oren@novotny.org",
  123. Twitter = "@onovotny"
  124. },
  125. }).OrderBy(d => d.LastName);
  126. }
  127. }
  128. }
  129. }