private void SetBreakpointValues(DirectionOption value, params Breakpoint[] breakpoints) { foreach (var breakpoint in breakpoints) { this.breakpointDictionary[breakpoint] = value; } }
/// <summary> /// Initializes a new instance of the <see cref="FluentDirection"/> class. /// </summary> /// <param name="initialValue">The initial value across all CSS media queries.</param> public FluentDirection(DirectionOption initialValue) { this.breakpointDictionary.Add(Breakpoint.Mobile, initialValue); this.breakpointDictionary.Add(Breakpoint.Tablet, initialValue); this.breakpointDictionary.Add(Breakpoint.Desktop, initialValue); this.breakpointDictionary.Add(Breakpoint.Widescreen, initialValue); this.breakpointDictionary.Add(Breakpoint.FullHD, initialValue); }
/// <inheritdoc/> public IFluentDirection OnMobileAndLarger(DirectionOption option) { this.SetBreakpointValues(option, Breakpoint.Mobile, Breakpoint.Tablet, Breakpoint.Desktop, Breakpoint.Widescreen, Breakpoint.FullHD); return(this); }
/// <inheritdoc/> public IFluentDirection OnMobile(DirectionOption option) { this.breakpointDictionary[Breakpoint.Mobile] = option; return(this); }
/// <inheritdoc/> public IFluentDirection OnFullHD(DirectionOption option) { this.breakpointDictionary[Breakpoint.FullHD] = option; return(this); }
/// <inheritdoc/> public IFluentDirection OnDesktopAndSmaller(DirectionOption option) { this.SetBreakpointValues(option, Breakpoint.Mobile, Breakpoint.Tablet, Breakpoint.Desktop); return(this); }
/// <inheritdoc/> public IFluentDirection OnDesktop(DirectionOption option) { this.breakpointDictionary[Breakpoint.Desktop] = option; return(this); }
/// <inheritdoc/> public IFluentDirection OnWidescreenAndLarger(DirectionOption option) { this.SetBreakpointValues(option, Breakpoint.Widescreen, Breakpoint.FullHD); return(this); }
/// <inheritdoc/> public IFluentDirection OnWidescreen(DirectionOption option) { this.breakpointDictionary[Breakpoint.Widescreen] = option; return(this); }
/// <inheritdoc/> public IFluentDirection OnTablet(DirectionOption option) { this.breakpointDictionary[Breakpoint.Tablet] = option; return(this); }